-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
58 lines (57 loc) · 2.09 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
{
"canisters": {
"backend": {
"type": "motoko",
"main": "backend/main.mo",
"post_install": ["echo 'Hello, World!'"],
"dependencies": ["icp_ledger", "cmc"]
},
"frontend": {
"dependencies": ["backend"],
"type": "assets",
"source": ["build/"]
},
"internet_identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/download/release-2024-09-17/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/download/release-2024-09-17/internet_identity_dev.wasm.gz",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai"
},
"icp_ledger": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/044cfd5147fc97d7e5a214966941b6580c325d72/rs/rosetta-api/icp_ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/044cfd5147fc97d7e5a214966941b6580c325d72/canisters/ledger-canister.wasm.gz",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
},
"specified_id": "ryjl3-tyaaa-aaaaa-aaaba-cai",
"init_arg": "variant {Init = record { minting_account = \"9aa2574febdc2a31054bb0cd3083e49ee37a176fd9b062f6f3d75cdf51bd2681\"; initial_values = vec {}; send_whitelist = vec{}}}"
},
"cmc": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/044cfd5147fc97d7e5a214966941b6580c325d72/rs/nns/cmc/cmc.did",
"wasm": "https://download.dfinity.systems/ic/044cfd5147fc97d7e5a214966941b6580c325d72/canisters/cycles-minting-canister.wasm.gz",
"remote": {
"id": {
"ic": "rkp4c-7iaaa-aaaaa-aaaca-cai"
}
},
"specified_id": "rkp4c-7iaaa-aaaaa-aaaca-cai",
"init_arg": "opt record { ledger_canister_id = opt principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; minting_account_id = opt \"9aa2574febdc2a31054bb0cd3083e49ee37a176fd9b062f6f3d75cdf51bd2681\"; governance_canister_id = opt principal \"aaaaa-aa\"; last_purged_notification = opt 0 }"
}
},
"defaults": {
"build": {
"packtool": "npm run --silent sources"
}
},
"output_env_file": ".env",
"version": 2
}