-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
56 lines (56 loc) · 1.67 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
{
"canisters": {
"icpos": {
"main": "src/icpos/main.mo",
"type": "motoko",
"dependencies": ["icrc1_ledger"]
},
"icpos_frontend": {
"dependencies": ["icpos"],
"frontend": {
"entrypoint": "dist/index.html"
},
"source": ["dist"],
"type": "assets",
"build": ["npm run build"]
},
"internet_identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
}
},
"icrc1_ledger": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/95787355499f3be929f2ab302ed44cdad7c64061/rs/rosetta-api/icrc1/ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/95787355499f3be929f2ab302ed44cdad7c64061/canisters/ic-icrc1-ledger.wasm.gz",
"remote": {
"id": {
"ic": "mxzaz-hqaaa-aaaar-qaada-cai"
}
}
},
"icrc1_index": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/95787355499f3be929f2ab302ed44cdad7c64061/rs/rosetta-api/icrc1/index/index.did",
"wasm": "https://download.dfinity.systems/ic/95787355499f3be929f2ab302ed44cdad7c64061/canisters/ic-icrc1-index.wasm.gz",
"remote": {
"id": {
"ic": "n5wcd-faaaa-aaaar-qaaea-cai"
}
}
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"output_env_file": ".env",
"version": 1
}