-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
61 lines (61 loc) · 1.68 KB
/
dfx.json
File metadata and controls
61 lines (61 loc) · 1.68 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.24.0",
"canisters": {
"rp": {
"type": "custom",
"candid": "rp/rp.did",
"wasm": "relying_party.wasm.gz",
"declarations": {
"output": "declarations/rp"
},
"build": "./rp/build.sh",
"shrink": false
},
"meta_issuer": {
"type": "custom",
"candid": "issuer/meta_issuer.did",
"wasm": "meta_issuer.wasm.gz",
"declarations": {
"output": "declarations/meta_issuer"
},
"build": "./issuer/build.sh",
"shrink": false
},
"internet_identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/download/release-2024-10-25/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/download/release-2024-10-25/internet_identity_dev.wasm.gz",
"init_arg": "(opt record { captcha_config = opt record { max_unsolved_captchas= 50:nat64; captcha_trigger = variant {Static = variant {CaptchaDisabled}}}})",
"url": {
"mainnet": "https://identity.internetcomputer.org/",
"app": "https://identity.internetcomputer.org/"
},
"remote": {
"id": {
"ic_test": "jqajs-xiaaa-aaaad-aab5q-cai",
"mainnet": "jqajs-xiaaa-aaaad-aab5q-cai"
}
}
}
},
"networks": {
"devenv_llorenc": {
"providers": ["https://llorenc-ingress.devenv.dfinity.network"],
"type": "persistent"
},
"ic_test": {
"providers": ["https://icp0.io"],
"type": "persistent"
},
"mainnet": {
"providers": ["https://icp0.io"],
"type": "persistent"
}
},
"defaults": {
"build": {
"packtool": ""
}
},
"version": 1
}