-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdfx.json
101 lines (101 loc) · 3.03 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"canisters": {
"evm_rpc": {
"type": "pull",
"id": "7hfb6-caaaa-aaaar-qadga-cai"
},
"xrc": {
"type": "pull",
"id": "uf6dk-hyaaa-aaaaq-qaaaq-cai"
},
"backend": {
"dependencies": ["evm_rpc", "xrc"],
"candid": "backend/backend.did",
"package": "backend",
"type": "rust"
},
"frontend": {
"dependencies": ["backend"],
"type": "assets",
"source": ["frontend/dist/"],
"workspace": "frontend"
},
"bitcoin_backend": {
"dependencies": [],
"candid": "bitcoin_backend/bitcoin_backend.did",
"package": "bitcoin_backend",
"type": "rust"
},
"backend_prod": {
"dependencies": ["evm_rpc", "xrc"],
"candid": "backend/backend.did",
"package": "backend",
"type": "rust"
},
"frontend_prod": {
"dependencies": ["backend_prod"],
"type": "assets",
"source": ["dist/"]
},
"internet_identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/download/release-2024-07-12/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/download/release-2024-07-12/internet_identity_dev.wasm.gz",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"frontend": {}
},
"icp_ledger_canister": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/94fd38099f0e63950eb5d5673b7b9d23780ace2d/rs/rosetta-api/icp_ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/94fd38099f0e63950eb5d5673b7b9d23780ace2d/canisters/ledger-canister.wasm.gz",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
},
"specified_id": "ryjl3-tyaaa-aaaaa-aaaba-cai"
},
"ckbtc_ledger_canister_testnet": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/94fd38099f0e63950eb5d5673b7b9d23780ace2d/rs/rosetta-api/icp_ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/94fd38099f0e63950eb5d5673b7b9d23780ace2d/canisters/ledger-canister.wasm.gz",
"remote": {
"id": {
"ic": "mc6ru-gyaaa-aaaar-qaaaq-cai"
}
},
"specified_id": "mc6ru-gyaaa-aaaar-qaaaq-cai"
},
"icrc1_ledger_canister": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/08f32722df2f56f1e5c1e603fee0c87c40b77cba/rs/rosetta-api/icrc1/ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/08f32722df2f56f1e5c1e603fee0c87c40b77cba/canisters/ic-icrc1-ledger.wasm.gz"
}
},
"defaults": {
"bitcoin": {
"enabled": true,
"log_level": "error",
"nodes": ["127.0.0.1:18444"]
},
"build": {
"args": "",
"packtool": "npm run --silent sources"
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8080",
"type": "ephemeral",
"replica": {
"subnet_type": "system"
}
}
},
"output_env_file": ".env",
"version": 1
}