@hinkal/common 0.2.3 → 0.2.13

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 (28) hide show
  1. package/constants/deploy-data/deploy-data-optimism.json.cjs +1 -1
  2. package/constants/deploy-data/deploy-data-optimism.json.mjs +12 -8
  3. package/constants/token-data/bnbMainnetRegistry.json.cjs +1 -1
  4. package/constants/token-data/bnbMainnetRegistry.json.mjs +8 -8
  5. package/constants/token-data/bnbMainnetRegistryFixed.json.cjs +1 -1
  6. package/constants/token-data/bnbMainnetRegistryFixed.json.mjs +8 -8
  7. package/constants/token-data/ethMainnetRegistry.json.cjs +1 -1
  8. package/constants/token-data/ethMainnetRegistry.json.mjs +11 -11
  9. package/constants/token-data/ethMainnetRegistryFixed.json.cjs +1 -1
  10. package/constants/token-data/ethMainnetRegistryFixed.json.mjs +11 -11
  11. package/constants/token-data/localhostRegistry.json.cjs +1 -1
  12. package/constants/token-data/localhostRegistry.json.mjs +11 -11
  13. package/functions/private-wallet/emporium.helpers.cjs +1 -1
  14. package/functions/private-wallet/emporium.helpers.d.ts +8 -3
  15. package/functions/private-wallet/emporium.helpers.mjs +23 -11
  16. package/functions/private-wallet/index.d.ts +1 -0
  17. package/functions/private-wallet/opProducer.cjs +1 -1
  18. package/functions/private-wallet/opProducer.mjs +1 -1
  19. package/functions/private-wallet/smartContractWalletCalculator.cjs +1 -0
  20. package/functions/private-wallet/smartContractWalletCalculator.d.ts +1 -0
  21. package/functions/private-wallet/smartContractWalletCalculator.mjs +20 -0
  22. package/functions/utils/string.utils.cjs +1 -1
  23. package/functions/utils/string.utils.d.ts +1 -0
  24. package/functions/utils/string.utils.mjs +16 -6
  25. package/index.cjs +1 -1
  26. package/index.mjs +208 -205
  27. package/package.json +1 -1
  28. package/types/ethereum-network.types.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hinkal/common",
3
- "version": "0.2.3",
3
+ "version": "0.2.13",
4
4
  "homepage": "hinkal.pro",
5
5
  "author": {
6
6
  "name": "Hinkal Protocol"
@@ -120,6 +120,8 @@ export interface ContractData {
120
120
  hETHOracleAddress?: string;
121
121
  HTokenOracleABI?: ContractInterface;
122
122
  emporiumAddress?: string;
123
+ hinkalWalletFactoryAddress?: string;
124
+ hinkalWalletBeaconAddress?: string;
123
125
  }
124
126
  export interface EthereumNetwork {
125
127
  name: string;