-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
103 lines (103 loc) · 2.77 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"dfx": "0.23.0",
"canisters": {
"signer": {
"type": "custom",
"build": "scripts/build.signer.sh",
"candid": "src/signer/canister/signer.did",
"wasm": "out/signer.wasm.gz",
"metadata": [
{
"name": "candid:service"
},
{
"name": "candid:args"
},
{
"name": "git:commit",
"path": "target/commit"
},
{
"name": "git:tags",
"path": "target/tags.semver"
}
],
"specified_id": "grghe-syaaa-aaaar-qabyq-cai",
"init_arg_file": "out/signer.args.did"
},
"bitcoin": {
"type": "custom",
"wasm": "https://github.com/dfinity/bitcoin-canister/releases/download/release%2F2024-08-30/ic-btc-canister.wasm.gz",
"candid": "https://raw.githubusercontent.com/dfinity/bitcoin-canister/release/2024-08-30/canister/candid.did",
"specified_id": "g4xu7-jiaaa-aaaan-aaaaq-cai",
"init_arg_file": "init/bitcoin",
"remote": {
"id": {
"ic": "g4xu7-jiaaa-aaaan-aaaaq-cai"
}
}
},
"example_backend": {
"candid": "src/example_backend/example_backend.did",
"package": "example_backend",
"gzip": true,
"type": "rust"
},
"example_frontend": {
"build": "npm ci && npm run build",
"dependencies": ["example_backend", "signer"],
"source": ["src/example_frontend/dist"],
"type": "assets",
"workspace": "example_frontend"
},
"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",
"gzip": true,
"init_arg": "( variant { Init = record { index_id = null; max_blocks_per_request = 9_999 : nat64 }},)",
"specified_id": "um5iw-rqaaa-aaaaq-qaaba-cai",
"remote": {
"id": {
"staging": "um5iw-rqaaa-aaaaq-qaaba-cai",
"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",
"candid": "out/cycles_depositor.did",
"gzip": true
},
"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": {
"staging": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"frontend": {}
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"output_env_file": ".env",
"version": 1,
"networks": {
"staging": {
"providers": ["https://icp0.io"],
"type": "persistent"
}
}
}