@subwallet/extension-base 1.1.7-0 → 1.1.9-0
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/background/KoniTypes.d.ts +10 -0
- package/cjs/koni/api/dotsama/domain.js +56 -0
- package/cjs/koni/api/nft/acala_nft/index.js +1 -1
- package/cjs/koni/api/nft/karura_nft/index.js +1 -1
- package/cjs/koni/api/nft/nft.js +3 -0
- package/cjs/koni/api/nft/wasm_nft/index.js +25 -7
- package/cjs/koni/api/staking/bonding/relayChain.js +12 -2
- package/cjs/koni/api/tokens/wasm/index.js +14 -0
- package/cjs/koni/background/cron.js +1 -1
- package/cjs/koni/background/handlers/Extension.js +13 -0
- package/cjs/koni/background/handlers/State.js +3 -0
- package/cjs/koni/background/subscription.js +3 -1
- package/cjs/packageInfo.js +1 -1
- package/cjs/services/chain-service/helper/index.js +8 -2
- package/cjs/services/chain-service/index.js +20 -2
- package/cjs/services/migration-service/scripts/DeleteChain.js +21 -0
- package/cjs/services/migration-service/scripts/index.js +3 -1
- package/cjs/services/transaction-service/utils.js +4 -1
- package/cjs/services/wallet-connect-service/index.js +19 -10
- package/koni/api/dotsama/domain.d.ts +10 -0
- package/koni/api/dotsama/domain.js +41 -0
- package/koni/api/nft/acala_nft/index.js +1 -1
- package/koni/api/nft/karura_nft/index.js +1 -1
- package/koni/api/nft/nft.js +3 -0
- package/koni/api/nft/wasm_nft/index.js +26 -8
- package/koni/api/staking/bonding/relayChain.js +12 -2
- package/koni/api/tokens/wasm/index.d.ts +2 -0
- package/koni/api/tokens/wasm/index.js +13 -1
- package/koni/background/cron.js +1 -1
- package/koni/background/handlers/Extension.d.ts +2 -0
- package/koni/background/handlers/Extension.js +13 -0
- package/koni/background/handlers/State.d.ts +1 -0
- package/koni/background/handlers/State.js +3 -0
- package/koni/background/subscription.js +3 -1
- package/package.json +19 -6
- package/packageInfo.js +1 -1
- package/services/chain-service/helper/azero_domain_registry_abi.json +5428 -0
- package/services/chain-service/helper/index.d.ts +2 -0
- package/services/chain-service/helper/index.js +5 -1
- package/services/chain-service/helper/pink_psp34_abi.json +2758 -0
- package/services/chain-service/index.d.ts +1 -0
- package/services/chain-service/index.js +20 -2
- package/services/migration-service/scripts/DeleteChain.d.ts +4 -0
- package/services/migration-service/scripts/DeleteChain.js +13 -0
- package/services/migration-service/scripts/index.js +3 -1
- package/services/transaction-service/utils.js +4 -1
- package/services/wallet-connect-service/index.js +19 -10
|
@@ -3,3 +3,5 @@ export declare const _ERC721_ABI: any;
|
|
|
3
3
|
export declare const _TEST_ERC721_ABI: any;
|
|
4
4
|
export declare const _PSP22_ABI: Record<string, any>;
|
|
5
5
|
export declare const _PSP34_ABI: Record<string, any>;
|
|
6
|
+
export declare const _PINK_PSP34_ABI: Record<string, any>;
|
|
7
|
+
export declare const _AZERO_DOMAIN_REGISTRY_ABI: Record<string, any>;
|
|
@@ -10,4 +10,8 @@ export const _TEST_ERC721_ABI = require("./test_erc721_abi.json");
|
|
|
10
10
|
// eslint-disable-next-line @typescript-eslint/no-var-requires,@typescript-eslint/no-unsafe-assignment
|
|
11
11
|
export const _PSP22_ABI = require("./psp22_abi.json");
|
|
12
12
|
// eslint-disable-next-line @typescript-eslint/no-var-requires,@typescript-eslint/no-unsafe-assignment
|
|
13
|
-
export const _PSP34_ABI = require("./psp34_abi.json");
|
|
13
|
+
export const _PSP34_ABI = require("./psp34_abi.json");
|
|
14
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires,@typescript-eslint/no-unsafe-assignment
|
|
15
|
+
export const _PINK_PSP34_ABI = require("./pink_psp34_abi.json");
|
|
16
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires,@typescript-eslint/no-unsafe-assignment
|
|
17
|
+
export const _AZERO_DOMAIN_REGISTRY_ABI = require("./azero_domain_registry_abi.json");
|