-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
46 lines (46 loc) · 1.4 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
{
"dfx": "0.23.0",
"canisters": {
"example_paid_service": {
"candid": "src/example/paid_service/example-paid-service.did",
"package": "example_paid_service",
"type": "rust",
"optimize": "cycles",
"gzip": true,
"dependencies": ["cycles_ledger"]
},
"example_app_backend": {
"candid": "src/example/app_backend/example_app_backend.did",
"package": "example_app_backend",
"type": "rust"
},
"cycles_ledger": {
"type": "custom",
"candid": "https://github.com/dfinity/cycles-ledger/releases/download/cycles-ledger-v1.0.1/cycles-ledger.did",
"wasm": "https://github.com/dfinity/cycles-ledger/releases/download/cycles-ledger-v1.0.1/cycles-ledger.wasm.gz",
"init_arg": "( variant { Init = record { index_id = null; max_blocks_per_request = 9_999 : nat64 }},)",
"specified_id": "um5iw-rqaaa-aaaaq-qaaba-cai",
"remote": {
"id": {
"ic": "um5iw-rqaaa-aaaaq-qaaba-cai"
}
}
},
"cycles_depositor": {
"dependencies": ["cycles_ledger"],
"type": "custom",
"build": "scripts/build.cycles_depositor.sh",
"init_arg_file": "out/cycles_depositor.args.did",
"wasm": "out/cycles_depositor.wasm.gz",
"candid": "out/cycles_depositor.did"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"output_env_file": ".env",
"version": 1
}