-
Notifications
You must be signed in to change notification settings - Fork 5
/
dfx.json
33 lines (33 loc) · 996 Bytes
/
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
{
"dfx": "0.18.0",
"canisters": {
"cycles-ledger": {
"type": "rust",
"candid": "./cycles-ledger/cycles-ledger.did",
"package": "cycles-ledger",
"optimize": "cycles",
"gzip": true,
"pullable": {
"dependencies": [],
"wasm_url": "https://github.com/dfinity/cycles-ledger/releases/latest/download/cycles-ledger.wasm.gz",
"wasm_hash_url": "https://github.com/dfinity/cycles-ledger/releases/latest/download/cycles-ledger.wasm.gz.sha256",
"init_guide": "Set max_blocks_per_request in Init record",
"init_arg": "(variant{Init=record{max_blocks_per_request=1000}})"
}
},
"depositor": {
"type": "rust",
"candid": "./depositor/depositor.did",
"package": "depositor",
"optimize": "cycles",
"gzip": true
},
"fake-cmc": {
"type": "rust",
"candid": "./fake-cmc/fake-cmc.did",
"package": "fake-cmc",
"optimize": "cycles",
"gzip": true
}
}
}