discover/config/contracts.js

174 lines
5.1 KiB
JavaScript
Raw Normal View History

2019-08-07 09:47:39 +00:00
const wallet = require('./livenet/mnemonic')
const devWallet = require('./development/mnemonic')
2019-05-27 15:22:45 +00:00
module.exports = {
// default applies to all environments
default: {
// Blockchain node to deploy the contracts
deployment: {
host: 'localhost', // Host of the blockchain node
port: 8546, // Port of the blockchain node
type: 'ws', // Type of connection (ws or rpc),
2019-05-27 15:22:45 +00:00
// Accounts to use instead of the default account to populate your wallet
// The order here corresponds to the order of `web3.eth.getAccounts`, so the first one is the `defaultAccount`
/* ,accounts: [
{
privateKey: "your_private_key",
balance: "5 ether" // You can set the balance of the account in the dev environment
// Balances are in Wei, but you can specify the unit with its name
},
{
privateKeyFile: "path/to/file", // Either a keystore or a list of keys, separated by , or ;
password: "passwordForTheKeystore" // Needed to decrypt the keystore file
},
{
mnemonic: "12 word mnemonic",
addressIndex: "0", // Optional. The index to start getting the address
numAddresses: "1", // Optional. The number of addresses to get
hdpath: "m/44'/60'/0'/0/" // Optional. HD derivation path
},
{
"nodeAccounts": true // Uses the Ethereum node's accounts
}
] */
accounts: [
{
2019-08-07 09:47:39 +00:00
mnemonic: devWallet.mnemonic,
2019-05-27 15:22:45 +00:00
balance: '1534983463450 ether',
},
],
},
// order of connections the dapp should connect to
dappConnection: [
'$WEB3', // uses pre existing web3 object if available (e.g in Mist)
'ws://localhost:8546',
'http://localhost:8545',
],
2019-05-27 15:22:45 +00:00
// Automatically call `ethereum.enable` if true.
// If false, the following code must run before sending any transaction: `await EmbarkJS.enableEthereum();`
// Default value is true.
2019-07-01 07:24:18 +00:00
dappAutoEnable: false,
2019-05-27 15:22:45 +00:00
gas: 'auto',
// Strategy for the deployment of the contracts:
// - implicit will try to deploy all the contracts located inside the contracts directory
// or the directory configured for the location of the contracts. This is default one
// when not specified
// - explicit will only attempt to deploy the contracts that are explicitly specified inside the
// contracts section.
strategy: 'explicit',
2019-05-27 15:22:45 +00:00
// contracts: {
// Discover: {
// args: { _SNT: '0x744d70fdbe2ba4cf95131626614a1763df805b9e' },
// },
// MiniMeToken: { deploy: false },
// TestBancorFormula: { deploy: false },
// },
contracts: {
Discover: {
args: ['$MiniMeToken'],
2019-05-27 15:22:45 +00:00
},
},
},
// default environment, merges with the settings in default
// assumed to be the intended environment by `embark run`
development: {
contracts: {
MiniMeTokenFactory: {},
MiniMeToken: {
args: [
'$MiniMeTokenFactory',
'0x0000000000000000000000000000000000000000',
0,
'SNTMiniMeToken',
18,
'SNT',
true,
],
},
},
2019-05-27 15:22:45 +00:00
},
// merges with the settings in default
// used with "embark run privatenet"
privatenet: {},
// merges with the settings in default
// used with "embark run testnet"
testnet: {
deployment: {
2019-07-20 11:36:07 +00:00
accounts: [
{
2019-08-07 09:47:39 +00:00
mnemonic: devWallet.mnemonic,
2019-07-20 11:36:07 +00:00
},
],
2019-05-27 15:22:45 +00:00
host: `ropsten.infura.io/v3/8675214b97b44e96b70d05326c61fd6a`,
port: false,
type: 'rpc',
protocol: 'https',
},
dappConnection: [
2019-06-30 14:42:06 +00:00
'$WEB3',
2019-05-27 15:22:45 +00:00
'https://ropsten.infura.io/v3/8675214b97b44e96b70d05326c61fd6a',
2019-07-01 07:24:18 +00:00
],
2019-07-20 11:36:07 +00:00
dappAutoEnable: false,
contracts: {
MiniMeTokenFactory: {
deploy: false,
},
MiniMeToken: {
address: '0xc55cf4b03948d7ebc8b9e8bad92643703811d162',
},
Discover: {
address: '0x9fb115BC152aE21ECDc81c73843673fa38e4D2dB',
},
},
tracking: 'shared.testnet.chains.json',
2019-05-27 15:22:45 +00:00
},
// merges with the settings in default
// used with "embark run livenet"
livenet: {
deployment: {
accounts: [
{
2019-08-07 09:47:39 +00:00
mnemonic: wallet.mnemonic,
},
],
host: `mainnet.infura.io/v3/8675214b97b44e96b70d05326c61fd6a`,
port: false,
type: 'rpc',
protocol: 'https',
},
dappConnection: [
'$WEB3',
'https://mainnet.infura.io/v3/8675214b97b44e96b70d05326c61fd6a',
],
dappAutoEnable: false,
2019-08-07 09:47:39 +00:00
gasPrice: "10000000000", // 10gwei. TODO: Set a proper gas price for deployment. See ethgasstation.info
contracts: {
MiniMeTokenFactory: {
deploy: false,
},
MiniMeToken: {
address: '0x744d70fdbe2ba4cf95131626614a1763df805b9e', // Mainnet SNT address
},
Discover: {
args: ['$MiniMeToken'],
},
},
tracking: 'shared.mainnet.chains.json',
},
2019-05-27 15:22:45 +00:00
// you can name an environment with specific settings and then specify with
// "embark run custom_name" or "embark blockchain custom_name"
// custom_name: {
// }
}