Venom In Action. Going Global
This section shows you how to deploy your smart contracts to global networks (venom testnet or venom mainnet).
const config: LockliftConfig = {
...
networks: {
venomMainnet: {
connection: {
group: "mainnet",
type: "jrpc",
data: {
endpoint: 'https://jrpc.venom.foundation/rpc',
},
},
giver: {
giverFactory: (ever, keyPair, address) => new GiverWallet(ever, keyPair, address),
address: "",
phrase: "",
accountId: 0
},
keys: {
phrase: "",
amount: 20,
},
},
venomTestnet: {
connection: {
group: "testnet",
type: "jrpc",
data: {
endpoint: 'https://jrpc-testnet.venom.foundation/rpc',
},
},
giver: {
giverFactory: (ever, keyPair, address) => new GiverWallet(ever, keyPair, address),
address: "",
phrase: "",
accountId: 0
},
keys: {
phrase: "",
amount: 20,
},
},
...
}PreviousVenom In Action. Extend our Tokensale with frontendNextVenom In Action. Ways of code enhancing
Last updated