-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdfx.json
37 lines (37 loc) · 1.07 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
{
"dfx": "0.20.1",
"version": 1,
"output_env_file": ".env",
"canisters": {
"dummy_relying_party": {
"type": "custom",
"candid": "./dummy-relying-party/dummy_relying_party.did",
"wasm": "./dummy-relying-party/dummy_relying_party.wasm.gz",
"build": "./dummy-relying-party/build.sh",
"shrink": false
},
"dummy_issuer": {
"type": "custom",
"candid": "./dummy-issuer/dummy_issuer.did",
"wasm": "./dummy-issuer/dummy_issuer.wasm.gz",
"build": "./dummy-issuer/build.sh",
"shrink": false
},
"internet_identity": {
"type": "custom",
"wasm": "https://github.com/dfinity/internet-identity/releases/download/release-2024-06-07/internet_identity_dev.wasm.gz",
"candid": "https://github.com/dfinity/internet-identity/releases/download/release-2024-06-07/internet_identity.did",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
}
}
},
"networks": {
"mainnet": {
"providers": ["https://icp0.io"],
"type": "persistent"
}
}
}