Skip to content

Commit

Permalink
Merge pull request #176 from CirclesUBI/add-chiado-network
Browse files Browse the repository at this point in the history
add chiado network to truffle config
  • Loading branch information
JacqueGM authored Feb 14, 2023
2 parents ac84621 + 1ff81d6 commit f77077b
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,35 +32,36 @@ module.exports = {
network_id: '*',
},
kovan: {
provider: function () {
provider() {
return new HDWalletProvider(
process.env.MNEMONIC,
`https://kovan.infura.io/v3/${process.env.PROJECT_ID}`)
`https://kovan.infura.io/v3/${process.env.PROJECT_ID}`,
);
},
port: 8545,
network_id: 42,
gas: 10000000,
gasPrice: 12500000000,
},
xdai: {
provider: function() {
provider() {
return new HDWalletProvider(
process.env.MNEMONIC,
"https://dai.poa.network")
process.env.MNEMONIC,
'https://dai.poa.network',
);
},
network_id: 100,
gas: 12487794,
gasPrice: 1000000000,
},
sokol: {
provider: function() {
chiado: {
provider() {
return new HDWalletProvider(
process.env.MNEMONIC,
"https://sokol.poa.network")
process.env.MNEMONIC,
'https://rpc.chiadochain.net',
);
},
network_id: 77,
gas: 12487759,
gasPrice: 1000000000,
network_id: 10200,
},
},
};

0 comments on commit f77077b

Please sign in to comment.