-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdfx.json
62 lines (62 loc) · 1.87 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
{
"canisters": {
"vetkd_system_api": {
"candid": "vetkd_system_api.did",
"type": "custom",
"wasm": "vetkd_system_api.wasm"
},
"backend": {
"main": "src/backend/main.mo",
"type": "motoko",
"dependencies": ["vetkd_system_api", "ckbtc_ledger"]
},
"storage": {
"main": "src/storage/main.mo",
"type": "motoko"
},
"frontend": {
"dependencies": ["backend"],
"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"
}
}
},
"ckbtc_ledger" : {
"type" : "custom",
"candid" : "icrc1.local.did",
"wasm" : "icrc1.wasm",
"remote": {
"candid": "icrc1.public.did",
"id": {
"ic": "mxzaz-hqaaa-aaaar-qaada-cai"
}
},
"init_arg": "(variant {Init = record {minting_account = record { owner = principal \"2vxsx-fae\" };transfer_fee = 0;token_symbol = \"ckBTC\";token_name = \"Token ckBTC\";metadata = vec {};initial_balances = vec {record { record {owner = principal \"2vxsx-fae\"}; 100_000_000_000 } };archive_options = record {num_blocks_to_archive = 10_000;trigger_threshold = 20_000;cycles_for_archive_creation = opt 4_000_000_000_000;controller_id = principal \"2vxsx-fae\";};}})"
}
},
"defaults": {
"build": {
"args": "",
"packtool": "mops sources"
}
},
"dfx": "0.17.0",
"networks": {
"local": {
"bind": "localhost:8000",
"type": "ephemeral"
}
},
"version": 1
}