-
Notifications
You must be signed in to change notification settings - Fork 1
/
dfx.json
40 lines (39 loc) · 1.09 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
{
"canisters": {
"evm_rpc": {
"candid": "https://github.com/internet-computer-protocol/evm-rpc-canister/releases/latest/download/evm_rpc.did",
"declarations": {
"output": "src/evm_rpc/declarations"
},
"init_arg": "(record { nodesInSubnet = 34 })",
"remote": {
"candid": "packages/evm_rpc/declarations/evm_rpc.did",
"id": {
"ic": "7hfb6-caaaa-aaaar-qadga-cai"
}
},
"specified_id": "7hfb6-caaaa-aaaar-qadga-cai",
"type": "custom",
"wasm": "https://github.com/internet-computer-protocol/evm-rpc-canister/releases/latest/download/evm_rpc.wasm.gz"
},
"backend": {
"candid": "src/backend/backend.did",
"declarations": {
"output": "src/backend/declarations"
},
"package": "backend",
"type": "rust"
},
"frontend": {
"build": ["pnpm run build"],
"declarations": {
"output": "src/frontend/declarations"
},
"dependencies": ["backend"],
"source": ["dist"],
"type": "assets"
}
},
"output_env_file": ".env",
"version": 1
}