Subject: Smart Contract --II: Deploy via 3 Ways
Author: WebSpider
Posted on: 06/07/2021 06:59:15 AM
There are three ways to deploy a smart contract to Ethereum blockchain:
Way 1: Via Remix IDE with Built-In/Injected Web3 provider + MetaMask wallet
Way 2: Via Truffle Framework with HDWProvider + any wallet
Way 3. Via Web3js script with HDWProvider + any wallet
Here, we use the 3rd way: Via Web3js script with HDWProvider + any wallet
Prerequisites:
Node.js installed
Wallet to authenticate to Testnet or Mainnet to make transaction (including deploy)
A contract with abi and bytecode to be deployed
Replies:
References: