GithubHelp home page GithubHelp logo

mastering-solidity's Introduction

Mastering Solidity

Author : Gun Gun Febrianza

Table of Contents

  • Solidity

    • High-level Language
    • Object Oriented Language
    • Statically-Typed Language
    • Case Sensitive Language
    • Turing Complete Language
  • Development Tools

    • Node Provider
    • Hardhat
    • Etherscan
  • Gas Optimization

  • ERC-20

  • ERC-721 (NFT)

  • IPFS

  • ERC-1155 (SFT)

  • Upgrade Smart Contract

  • Audit Smart Contract

  • Layer 2

  • Advance

    • EVM Codes
    • Flash Loans
  • Examples


Header

Last touched on 28 July 2022

Parameter Value Note

Resources


Solidity

Solidity is a programming language developed by Gavin Wood, Christian Reitwiessner, Alex Beregszaszi and other Ethereum Contributors. Solidity programming language is influenced by C++, Javascript and Python programming languages.

Metamask

To detect metamask on user browser use this syntax :

if (window.ethereum) {
  //form.classList.add("has-eth"); //display web3 apps, widget, etc
}

If we want to initiate request to metamask use this scripts :

window.ethereum.request({
    method: "eth_requestAccounts",
});

Here is the example to send native token using metamask :

const send = async function send(amount) {
  const accounts = await window.ethereum.request({
    method: "eth_requestAccounts",
  });

  const wei = web3.utils.toWei(amount, "ether");

  if (accounts.length > 0) {
    window.ethereum.request({
      method: "eth_sendTransaction",
      params: [
        {
          from: accounts[0],
          to: "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
          value: web3.utils.toHex(wei),
        },
      ],
    });
  }
};

mastering-solidity's People

Contributors

cryptolibertarian-id avatar gungunfebrianza avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.