@zofai/zo-sdk 0.1.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +9 -0
- package/.gitattributes +4 -0
- package/.prettierrc.js +9 -0
- package/README.md +28 -0
- package/dist/abstract/BaseAPI.cjs +206 -0
- package/dist/abstract/BaseAPI.cjs.map +1 -0
- package/dist/abstract/BaseAPI.d.cts +172 -0
- package/dist/abstract/BaseAPI.d.cts.map +1 -0
- package/dist/abstract/BaseAPI.d.mts +172 -0
- package/dist/abstract/BaseAPI.d.mts.map +1 -0
- package/dist/abstract/BaseAPI.mjs +202 -0
- package/dist/abstract/BaseAPI.mjs.map +1 -0
- package/dist/abstract/BaseDataAPI.cjs +140 -0
- package/dist/abstract/BaseDataAPI.cjs.map +1 -0
- package/dist/abstract/BaseDataAPI.d.cts +89 -0
- package/dist/abstract/BaseDataAPI.d.cts.map +1 -0
- package/dist/abstract/BaseDataAPI.d.mts +89 -0
- package/dist/abstract/BaseDataAPI.d.mts.map +1 -0
- package/dist/abstract/BaseDataAPI.mjs +136 -0
- package/dist/abstract/BaseDataAPI.mjs.map +1 -0
- package/dist/abstract/index.cjs +12 -0
- package/dist/abstract/index.cjs.map +1 -0
- package/dist/abstract/index.d.cts +7 -0
- package/dist/abstract/index.d.cts.map +1 -0
- package/dist/abstract/index.d.mts +7 -0
- package/dist/abstract/index.d.mts.map +1 -0
- package/dist/abstract/index.mjs +7 -0
- package/dist/abstract/index.mjs.map +1 -0
- package/dist/api.cjs +779 -0
- package/dist/api.cjs.map +1 -0
- package/dist/api.d.cts +75 -0
- package/dist/api.d.cts.map +1 -0
- package/dist/api.d.mts +75 -0
- package/dist/api.d.mts.map +1 -0
- package/dist/api.mjs +775 -0
- package/dist/api.mjs.map +1 -0
- package/dist/bcs.cjs +42 -0
- package/dist/bcs.cjs.map +1 -0
- package/dist/bcs.d.cts +91 -0
- package/dist/bcs.d.cts.map +1 -0
- package/dist/bcs.d.mts +91 -0
- package/dist/bcs.d.mts.map +1 -0
- package/dist/bcs.mjs +39 -0
- package/dist/bcs.mjs.map +1 -0
- package/dist/consts/deployments-shared-mainnet.json +50 -0
- package/dist/consts/deployments-shared-testnet.json +45 -0
- package/dist/consts/deployments-slp-mainnet.json +600 -0
- package/dist/consts/deployments-slp-testnet.json +87 -0
- package/dist/consts/deployments-usdz-mainnet.json +494 -0
- package/dist/consts/deployments-usdz-testnet.json +98 -0
- package/dist/consts/deployments-zbtcvc-mainnet.json +180 -0
- package/dist/consts/deployments-zlp-mainnet.json +791 -0
- package/dist/consts/deployments-zlp-testnet.json +76 -0
- package/dist/consts/index.cjs +200 -0
- package/dist/consts/index.cjs.map +1 -0
- package/dist/consts/index.d.cts +157 -0
- package/dist/consts/index.d.cts.map +1 -0
- package/dist/consts/index.d.mts +157 -0
- package/dist/consts/index.d.mts.map +1 -0
- package/dist/consts/index.mjs +189 -0
- package/dist/consts/index.mjs.map +1 -0
- package/dist/consts/price_id_to_object_id.mainnet.json +56 -0
- package/dist/consts/price_id_to_object_id.testnet.json +17 -0
- package/dist/data.cjs +919 -0
- package/dist/data.cjs.map +1 -0
- package/dist/data.d.cts +235 -0
- package/dist/data.d.cts.map +1 -0
- package/dist/data.d.mts +235 -0
- package/dist/data.d.mts.map +1 -0
- package/dist/data.mjs +915 -0
- package/dist/data.mjs.map +1 -0
- package/dist/factory/SDKFactory.cjs +228 -0
- package/dist/factory/SDKFactory.cjs.map +1 -0
- package/dist/factory/SDKFactory.d.cts +84 -0
- package/dist/factory/SDKFactory.d.cts.map +1 -0
- package/dist/factory/SDKFactory.d.mts +84 -0
- package/dist/factory/SDKFactory.d.mts.map +1 -0
- package/dist/factory/SDKFactory.mjs +222 -0
- package/dist/factory/SDKFactory.mjs.map +1 -0
- package/dist/implementations/SLPAPI.cjs +1794 -0
- package/dist/implementations/SLPAPI.cjs.map +1 -0
- package/dist/implementations/SLPAPI.d.cts +183 -0
- package/dist/implementations/SLPAPI.d.cts.map +1 -0
- package/dist/implementations/SLPAPI.d.mts +183 -0
- package/dist/implementations/SLPAPI.d.mts.map +1 -0
- package/dist/implementations/SLPAPI.mjs +1790 -0
- package/dist/implementations/SLPAPI.mjs.map +1 -0
- package/dist/implementations/SLPDataAPI.cjs +1384 -0
- package/dist/implementations/SLPDataAPI.cjs.map +1 -0
- package/dist/implementations/SLPDataAPI.d.cts +158 -0
- package/dist/implementations/SLPDataAPI.d.cts.map +1 -0
- package/dist/implementations/SLPDataAPI.d.mts +158 -0
- package/dist/implementations/SLPDataAPI.d.mts.map +1 -0
- package/dist/implementations/SLPDataAPI.mjs +1380 -0
- package/dist/implementations/SLPDataAPI.mjs.map +1 -0
- package/dist/implementations/USDZAPI.cjs +1676 -0
- package/dist/implementations/USDZAPI.cjs.map +1 -0
- package/dist/implementations/USDZAPI.d.cts +180 -0
- package/dist/implementations/USDZAPI.d.cts.map +1 -0
- package/dist/implementations/USDZAPI.d.mts +180 -0
- package/dist/implementations/USDZAPI.d.mts.map +1 -0
- package/dist/implementations/USDZAPI.mjs +1672 -0
- package/dist/implementations/USDZAPI.mjs.map +1 -0
- package/dist/implementations/USDZDataAPI.cjs +1209 -0
- package/dist/implementations/USDZDataAPI.cjs.map +1 -0
- package/dist/implementations/USDZDataAPI.d.cts +191 -0
- package/dist/implementations/USDZDataAPI.d.cts.map +1 -0
- package/dist/implementations/USDZDataAPI.d.mts +191 -0
- package/dist/implementations/USDZDataAPI.d.mts.map +1 -0
- package/dist/implementations/USDZDataAPI.mjs +1205 -0
- package/dist/implementations/USDZDataAPI.mjs.map +1 -0
- package/dist/implementations/ZBTCVCAPI.cjs +906 -0
- package/dist/implementations/ZBTCVCAPI.cjs.map +1 -0
- package/dist/implementations/ZBTCVCAPI.d.cts +107 -0
- package/dist/implementations/ZBTCVCAPI.d.cts.map +1 -0
- package/dist/implementations/ZBTCVCAPI.d.mts +107 -0
- package/dist/implementations/ZBTCVCAPI.d.mts.map +1 -0
- package/dist/implementations/ZBTCVCAPI.mjs +902 -0
- package/dist/implementations/ZBTCVCAPI.mjs.map +1 -0
- package/dist/implementations/ZBTCVCDataAPI.cjs +829 -0
- package/dist/implementations/ZBTCVCDataAPI.cjs.map +1 -0
- package/dist/implementations/ZBTCVCDataAPI.d.cts +94 -0
- package/dist/implementations/ZBTCVCDataAPI.d.cts.map +1 -0
- package/dist/implementations/ZBTCVCDataAPI.d.mts +94 -0
- package/dist/implementations/ZBTCVCDataAPI.d.mts.map +1 -0
- package/dist/implementations/ZBTCVCDataAPI.mjs +825 -0
- package/dist/implementations/ZBTCVCDataAPI.mjs.map +1 -0
- package/dist/implementations/ZLPAPI.cjs +1948 -0
- package/dist/implementations/ZLPAPI.cjs.map +1 -0
- package/dist/implementations/ZLPAPI.d.cts +192 -0
- package/dist/implementations/ZLPAPI.d.cts.map +1 -0
- package/dist/implementations/ZLPAPI.d.mts +192 -0
- package/dist/implementations/ZLPAPI.d.mts.map +1 -0
- package/dist/implementations/ZLPAPI.mjs +1944 -0
- package/dist/implementations/ZLPAPI.mjs.map +1 -0
- package/dist/implementations/ZLPDataAPI.cjs +1267 -0
- package/dist/implementations/ZLPDataAPI.cjs.map +1 -0
- package/dist/implementations/ZLPDataAPI.d.cts +193 -0
- package/dist/implementations/ZLPDataAPI.d.cts.map +1 -0
- package/dist/implementations/ZLPDataAPI.d.mts +193 -0
- package/dist/implementations/ZLPDataAPI.d.mts.map +1 -0
- package/dist/implementations/ZLPDataAPI.mjs +1263 -0
- package/dist/implementations/ZLPDataAPI.mjs.map +1 -0
- package/dist/implementations/index.cjs +26 -0
- package/dist/implementations/index.cjs.map +1 -0
- package/dist/implementations/index.d.cts +13 -0
- package/dist/implementations/index.d.cts.map +1 -0
- package/dist/implementations/index.d.mts +13 -0
- package/dist/implementations/index.d.mts.map +1 -0
- package/dist/implementations/index.mjs +15 -0
- package/dist/implementations/index.mjs.map +1 -0
- package/dist/index.cjs +69 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +51 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +51 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +51 -0
- package/dist/index.mjs.map +1 -0
- package/dist/interfaces/base.cjs +7 -0
- package/dist/interfaces/base.cjs.map +1 -0
- package/dist/interfaces/base.d.cts +346 -0
- package/dist/interfaces/base.d.cts.map +1 -0
- package/dist/interfaces/base.d.mts +346 -0
- package/dist/interfaces/base.d.mts.map +1 -0
- package/dist/interfaces/base.mjs +6 -0
- package/dist/interfaces/base.mjs.map +1 -0
- package/dist/interfaces/index.cjs +31 -0
- package/dist/interfaces/index.cjs.map +1 -0
- package/dist/interfaces/index.d.cts +15 -0
- package/dist/interfaces/index.d.cts.map +1 -0
- package/dist/interfaces/index.d.mts +15 -0
- package/dist/interfaces/index.d.mts.map +1 -0
- package/dist/interfaces/index.mjs +15 -0
- package/dist/interfaces/index.mjs.map +1 -0
- package/dist/interfaces/slp.cjs +7 -0
- package/dist/interfaces/slp.cjs.map +1 -0
- package/dist/interfaces/slp.d.cts +179 -0
- package/dist/interfaces/slp.d.cts.map +1 -0
- package/dist/interfaces/slp.d.mts +179 -0
- package/dist/interfaces/slp.d.mts.map +1 -0
- package/dist/interfaces/slp.mjs +6 -0
- package/dist/interfaces/slp.mjs.map +1 -0
- package/dist/interfaces/usdz.cjs +7 -0
- package/dist/interfaces/usdz.cjs.map +1 -0
- package/dist/interfaces/usdz.d.cts +104 -0
- package/dist/interfaces/usdz.d.cts.map +1 -0
- package/dist/interfaces/usdz.d.mts +104 -0
- package/dist/interfaces/usdz.d.mts.map +1 -0
- package/dist/interfaces/usdz.mjs +6 -0
- package/dist/interfaces/usdz.mjs.map +1 -0
- package/dist/interfaces/zbtcvc.cjs +7 -0
- package/dist/interfaces/zbtcvc.cjs.map +1 -0
- package/dist/interfaces/zbtcvc.d.cts +64 -0
- package/dist/interfaces/zbtcvc.d.cts.map +1 -0
- package/dist/interfaces/zbtcvc.d.mts +64 -0
- package/dist/interfaces/zbtcvc.d.mts.map +1 -0
- package/dist/interfaces/zbtcvc.mjs +6 -0
- package/dist/interfaces/zbtcvc.mjs.map +1 -0
- package/dist/interfaces/zlp.cjs +7 -0
- package/dist/interfaces/zlp.cjs.map +1 -0
- package/dist/interfaces/zlp.d.cts +114 -0
- package/dist/interfaces/zlp.d.cts.map +1 -0
- package/dist/interfaces/zlp.d.mts +114 -0
- package/dist/interfaces/zlp.d.mts.map +1 -0
- package/dist/interfaces/zlp.mjs +6 -0
- package/dist/interfaces/zlp.mjs.map +1 -0
- package/dist/oracle.cjs +118 -0
- package/dist/oracle.cjs.map +1 -0
- package/dist/oracle.d.cts +25 -0
- package/dist/oracle.d.cts.map +1 -0
- package/dist/oracle.d.mts +25 -0
- package/dist/oracle.d.mts.map +1 -0
- package/dist/oracle.mjs +114 -0
- package/dist/oracle.mjs.map +1 -0
- package/dist/utils.cjs +129 -0
- package/dist/utils.cjs.map +1 -0
- package/dist/utils.d.cts +44 -0
- package/dist/utils.d.cts.map +1 -0
- package/dist/utils.d.mts +44 -0
- package/dist/utils.d.mts.map +1 -0
- package/dist/utils.mjs +115 -0
- package/dist/utils.mjs.map +1 -0
- package/docs/SUMMARY.md +10 -0
- package/docs/api-reference.md +32 -0
- package/docs/architecture.md +14 -0
- package/docs/common-operations.md +52 -0
- package/docs/error-handling.md +17 -0
- package/docs/getting-started.md +60 -0
- package/docs/introduction.md +15 -0
- package/docs/lp-specific-features.md +96 -0
- package/docs/type-safety.md +29 -0
- package/eslint.config.mjs +18 -0
- package/package.json +42 -0
- package/src/abstract/BaseAPI.ts +575 -0
- package/src/abstract/BaseDataAPI.ts +207 -0
- package/src/abstract/index.ts +7 -0
- package/src/api.ts +1100 -0
- package/src/bcs.ts +45 -0
- package/src/consts/deployments-shared-mainnet.json +50 -0
- package/src/consts/deployments-shared-testnet.json +45 -0
- package/src/consts/deployments-slp-mainnet.json +600 -0
- package/src/consts/deployments-slp-testnet.json +87 -0
- package/src/consts/deployments-usdz-mainnet.json +494 -0
- package/src/consts/deployments-usdz-testnet.json +98 -0
- package/src/consts/deployments-zbtcvc-mainnet.json +180 -0
- package/src/consts/deployments-zlp-mainnet.json +791 -0
- package/src/consts/deployments-zlp-testnet.json +76 -0
- package/src/consts/index.ts +345 -0
- package/src/consts/price_id_to_object_id.mainnet.json +56 -0
- package/src/consts/price_id_to_object_id.testnet.json +17 -0
- package/src/data.ts +1279 -0
- package/src/factory/SDKFactory.ts +340 -0
- package/src/implementations/SLPAPI.ts +2722 -0
- package/src/implementations/SLPDataAPI.ts +1839 -0
- package/src/implementations/USDZAPI.ts +2488 -0
- package/src/implementations/USDZDataAPI.ts +1548 -0
- package/src/implementations/ZBTCVCAPI.ts +1337 -0
- package/src/implementations/ZBTCVCDataAPI.ts +993 -0
- package/src/implementations/ZLPAPI.ts +2888 -0
- package/src/implementations/ZLPDataAPI.ts +1603 -0
- package/src/implementations/index.ts +16 -0
- package/src/index.ts +58 -0
- package/src/interfaces/base.ts +838 -0
- package/src/interfaces/index.ts +50 -0
- package/src/interfaces/slp.ts +268 -0
- package/src/interfaces/usdz.ts +181 -0
- package/src/interfaces/zbtcvc.ts +116 -0
- package/src/interfaces/zlp.ts +244 -0
- package/src/oracle.ts +153 -0
- package/src/utils.ts +168 -0
- package/tests/api.test.ts +219 -0
- package/tests/data.test.ts +156 -0
- package/tests/oracle.test.ts +33 -0
- package/tsconfig.json +22 -0
package/src/bcs.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { bcs } from '@mysten/bcs'
|
|
2
|
+
|
|
3
|
+
export const Rate = bcs.u128()
|
|
4
|
+
export const Decimal = bcs.u256()
|
|
5
|
+
|
|
6
|
+
export const SDecimal = bcs.struct('SDecimal', {
|
|
7
|
+
is_positive: bcs.bool(),
|
|
8
|
+
value: bcs.u256(),
|
|
9
|
+
})
|
|
10
|
+
|
|
11
|
+
export const SRate = bcs.struct('SRate', {
|
|
12
|
+
is_positive: bcs.bool(),
|
|
13
|
+
value: bcs.u128(),
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
// Agg price
|
|
17
|
+
export const AggPrice = bcs.struct('AggPrice', {
|
|
18
|
+
price: bcs.u256(), // Decimal
|
|
19
|
+
precision: bcs.u64(),
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
// Market
|
|
23
|
+
export const VaultInfo = bcs.struct('VaultInfo', {
|
|
24
|
+
price: AggPrice,
|
|
25
|
+
value: bcs.u256(), // Decimal
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
export const VaultsValuation = bcs.struct('VaultsValuation', {
|
|
29
|
+
timestamp: bcs.u64(),
|
|
30
|
+
num: bcs.u64(),
|
|
31
|
+
handled: bcs.vector(bcs.struct('Entry', {
|
|
32
|
+
key: bcs.string(), // TypeName
|
|
33
|
+
value: VaultInfo,
|
|
34
|
+
})),
|
|
35
|
+
total_weight: bcs.u256(), // Decimal
|
|
36
|
+
value: bcs.u256(), // Decimal
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
export const SymbolsValuation = bcs.struct('SymbolsValuation', {
|
|
40
|
+
timestamp: bcs.u64(),
|
|
41
|
+
num: bcs.u64(),
|
|
42
|
+
lp_supply_amount: bcs.u256(), // Decimal
|
|
43
|
+
handled: bcs.vector(bcs.string()), // vector<TypeName>
|
|
44
|
+
value: SDecimal,
|
|
45
|
+
})
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"zo_staking": {
|
|
3
|
+
"package": "0x87c13bb9157c3d51d61c7802704539d9d4782e838aadc41df0d6f0cc117298ba",
|
|
4
|
+
"upgraded_package": "0xf09eedd07bae94dd67d7593bda318ad361e8119445330e01cddf408908cdde8c",
|
|
5
|
+
"upgrade_cap": "0x0b2ebbdedd751039cf033c1b24f61069b26cb2f99523789e150b5db59f13ccfd",
|
|
6
|
+
"admin_cap": "0xe339faca7f7558bdf8256e7174d0543e5db99befcd0e5b9bef9c421cecabc195",
|
|
7
|
+
"acl_control": "0x2de40211db8cc6aac0fe01acd8ea53943a577fa9ce13e0419ef1b821b75c8b9b",
|
|
8
|
+
"pools": {
|
|
9
|
+
"usdz": "0x283291d471764236db56b692f4f890c4d244a2891c478ee16c7e5076b6ad0fa7",
|
|
10
|
+
"zlp": "0x977682dfb66158e6fb7fdcac7dd89a162e13fae6a8555b2a1e04d71c525c2578",
|
|
11
|
+
"slp": "0x7afc8737b6b70e1719f63c6f8765e4565ea02e208301b8ec5d5666684b0a7152"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"zo_lootbox": {
|
|
15
|
+
"package": "0x6682aaed15da135e34449cce7f89bf9e79c0fce1087173391a041742d8081690",
|
|
16
|
+
"upgraded_package": "0xb65898d45d8500de8b5b5538f1aacd207c0b2b9ba66ff8fdee7774260095c562",
|
|
17
|
+
"upgrade_cap": "0xd4b532d243b4297a585d939806372b70a403e25ae0661f926e5cf47a7e259485",
|
|
18
|
+
"admin_cap": "0x3741e6ef40ac7995a71ea94d1e99b9e3c8219a07086fbb9f33c1a392257931a3",
|
|
19
|
+
"lootbox_publisher": "0x37692f6fe75bfd872a8c13200190fbb1499409a4527d1f2a95f83c1726d0fb40",
|
|
20
|
+
"lootbox_settings": "0x487ef11430b9c842cb194c407746270e2dae052be7777a9cfdb226dfaafe6615",
|
|
21
|
+
"lootbox_treasury": "0x8546a0cb636381410effb45fdbbd96d0eb6f5f083e3d22622e9ab7c8773fe80d",
|
|
22
|
+
"prize_pool_parent": "0x4cbd13b3ff1fee323a3b801665dfaffa44ff919e1b8b65e65538ca585ddec8d5",
|
|
23
|
+
"prize_pools": {
|
|
24
|
+
"zlp": {
|
|
25
|
+
"id": "0xed8129dd02dc5a4b7aee35297dadd34c2c5b5b5055c405a5d04170bc241a0366",
|
|
26
|
+
"display": "0x717d08f300644acc6f2bead4773df6fc4f61ba603b762fb69aa3c55d768d4e13"
|
|
27
|
+
},
|
|
28
|
+
"wal": {
|
|
29
|
+
"id": "0xd55b14020ae206609caed324e1525dfd4475ac59743ef625a7d41f49e16bc31d",
|
|
30
|
+
"display": "0x301235c502c175dc2226cc78466a627bab2c0103df0e32d79c244fc0429116b2"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"zo_lootbox_v2": {
|
|
35
|
+
"package": "0xc43002b11b73db988fc354cfc35a8fa774c0a3a2204c8ec79988d0ae51e77b06",
|
|
36
|
+
"upgraded_package": "0x61225cb90b7a02fed898c387f1e0f9b5ed0f64d8b425a930734e4363c5bc72bc",
|
|
37
|
+
"upgrade_cap": "0x00adebde014ff3454a9052814b5d2086ed8a33dda5cec0484c2b0d536e7332f2",
|
|
38
|
+
"admin_cap": "0xbab763e85c75782b33f0d876501fbbd164c9c8a433d510ec03d92773daf7afee",
|
|
39
|
+
"lootbox_publisher": "0x8b85c57f84e6352e1ea5fe219596d823967dcf7abaaadb1af010fb99362d21f0",
|
|
40
|
+
"lootbox_settings": "0xf624ec3db815462684fb85628244a172633169340acb20424ad6db3bfeb81cbc",
|
|
41
|
+
"lootbox_treasury": "0xaea0862390cf91a03809d41b3ff12beecf4809b84036d2c2a154089402e1a3c4",
|
|
42
|
+
"prize_pool_parent": "0x20e6412dc36285e072ba7492f90dd6439b1c2f9ea627c8c0e8d879e5079ce804",
|
|
43
|
+
"prize_pools": {
|
|
44
|
+
"zlp": {
|
|
45
|
+
"id": "0x514468afe5b8012497bacc17812e3639114eee8684c0ccd4e97fc84404d495b4",
|
|
46
|
+
"display": "0xf1ee437698e47537c614d97d209379653b00917a1d52b100296218699e893343"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"zo_staking": {
|
|
3
|
+
"package": "",
|
|
4
|
+
"upgrade_cap": "",
|
|
5
|
+
"admin_cap": "",
|
|
6
|
+
"acl_control": "",
|
|
7
|
+
"pools": {
|
|
8
|
+
"USDZ": "",
|
|
9
|
+
"ZLP": "",
|
|
10
|
+
"SLP": "",
|
|
11
|
+
"ZBTCVC": ""
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"zo_lootbox": {
|
|
15
|
+
"package": "0xe788fcc15b3f3f7f0417f283152088ad207a237c8fba9f93161a920097e8464c",
|
|
16
|
+
"upgrade_cap": "0x9cc0e96f61b1a6527f9334e988757f659af7e36c80dadcc56b33d4f423bae3a6",
|
|
17
|
+
"admin_cap": "0x48ff09744bc2cdc660f31c537151e290fdc2b4610c409b32e78d774556e2b9ad",
|
|
18
|
+
"lootbox_publisher": "0x241e7ab859be1df89f4d9ed65caf48fc002a6a69d18b847c513d68e677e8e54d",
|
|
19
|
+
"lootbox_settings": "0x4a9019d183b5fc925e52639faf4cca17d40caf7d216da0b9fbe05fbfee6d2af4",
|
|
20
|
+
"lootbox_treasury": "0x7611ee091ce2bdbd624afdad5f53ce3c6311a8ea8680c916f3e59b706b7957bf",
|
|
21
|
+
"prize_pool_parent": "0x9885cc6bd0b12cb5436e44ca477f35c962bb688554dd7f0a968d1e7d756fbd12",
|
|
22
|
+
"prize_pools": {
|
|
23
|
+
"usdt": {
|
|
24
|
+
"id": "0xb5f93355b149aa29368a77b5b6a814957b4f7ee8d577a852f5e0d1a5a98ed0e4",
|
|
25
|
+
"display": "0x44b1f2a92d67ec42ce5dfcfecdbdd0bc837ba1a41dd0cf12809ddce4e238a2d2"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"zo_lootbox_v2": {
|
|
30
|
+
"package": "0x3500cf0571153853dd8a9e68a82a368f4202030604aa493599ca16fbfe1d273e",
|
|
31
|
+
"upgraded_package": "0x3500cf0571153853dd8a9e68a82a368f4202030604aa493599ca16fbfe1d273e",
|
|
32
|
+
"upgrade_cap": "0x0dfa113be565442f9a018ec818aa3b2c480f291761699415e1edd27d31ef6d7d",
|
|
33
|
+
"admin_cap": "0xdc6a4e832462fba17d21d2b2f5ca4590caed2b68e4660f8275c43e3b8a5f0b2c",
|
|
34
|
+
"lootbox_publisher": "0x502f098b24533e36618644cafaffcb2afef6ccc716ac7543c20a466525cb34b7",
|
|
35
|
+
"lootbox_settings": "0xf8438ec3235c5f4c90fd490d46e82f74a70ece3bad689429d4a83635e2852c96",
|
|
36
|
+
"lootbox_treasury": "0x668e7f17c9be096dfcc6e1c6191d55009b4e81ac86cfec6f8217a90df275254b",
|
|
37
|
+
"prize_pool_parent": "0xf00f41cc0b2767eb0cd366fe5a004ac2c812289acdee25a7323e0b344cb450a3",
|
|
38
|
+
"prize_pools": {
|
|
39
|
+
"usdt": {
|
|
40
|
+
"id": "0xe77012e93bb370e67eb7a9659d1db68e0b8a3f9171183a159bb3173447b9afd2",
|
|
41
|
+
"display": "0xc3cee5f383c6f30613b6813c4e45c07b92f3160572628a10ca206ccea480fd7c"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|