-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
69 lines (69 loc) · 2.05 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
{
"canisters": {
"ckusdc_pool": {
"main": "src/backend/ckusdc-pool/main.mo",
"type": "motoko",
"dependencies": ["exchange_rate_canister"]
},
"usdx_ledger": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/5ba1412f9175d987661ae3c0d8dbd1ac3e092b7d/rs/rosetta-api/icrc1/ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/5ba1412f9175d987661ae3c0d8dbd1ac3e092b7d/canisters/ic-icrc1-ledger.wasm.gz"
},
"stablecoin_minter": {
"main": "src/backend/stablecoin-minter/main.mo",
"type": "motoko",
"dependencies": ["icp_ledger", "exchange_rate_canister"]
},
"root_canister": {
"main": "src/backend/root-canister/main.mo",
"type": "motoko"
},
"frontend": {
"dependencies": ["internet_identity"],
"frontend": {
"entrypoint": "build/index.html"
},
"source": ["build/"],
"type": "assets"
},
"internet_identity": {
"type": "pull",
"id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"frontend": {}
},
"icp_ledger": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/5ba1412f9175d987661ae3c0d8dbd1ac3e092b7d/rs/rosetta-api/icp_ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/5ba1412f9175d987661ae3c0d8dbd1ac3e092b7d/canisters/ledger-canister.wasm.gz",
"specified_id": "ryjl3-tyaaa-aaaaa-aaaba-cai",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
}
},
"exchange_rate_canister": {
"type": "pull",
"id": "uf6dk-hyaaa-aaaaq-qaaaq-cai"
},
"ckusdc_ledger": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/5ba1412f9175d987661ae3c0d8dbd1ac3e092b7d/rs/rosetta-api/icrc1/ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/5ba1412f9175d987661ae3c0d8dbd1ac3e092b7d/canisters/ic-icrc1-ledger.wasm.gz",
"specified_id": "xevnm-gaaaa-aaaar-qafnq-cai",
"remote": {
"id": {
"ic": "xevnm-gaaaa-aaaar-qafnq-cai"
}
}
}
},
"defaults": {
"build": {
"packtool": "mops sources"
}
},
"output_env_file": "src/frontend/.env",
"version": 1
}