-
Notifications
You must be signed in to change notification settings - Fork 1
/
dfx.json
63 lines (63 loc) · 1.9 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
{
"canisters": {
"icp_ledger_canister": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/3e25df8f16f794bc93caaefdce41467304d1b0c7/rs/rosetta-api/icp_ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/3e25df8f16f794bc93caaefdce41467304d1b0c7/canisters/ledger-canister.wasm.gz",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
}
},
"icrc1_ledger_canister": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/2e921c9adfc71f3edc96a9eb5d85fc742e7d8a9f/rs/rosetta-api/icrc1/ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/2e921c9adfc71f3edc96a9eb5d85fc742e7d8a9f/canisters/ic-icrc1-ledger.wasm.gz",
"remote": {
"id": {
"ic": "mxzaz-hqaaa-aaaar-qaada-cai"
}
}
},
"cketh_ledger": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/2e921c9adfc71f3edc96a9eb5d85fc742e7d8a9f/rs/rosetta-api/icrc1/ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/2e921c9adfc71f3edc96a9eb5d85fc742e7d8a9f/canisters/ic-icrc1-ledger.wasm.gz",
"remote": {
"id": {
"ic": "apia6-jaaaa-aaaar-qabma-cai"
}
}
},
"icp_vault": {
"dependencies": ["icp_ledger_canister", "icrc1_ledger_canister"],
"main": "canisters/icp_vault/main.mo",
"type": "motoko"
},
"assets": {
"dependencies": ["icp_vault"],
"frontend": {
"entrypoint": "dist/index.html"
},
"source": ["dist/"],
"type": "assets"
}
},
"defaults": {
"build": {
"packtool": "vessel sources"
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
},
"ic": {
"providers": ["https://mainnet.dfinity.network"],
"type": "persistent"
}
},
"version": 1
}