-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
97 lines (97 loc) · 3.18 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
{
"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"
},
"usdx_index": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/d628aa32d72565c9e5258d033b3c0be194c77b24/rs/rosetta-api/icrc1/index-ng/index-ng.did",
"wasm": "https://download.dfinity.systems/ic/d628aa32d72565c9e5258d033b3c0be194c77b24/canisters/ic-icrc1-index-ng.wasm.gz"
},
"stablecoin_minter": {
"main": "src/backend/stablecoin-minter/main.mo",
"type": "motoko",
"dependencies": ["exchange_rate_canister"]
},
"root_canister": {
"main": "src/backend/root-canister/main.mo",
"type": "motoko"
},
"staking_canister": {
"main": "src/backend/staking/main.mo",
"type": "motoko"
},
"test": {
"main": "src/test/main.mo",
"type": "motoko",
"dependencies": ["staking_canister"]
},
"frontend": {
"dependencies": ["internet_identity"],
"frontend": {
"entrypoint": "build/index.html"
},
"source": ["build/"],
"type": "assets"
},
"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"
}
},
"frontend": {},
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai"
},
"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": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/exchange-rate-canister/6dc4a6eb450bc477d6ea09597c992a3ef31d0d88/src/xrc/xrc.did",
"wasm": "https://github.com/dfinity/exchange-rate-canister/releases/download/2024.07.12/xrc.wasm.gz",
"specified_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"
}
}
},
"swap": {
"main": "src/backend/swap/main.mo",
"type": "motoko"
}
},
"defaults": {
"build": {
"args": "",
"packtool": "mops sources"
}
},
"output_env_file": "src/frontend/.env",
"version": 1
}