forked from dfinity/evm-rpc-canister
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
51 lines (51 loc) · 1.3 KB
/
dfx.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"dfx": "0.18.0",
"canisters": {
"evm_rpc": {
"candid": "candid/evm_rpc.did",
"type": "rust",
"package": "evm_rpc",
"declarations": {
"bindings": ["did", "mo"],
"output": "lib/motoko/src/declarations"
},
"pullable": {
"dependencies": [],
"wasm_url": "https://github.com/internet-computer-protocol/evm-rpc-canister/releases/latest/download/evm_rpc.wasm.gz",
"init_guide": "Number of nodes in the subnet, e.g. '(record {nodesInSubnet = 28})'"
},
"gzip": true
},
"evm_rpc_staging_13_node": {
"candid": "candid/evm_rpc.did",
"type": "rust",
"package": "evm_rpc",
"gzip": true
},
"evm_rpc_staging_fiduciary": {
"candid": "candid/evm_rpc.did",
"type": "rust",
"package": "evm_rpc",
"gzip": true
},
"e2e_rust": {
"dependencies": ["evm_rpc_staging_fiduciary"],
"candid": "e2e/rust/e2e_rust.did",
"type": "rust",
"package": "e2e"
},
"e2e_motoko": {
"dependencies": [
"evm_rpc",
"evm_rpc_staging_13_node",
"evm_rpc_staging_fiduciary"
],
"type": "motoko",
"main": "e2e/motoko/Main.mo"
}
},
"defaults": {
"build": { "packtool": "npm run --silent sources" }
},
"version": 1
}