Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions en/10/05.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ material:
// Setting the provider with the Infura Mainnet address and Token
return new HDWalletProvider(mnemonic, "https://mainnet.infura.io/v3/YOUR_TOKEN")
},
network_id: "1"
network_id: 1
},
// Configuration for rinkeby network
rinkeby: {
Expand Down Expand Up @@ -54,7 +54,7 @@ material:
// Setting the provider with the Infura Mainnet address and Token
return new HDWalletProvider(mnemonic, "https://mainnet.infura.io/v3/YOUR_TOKEN")
},
network_id: "1"
network_id: 1
},
// Configuration for rinkeby network
rinkeby: {
Expand Down Expand Up @@ -96,7 +96,7 @@ $ cat truffle.js
* provider: function() {
* return new HDWalletProvider(mnemonic, 'https://mainnet.infura.io/<infura-key>')
* },
* network_id: '1',
* network_id: 1,
* gas: 4500000,
* gasPrice: 10000000000,
* },
Expand Down Expand Up @@ -143,7 +143,7 @@ networks: {
// Setting the provider with the Infura Mainnet address and Token
return new HDWalletProvider(mnemonic, "https://mainnet.infura.io/v3/YOUR_TOKEN")
},
network_id: "1"
network_id: 1
},
// Configuration for rinkeby network
rinkeby: {
Expand Down Expand Up @@ -180,7 +180,7 @@ module.exports = {
// Setting the provider with the Infura Mainnet address and Token
return new HDWalletProvider(mnemonic, "https://mainnet.infura.io/v3/YOUR_TOKEN")
},
network_id: "1"
network_id: 1
},
// Configuration for rinkeby network
rinkeby: {
Expand Down