-
Notifications
You must be signed in to change notification settings - Fork 1
/
dfx.json
73 lines (73 loc) · 1.57 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
{
"canisters": {
"ledger": {
"type": "custom",
"candid": "ledger.public.did",
"wasm": "ledger.wasm",
"remote": {
"candid": "ledger.public.did",
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai",
"staging": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
}
},
"archive": {
"type": "custom",
"build": "npx azle archive",
"root": "src/archive",
"ts": "src/archive/index.ts",
"candid": "src/archive/index.did",
"wasm": ".azle/archive/archive.wasm.gz"
},
"token": {
"type": "custom",
"build": "npx azle token",
"root": "src/token",
"ts": "src/token/index.ts",
"candid": "src/token/index.did",
"wasm": ".azle/token/token.wasm.gz",
"dependencies": [ ]
},
"multisig": {
"type": "custom",
"build": "npx azle multisig",
"root": "src/multisig",
"ts": "src/multisig/index.ts",
"candid": "src/multisig/index.did",
"wasm": ".azle/multisig/multisig.wasm.gz",
"dependencies": [ ]
},
"frontend": {
"dependencies": [
"token"
],
"frontend": {
"entrypoint": "src/frontend/src/index.html"
},
"source": [
"src/frontend/assets",
"dist/"
],
"type": "assets"
}
},
"defaults": {
"replica": {
"subnet_type":"system"
},
"build": {
"args": "",
"packtool": ""
}
},
"networks": {
"staging": {
"providers": [
"https://icp0.io"
],
"type": "persistent"
}
},
"version": 1
}