-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdfx.json
44 lines (44 loc) · 1.15 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
{
"canisters": {
"ic_siwe_provider": {
"type": "custom",
"candid": "https://github.com/kristoferlund/ic-siwe/releases/download/v0.0.5/ic_siwe_provider.did",
"wasm": "https://github.com/kristoferlund/ic-siwe/releases/download/v0.0.5/ic_siwe_provider.wasm.gz"
},
"backend": {
"candid": "src/backend/backend.did",
"package": "backend",
"type": "rust",
"dependencies": [
"evm_rpc",
"ic_siwe_provider"
]
},
"frontend": {
"dependencies": [
"backend",
"ic_siwe_provider"
],
"source": [
"dist"
],
"type": "assets",
"build": [
"npm run build"
]
},
"evm_rpc": {
"type": "custom",
"candid": "https://github.com/internet-computer-protocol/evm-rpc-canister/releases/latest/download/evm_rpc.did",
"wasm": "https://github.com/internet-computer-protocol/evm-rpc-canister/releases/latest/download/evm_rpc_dev.wasm.gz",
"remote": {
"candid": "src/evm_rpc.did",
"id": {
"ic": "7hfb6-caaaa-aaaar-qadga-cai"
}
}
}
},
"output_env_file": ".env",
"version": 1
}