TRUFFLE CONFIGURATION AND DEPLOYMENT
Follow these steps in sequential order:
const mnemonic = "Enter_your_account_mnemonic_here"; gather-testnet: { provider: () => new HDWalletProvider(mnemonic, `https://testnet.gather.network`), port: 80, network_id: 356256156, }, gather-mainnet: { provider: () => new HDWalletProvider(mnemonic, `https://mainnet.gather.network`), port: 80, network_id: 192837465, }truffle migrate --compile-all --reset --network gather-testnettruffle migrate --compile-all --reset --network gather-mainnet
Last updated