Skip to main content

Deploy contracts

Here is example of hardhat config to deploy contracts on mainnet, testnet and devnet:

hardhat.config.js
{
networks: {
tenet: {
url: "https://rpc.tenet.org"
},
tenetTesnet: {
url: "https://rpc.testnet.tenet.org"
},
tenetDevnet: {
url: "https://rpc.devnet.tenet.org"
}
}
}