embark/packages/embark-core/constants.json

106 lines
2.5 KiB
JSON
Raw Normal View History

2018-04-19 18:26:11 +00:00
{
"httpContractsDirectory": ".embark/contracts/",
2019-05-01 20:00:04 +00:00
"console": {
"commandHistorySize": "20"
},
"contexts": {
"simulator": "simulator",
"blockchain": "blockchain",
"templateGeneration": "templateGeneration",
"run": "run",
"upload": "upload",
"build": "build",
2018-07-23 09:36:53 +00:00
"console": "console",
"graph": "graph",
2018-10-05 23:13:00 +00:00
"scaffold": "scaffold",
"test": "test",
"reset": "reset",
"any": "any"
},
2018-05-15 21:08:08 +00:00
"process": {
2018-05-28 15:48:27 +00:00
"processLaunchRequest": "process:launch-request",
"processLaunchComplete": "process:launch-complete",
2018-05-15 21:08:08 +00:00
"log": "log",
"events": {
"on": "on",
"request": "request",
"response": "response"
}
},
"pipeline": {
"init": "init",
"build": "build",
"initiated": "initiated",
"built": "built",
"webpackDone": "webpackDone"
2018-05-22 18:13:56 +00:00
},
"blockchain": {
"call": "eth_call",
"clients": {
"geth": "geth",
"parity": "parity"
},
2018-05-22 18:13:56 +00:00
"blockchainReady": "blockchainReady",
"blockchainExit": "blockchainExit",
"defaults": {
"rpcPort": 8545,
"wsPort": 8546
},
2018-05-22 18:13:56 +00:00
"init": "init",
2018-06-11 20:43:08 +00:00
"initiated": "initiated",
2018-07-31 13:59:27 +00:00
"servicePortOnProxy": 10,
"networkIds": {
2018-08-23 10:06:47 +00:00
"livenet": 1,
2018-07-31 13:59:27 +00:00
"testnet": 3,
"ropsten": 3,
"rinkeby": 4,
"development": 1337,
"development_parity": 17
},
"gasAllowanceError": "Returned error: gas required exceeds allowance or always failing transaction",
"gasAllowanceErrorMessage": "Failing call, this could be because of invalid inputs or function guards that may have been triggered, or an unknown error.",
"transactionMethods": {
"eth_sendTransaction": "eth_sendTransaction",
"eth_sendRawTransaction": "eth_sendRawTransaction",
"eth_getTransactionReceipt": "eth_getTransactionReceipt"
}
},
"storage": {
"init": "init",
"initiated": "initiated",
"restart": "restart",
"exit": "storageExit"
2018-10-16 15:16:47 +00:00
},
"codeGenerator": {
"gasLimit": 6000000
},
"logs": {
"logPath": ".embark/logs/",
"maxLogLength": 1500
},
"deploymentStrategy": {
"implicit": "implicit",
"explicit": "explicit"
},
"embarkResourceOrigin": "http://embark",
"ens": {
"whitelist": [
"eth",
"xyz"
]
},
"dappArtifacts": {
"dir": "config",
"blockchain": "blockchain.json",
"storage": "storage.json",
"communication": "communication.json",
"embarkjs": "embarkjs.js",
"embarkjsnode": "embarkjs.node.js",
"contractsJs": "contracts",
"symlinkDir": "modules"
},
"environments": {
"development": "development"
}
}