This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
92 lines (92 loc) · 2.63 KB
/
dfx.json
File metadata and controls
92 lines (92 loc) · 2.63 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
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
{
"canisters": {
"btc_vault_backend": {
"candid": "src/btc_vault_backend/btc_vault_backend.did",
"package": "btc_vault_backend",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/btc_vault_backend.wasm",
"build": "./scripts/build-backend.sh",
"metadata": [
{
"name": "candid:service"
}
]
},
"mock_unlock": {
"candid": "examples/unlock_modules/mock_unlock/mock_unlock.did",
"package": "mock_unlock",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/mock_unlock.wasm",
"build": "./scripts/build-mock-unlock.sh",
"metadata": [
{
"name": "candid:service"
}
]
},
"ethereum_vault_unlock": {
"candid": "examples/unlock_modules/ethereum_vault_unlock/ethereum_vault_unlock.did",
"package": "ethereum_vault_unlock",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/ethereum_vault_unlock.wasm",
"build": "./scripts/build-ethereum-unlock.sh",
"metadata": [
{
"name": "candid:service"
}
]
},
"btc_vault_frontend": {
"build": "cd src/btc_vault_frontend_v2 && npm run build",
"frontend": {
"entrypoint": "src/btc_vault_frontend_v2/dist/index.html"
},
"source": ["src/btc_vault_frontend_v2/dist/"],
"type": "assets"
},
"evm_rpc": {
"type": "custom",
"candid": "https://github.com/internet-computer-protocol/evm-rpc-canister/releases/latest/download/evm_rpc.did",
"wasm": "https://github.com/internet-computer-protocol/evm-rpc-canister/releases/latest/download/evm_rpc.wasm.gz",
"remote": {
"id": {
"ic": "7hfb6-caaaa-aaaar-qadga-cai"
}
},
"init_arg": "(record {})"
},
"xrc": {
"type": "custom",
"candid": "https://raw.githubusercontent.com/dfinity/exchange-rate-canister/refs/heads/main/src/xrc/xrc.did",
"wasm": "https://github.com/dfinity/exchange-rate-canister/releases/download/2024.11.12/xrc.wasm.gz",
"remote": {
"id": {
"ic": "uf6dk-hyaaa-aaaaq-qaaaq-cai"
}
},
"init_arg": "(record {})"
},
"ic_siwb_provider": {
"type": "custom",
"candid": "ic_siwb_provider/ic_siwb_provider.did",
"wasm": "ic_siwb_provider/ic_siwb_provider.wasm"
}
},
"defaults": {
"bitcoin": {
"enabled": true,
"nodes": ["127.0.0.1:18444"]
},
"build": {
"args": "",
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:4943"
}
},
"output_env_file": ".env",
"version": 1
}