-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdfx.json
57 lines (57 loc) · 1.96 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
{
"canisters": {
"internet_identity": {
"type": "custom",
"shrink": false,
"candid": "https://github.com/dfinity/internet-identity/releases/download/release-2023-09-08/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/download/release-2023-09-08/internet_identity_dev.wasm.gz"
},
"ledger_canister": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/d87954601e4b22972899e9957e800406a0a6b929/rs/rosetta-api/icp_ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/d87954601e4b22972899e9957e800406a0a6b929/canisters/ledger-canister.wasm.gz",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
}
},
"icrc1_ledger_canister": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/ic/d87954601e4b22972899e9957e800406a0a6b929/rs/rosetta-api/icrc1/ledger/ledger.did",
"wasm": "https://download.dfinity.systems/ic/d87954601e4b22972899e9957e800406a0a6b929/canisters/ic-icrc1-ledger.wasm.gz"
},
"dfinity_js_backend": {
"type": "custom",
"candid_gen": "http",
"main": "src/dfinity_js_backend/src/index.ts",
"candid": "src/dfinity_js_backend/src/index.did",
"build": "npx azle dfinity_js_backend",
"wasm": ".azle/dfinity_js_backend/dfinity_js_backend.wasm",
"gzip": true,
"assets": [["src/declarations/icrc1-ledger/icrc1-ledger.did", "src/icrc1-ledger.did"]]
},
"dfinity_js_frontend": {
"dependencies": [
"dfinity_js_backend"
],
"frontend": {
"entrypoint": "src/dfinity_js_frontend/src/index.html"
},
"source": [
"src/dfinity_js_frontend/src/assets",
"dist/dfinity_js_frontend/"
],
"type": "assets",
"gzip": true
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"output_env_file": ".env",
"version": 1
}