deploy only in development

This commit is contained in:
Ricardo Guilherme Schmidt 2018-05-23 16:57:29 -03:00 committed by Barry Gitarts
parent 6b2e95edea
commit 271cd99779
1 changed files with 55 additions and 4 deletions

View File

@ -15,12 +15,10 @@
"args": [ ]
},
"ENSRegistry": {
"args": []
"deploy": false
},
"PublicResolver": {
"args": [
"$ENSRegistry"
]
"deploy": false
},
"ENSSubdomainRegistry": {
"args": [
@ -31,5 +29,58 @@
]
}
}
},
"development": {
"contracts": {
"TestToken": {
"deploy": true
},
"ENSRegistry": {
"deploy": true,
"onDeploy": [
"ENSRegistry.methods.setSubnodeOwner('0x0000000000000000000000000000000000000000000000000000000000000000', '0x4f5b812789fc606be1b3b16908db13fc7a9adf7ca72641f84d75b47069d3d7f0', web3.eth.defaultAccount).send()"
],
"afterDeploy": [
"ENSRegistry.methods.setSubnodeOwner('0x93cdeb708b7545dc668eb9280176169d1c33cfd8ed6f04690a0bcc88a93fc4ae', '0xbd99f8d5e7f81d2d7c1da34b67a2bb3a94dd8c9b0ab40ddc077621b98405983b', ENSSubdomainRegistry.address).send()",
"ENSRegistry.methods.setSubnodeOwner('0x93cdeb708b7545dc668eb9280176169d1c33cfd8ed6f04690a0bcc88a93fc4ae', '0x7b4768a525e733422bf968587a91b4036e5176d36f44a9fb5b29d0bca03ab3a3', ENSSubdomainRegistry.address).send()"
]
},
"PublicResolver": {
"deploy": true,
"args": [
"$ENSRegistry"
]
}
}
},
"livenet":{
"contracts": {
"ENSRegistry": {
"address": "0x314159265dd8dbb310642f98f50c066173c1259b"
},
"PublicResolver": {
"address": "0x5FfC014343cd971B7eb70732021E26C35B744cc4"
}
}
},
"testnet":{
"contracts": {
"ENSRegistry": {
"address": "0x112234455c3a32fd11230c42e7bccd4a84e02010"
},
"PublicResolver": {
"address": "0x5FfC014343cd971B7eb70732021E26C35B744cc4"
}
}
},
"rinkeby":{
"contracts": {
"ENSRegistry": {
"address": "0xe7410170f87102DF0055eB195163A03B7F2Bff4A"
},
"PublicResolver": {
"address": "0x5d20cf83cb385e06d2f2a892f9322cd4933eacdc"
}
}
}
}