-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdfx.json
More file actions
61 lines (61 loc) · 1.72 KB
/
dfx.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
{
"dfx": "0.30.2",
"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"
},
"wrapper": {
"candid": "src/wrapper/ic_papi_wrapper.did",
"package": "ic-papi-wrapper",
"type": "rust"
},
"cycles_ledger": {
"type": "custom",
"candid": "https://github.com/dfinity/cycles-ledger/releases/download/cycles-ledger-v1.0.4/cycles-ledger.did",
"wasm": "https://github.com/dfinity/cycles-ledger/releases/download/cycles-ledger-v1.0.4/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,
"networks": {
"staging": {
"providers": ["https://icp0.io"],
"type": "persistent"
},
"local": {
"bind": "127.0.0.1:4943",
"type": "ephemeral"
}
}
}