forked from research-ag/icrc1-auction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
65 lines (65 loc) · 1.89 KB
/
Copy pathdfx.json
File metadata and controls
65 lines (65 loc) · 1.89 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
{
"canisters": {
"icrc1_ledger_mock": {
"main": "test/mocks/icrc1_ledger_mock.mo",
"type": "motoko",
"optimize": "cycles",
"declarations": {
"bindings": ["js", "ts"],
"output": "./declarations/icrc1_ledger_mock"
}
},
"icrc1_ledger_mock_2": {
"dependencies": ["icrc1_ledger_mock"],
"wasm": "./.dfx/local/canisters/icrc1_ledger_mock/icrc1_ledger_mock.wasm",
"candid": "./.dfx/local/canisters/icrc1_ledger_mock/icrc1_ledger_mock.did",
"type": "custom"
},
"icrc1_auction": {
"dependencies": ["icrc1_ledger_mock"],
"main": "src/icrc1_auction_api.mo",
"did": "src/icrc1_auction.did",
"type": "motoko",
"init_arg": "(opt principal \"xevnm-gaaaa-aaaar-qafnq-cai\", opt principal \"2vxsx-fae\")",
"declarations": {
"bindings": ["js", "ts"],
"output": "./declarations/icrc1_auction"
},
"optimize": "cycles"
},
"frontend": {
"type": "assets",
"dependencies": ["icrc1_auction"],
"source": ["dist/"],
"build": "npm run build:frontend",
"declarations": {}
},
"icrc1_auction_legacy": {
"dependencies": ["icrc1_ledger_mock"],
"main": "src/icrc1_auction_api_legacy.mo",
"did": "src/icrc1_auction_legacy.did",
"type": "motoko",
"init_arg": "(opt principal \"xevnm-gaaaa-aaaar-qafnq-cai\", opt principal \"2vxsx-fae\")",
"declarations": {
"bindings": ["js", "ts"],
"output": "./declarations/icrc1_auction_legacy"
},
"optimize": "cycles"
},
"frontend_legacy": {
"type": "assets",
"dependencies": ["icrc1_auction_legacy"],
"source": ["dist_legacy/"],
"build": "npm run build:frontend_legacy",
"declarations": {}
}
},
"defaults": {
"build": {
"args": "",
"packtool": "mops sources"
}
},
"dfx": "0.20.0",
"version": 1
}