-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathasconfig.json
More file actions
66 lines (66 loc) · 1.93 KB
/
Copy pathasconfig.json
File metadata and controls
66 lines (66 loc) · 1.93 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
{
"targets": {
"token": {
"outFile": "build/MyToken.wasm",
"use": ["abort=src/token/index/abort"]
},
"wbtc": {
"outFile": "build/WBTC.wasm",
"use": ["abort=src/wbtc/index/abort"]
},
"stablecoin": {
"outFile": "build/MyStableCoin.wasm",
"use": ["abort=src/stablecoin/index/abort"]
},
"mint": {
"outFile": "build/PillCounter.wasm",
"use": ["abort=src/free-mint/index/abort"]
},
"peggedcoin": {
"outFile": "build/MyPeggedCoin.wasm",
"use": ["abort=src/pegged-token/index/abort"]
},
"oraclecoin": {
"outFile": "build/MyOracleCoin.wasm",
"use": ["abort=src/multi-oracle-stablecoin/index/abort"]
},
"nft": {
"outFile": "build/MyNFT.wasm",
"use": ["abort=src/nft/index/abort"]
},
"registry": {
"outFile": "build/PackageRegistry.wasm",
"use": ["abort=src/registry/index/abort"]
},
"airdrop": {
"outFile": "build/AirdropContract.wasm",
"use": ["abort=src/airdrop-contract/index/abort"]
},
"btc-resolver": {
"initialMemory": 4,
"outFile": "build/Resolver.wasm",
"use": ["abort=src/btc-resolver/index/abort"]
}
},
"options": {
"sourceMap": false,
"optimizeLevel": 3,
"shrinkLevel": 1,
"converge": true,
"noAssert": false,
"enable": [
"sign-extension",
"mutable-globals",
"nontrapping-f2i",
"bulk-memory",
"simd",
"reference-types",
"multi-value"
],
"runtime": "memory",
"memoryBase": 0,
"initialMemory": 1,
"exportStart": "start",
"transform": "@btc-vision/opnet-transform"
}
}