@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.
Files changed (47) hide show
  1. package/background/KoniTypes.d.ts +10 -0
  2. package/cjs/koni/api/dotsama/domain.js +56 -0
  3. package/cjs/koni/api/nft/acala_nft/index.js +1 -1
  4. package/cjs/koni/api/nft/karura_nft/index.js +1 -1
  5. package/cjs/koni/api/nft/nft.js +3 -0
  6. package/cjs/koni/api/nft/wasm_nft/index.js +25 -7
  7. package/cjs/koni/api/staking/bonding/relayChain.js +12 -2
  8. package/cjs/koni/api/tokens/wasm/index.js +14 -0
  9. package/cjs/koni/background/cron.js +1 -1
  10. package/cjs/koni/background/handlers/Extension.js +13 -0
  11. package/cjs/koni/background/handlers/State.js +3 -0
  12. package/cjs/koni/background/subscription.js +3 -1
  13. package/cjs/packageInfo.js +1 -1
  14. package/cjs/services/chain-service/helper/index.js +8 -2
  15. package/cjs/services/chain-service/index.js +20 -2
  16. package/cjs/services/migration-service/scripts/DeleteChain.js +21 -0
  17. package/cjs/services/migration-service/scripts/index.js +3 -1
  18. package/cjs/services/transaction-service/utils.js +4 -1
  19. package/cjs/services/wallet-connect-service/index.js +19 -10
  20. package/koni/api/dotsama/domain.d.ts +10 -0
  21. package/koni/api/dotsama/domain.js +41 -0
  22. package/koni/api/nft/acala_nft/index.js +1 -1
  23. package/koni/api/nft/karura_nft/index.js +1 -1
  24. package/koni/api/nft/nft.js +3 -0
  25. package/koni/api/nft/wasm_nft/index.js +26 -8
  26. package/koni/api/staking/bonding/relayChain.js +12 -2
  27. package/koni/api/tokens/wasm/index.d.ts +2 -0
  28. package/koni/api/tokens/wasm/index.js +13 -1
  29. package/koni/background/cron.js +1 -1
  30. package/koni/background/handlers/Extension.d.ts +2 -0
  31. package/koni/background/handlers/Extension.js +13 -0
  32. package/koni/background/handlers/State.d.ts +1 -0
  33. package/koni/background/handlers/State.js +3 -0
  34. package/koni/background/subscription.js +3 -1
  35. package/package.json +19 -6
  36. package/packageInfo.js +1 -1
  37. package/services/chain-service/helper/azero_domain_registry_abi.json +5428 -0
  38. package/services/chain-service/helper/index.d.ts +2 -0
  39. package/services/chain-service/helper/index.js +5 -1
  40. package/services/chain-service/helper/pink_psp34_abi.json +2758 -0
  41. package/services/chain-service/index.d.ts +1 -0
  42. package/services/chain-service/index.js +20 -2
  43. package/services/migration-service/scripts/DeleteChain.d.ts +4 -0
  44. package/services/migration-service/scripts/DeleteChain.js +13 -0
  45. package/services/migration-service/scripts/index.js +3 -1
  46. package/services/transaction-service/utils.js +4 -1
  47. 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");