Deploy to GTON Network

GTON Network allows you to use your favorite tools to develop and deploy contracts. Below is an example of how to add the testnet GTON Network to your Hardhat config file:

module.exports = {
  networks: {
    ...
    // for testnet
    'gton-testnet': {
      url: "https://testnet.gton.network/",
      chainId: 50021,
      accounts: [privateKey1, privateKey2, ...]
    },
  },
  ...
}

Last updated