@deserialize/multi-vm-wallet 1.4.12 → 1.5.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/.claude/settings.local.json +7 -1
- package/BUILD_OPTIMIZATION_PLAN.md +640 -0
- package/BUILD_RESULTS.md +282 -0
- package/BUN_MIGRATION.md +415 -0
- package/CHANGELOG_SECURITY.md +573 -0
- package/IMPLEMENTATION_SUMMARY.md +494 -0
- package/SECURITY_AUDIT.md +1124 -0
- package/bun.lock +553 -0
- package/dist/IChainWallet.js +0 -5
- package/dist/bip32Old.js +0 -885
- package/dist/bip32Small.js +0 -79
- package/dist/bipTest.js +0 -362
- package/dist/constant.js +0 -17
- package/dist/english.js +0 -1
- package/dist/evm/aa-service/index.d.ts +0 -5
- package/dist/evm/aa-service/index.js +0 -14
- package/dist/evm/aa-service/lib/account-adapter.d.ts +0 -22
- package/dist/evm/aa-service/lib/account-adapter.js +0 -24
- package/dist/evm/aa-service/lib/kernel-account.d.ts +0 -30
- package/dist/evm/aa-service/lib/kernel-account.js +2 -67
- package/dist/evm/aa-service/lib/kernel-modules.d.ts +0 -177
- package/dist/evm/aa-service/lib/kernel-modules.js +4 -202
- package/dist/evm/aa-service/lib/session-keys.d.ts +0 -118
- package/dist/evm/aa-service/lib/session-keys.js +7 -151
- package/dist/evm/aa-service/lib/type.d.ts +0 -55
- package/dist/evm/aa-service/lib/type.js +0 -10
- package/dist/evm/aa-service/services/account-abstraction.d.ts +0 -426
- package/dist/evm/aa-service/services/account-abstraction.js +0 -461
- package/dist/evm/aa-service/services/bundler.d.ts +0 -6
- package/dist/evm/aa-service/services/bundler.js +0 -54
- package/dist/evm/evm.d.ts +10 -67
- package/dist/evm/evm.js +340 -102
- package/dist/evm/index.js +0 -3
- package/dist/evm/script.js +3 -17
- package/dist/evm/smartWallet.d.ts +0 -173
- package/dist/evm/smartWallet.js +0 -206
- package/dist/evm/smartWallet.types.d.ts +0 -6
- package/dist/evm/smartWallet.types.js +0 -8
- package/dist/evm/transaction.utils.d.ts +0 -242
- package/dist/evm/transaction.utils.js +4 -320
- package/dist/evm/transactionParsing.d.ts +0 -11
- package/dist/evm/transactionParsing.js +28 -147
- package/dist/evm/utils.d.ts +0 -46
- package/dist/evm/utils.js +1 -57
- package/dist/helpers/index.d.ts +0 -4
- package/dist/helpers/index.js +8 -44
- package/dist/helpers/routeScan.js +0 -1
- package/dist/index.js +0 -1
- package/dist/old.js +0 -884
- package/dist/price.js +0 -1
- package/dist/price.types.js +0 -2
- package/dist/rate-limiter.d.ts +28 -0
- package/dist/rate-limiter.js +95 -0
- package/dist/retry-logic.d.ts +14 -0
- package/dist/retry-logic.js +120 -0
- package/dist/savings/index.d.ts +1 -0
- package/dist/savings/index.js +16 -2
- package/dist/savings/saving-manager.d.ts +46 -0
- package/dist/savings/saving-manager.js +176 -0
- package/dist/savings/savings-operations.d.ts +39 -0
- package/dist/savings/savings-operations.js +141 -0
- package/dist/savings/smart-savings.d.ts +0 -63
- package/dist/savings/smart-savings.js +0 -78
- package/dist/savings/types.d.ts +0 -69
- package/dist/savings/types.js +0 -7
- package/dist/savings/validation.d.ts +9 -0
- package/dist/savings/validation.js +85 -0
- package/dist/svm/constant.js +0 -1
- package/dist/svm/index.js +0 -1
- package/dist/svm/svm.d.ts +7 -13
- package/dist/svm/svm.js +263 -46
- package/dist/svm/transactionParsing.d.ts +0 -7
- package/dist/svm/transactionParsing.js +3 -41
- package/dist/svm/transactionSender.js +0 -9
- package/dist/svm/utils.d.ts +0 -12
- package/dist/svm/utils.js +9 -60
- package/dist/test.d.ts +0 -4
- package/dist/test.js +15 -95
- package/dist/transaction-utils.d.ts +38 -0
- package/dist/transaction-utils.js +168 -0
- package/dist/types.d.ts +36 -0
- package/dist/types.js +0 -1
- package/dist/utils.js +0 -1
- package/dist/vm-validation.d.ts +11 -0
- package/dist/vm-validation.js +151 -0
- package/dist/vm.d.ts +14 -16
- package/dist/vm.js +64 -53
- package/dist/walletBip32.d.ts +2 -0
- package/dist/walletBip32.js +33 -66
- package/package.json +9 -4
- package/test-discovery.ts +235 -0
- package/test-pocket-discovery.ts +84 -0
- package/tsconfig.json +18 -11
- package/tsconfig.prod.json +10 -0
- package/utils/IChainWallet.ts +2 -0
- package/utils/evm/evm.ts +560 -39
- package/utils/rate-limiter.ts +179 -0
- package/utils/retry-logic.ts +271 -0
- package/utils/savings/EXAMPLES.md +883 -0
- package/utils/savings/SECURITY.md +731 -0
- package/utils/savings/index.ts +1 -1
- package/utils/savings/saving-manager.ts +656 -0
- package/utils/savings/savings-operations.ts +509 -0
- package/utils/savings/validation.ts +187 -0
- package/utils/svm/svm.ts +467 -20
- package/utils/test.ts +26 -3
- package/utils/transaction-utils.ts +394 -0
- package/utils/types.ts +100 -0
- package/utils/vm-validation.ts +280 -0
- package/utils/vm.ts +202 -24
- package/utils/walletBip32.ts +63 -3
- package/dist/IChainWallet.js.map +0 -1
- package/dist/bip32.d.ts +0 -9
- package/dist/bip32.js +0 -172
- package/dist/bip32.js.map +0 -1
- package/dist/bip32Old.js.map +0 -1
- package/dist/bip32Small.js.map +0 -1
- package/dist/bipTest.js.map +0 -1
- package/dist/constant.js.map +0 -1
- package/dist/english.js.map +0 -1
- package/dist/evm/SMART_WALLET_EXAMPLES.d.ts +0 -20
- package/dist/evm/SMART_WALLET_EXAMPLES.js +0 -451
- package/dist/evm/SMART_WALLET_EXAMPLES.js.map +0 -1
- package/dist/evm/aa-service/index.js.map +0 -1
- package/dist/evm/aa-service/lib/account-adapter.js.map +0 -1
- package/dist/evm/aa-service/lib/kernel-account.js.map +0 -1
- package/dist/evm/aa-service/lib/kernel-modules.js.map +0 -1
- package/dist/evm/aa-service/lib/session-keys.js.map +0 -1
- package/dist/evm/aa-service/lib/type.js.map +0 -1
- package/dist/evm/aa-service/services/account-abstraction.js.map +0 -1
- package/dist/evm/aa-service/services/bundler.js.map +0 -1
- package/dist/evm/evm.js.map +0 -1
- package/dist/evm/index.js.map +0 -1
- package/dist/evm/script.js.map +0 -1
- package/dist/evm/smartWallet.js.map +0 -1
- package/dist/evm/smartWallet.types.js.map +0 -1
- package/dist/evm/transaction.utils.js.map +0 -1
- package/dist/evm/transactionParsing.js.map +0 -1
- package/dist/evm/utils.js.map +0 -1
- package/dist/helpers/index.js.map +0 -1
- package/dist/helpers/routeScan.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/old.js.map +0 -1
- package/dist/price.js.map +0 -1
- package/dist/price.types.js.map +0 -1
- package/dist/privacy/artifact-manager.d.ts +0 -117
- package/dist/privacy/artifact-manager.js +0 -251
- package/dist/privacy/artifact-manager.js.map +0 -1
- package/dist/privacy/broadcaster-client.d.ts +0 -166
- package/dist/privacy/broadcaster-client.js +0 -261
- package/dist/privacy/broadcaster-client.js.map +0 -1
- package/dist/privacy/index.d.ts +0 -34
- package/dist/privacy/index.js +0 -56
- package/dist/privacy/index.js.map +0 -1
- package/dist/privacy/network-config.d.ts +0 -57
- package/dist/privacy/network-config.js +0 -118
- package/dist/privacy/network-config.js.map +0 -1
- package/dist/privacy/poi-helper.d.ts +0 -161
- package/dist/privacy/poi-helper.js +0 -249
- package/dist/privacy/poi-helper.js.map +0 -1
- package/dist/privacy/railgun-engine.d.ts +0 -135
- package/dist/privacy/railgun-engine.js +0 -205
- package/dist/privacy/railgun-engine.js.map +0 -1
- package/dist/privacy/railgun-privacy-wallet.d.ts +0 -288
- package/dist/privacy/railgun-privacy-wallet.js +0 -539
- package/dist/privacy/railgun-privacy-wallet.js.map +0 -1
- package/dist/privacy/types.d.ts +0 -229
- package/dist/privacy/types.js +0 -26
- package/dist/privacy/types.js.map +0 -1
- package/dist/savings/index.js.map +0 -1
- package/dist/savings/saving-actions.d.ts +0 -0
- package/dist/savings/saving-actions.js +0 -78
- package/dist/savings/saving-actions.js.map +0 -1
- package/dist/savings/savings-manager.d.ts +0 -126
- package/dist/savings/savings-manager.js +0 -234
- package/dist/savings/savings-manager.js.map +0 -1
- package/dist/savings/smart-savings.js.map +0 -1
- package/dist/savings/types.js.map +0 -1
- package/dist/svm/constant.js.map +0 -1
- package/dist/svm/index.js.map +0 -1
- package/dist/svm/svm.js.map +0 -1
- package/dist/svm/transactionParsing.js.map +0 -1
- package/dist/svm/transactionSender.js.map +0 -1
- package/dist/svm/utils.js.map +0 -1
- package/dist/test.js.map +0 -1
- package/dist/types.js.map +0 -1
- package/dist/utils.js.map +0 -1
- package/dist/vm.js.map +0 -1
- package/dist/walletBip32.js.map +0 -1
- package/utils/savings/saving-actions.ts +0 -92
- package/utils/savings/savings-manager.ts +0 -271
package/bun.lock
ADDED
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 1,
|
|
3
|
+
"workspaces": {
|
|
4
|
+
"": {
|
|
5
|
+
"name": "@deserialize/multi-vm-wallet",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
|
|
8
|
+
"@metaplex-foundation/umi": "^1.4.1",
|
|
9
|
+
"@metaplex-foundation/umi-bundle-defaults": "^1.4.1",
|
|
10
|
+
"@noble/hashes": "^1.3.3",
|
|
11
|
+
"@scure/bip32": "^2.0.1",
|
|
12
|
+
"@scure/bip39": "^2.0.1",
|
|
13
|
+
"@simplewebauthn/typescript-types": "^8.3.4",
|
|
14
|
+
"@solana/spl-token": "^0.4.13",
|
|
15
|
+
"@solana/web3.js": "^1.98.4",
|
|
16
|
+
"@zerodev/hooks": "^5.3.4",
|
|
17
|
+
"@zerodev/permissions": "^5.6.3",
|
|
18
|
+
"@zerodev/sdk": "^5.5.7",
|
|
19
|
+
"@zerodev/webauthn-key": "^5.5.0",
|
|
20
|
+
"bignumber.js": "^9.3.1",
|
|
21
|
+
"bn.js": "^5.2.2",
|
|
22
|
+
"bs58": "^6.0.0",
|
|
23
|
+
"crypto-js": "^4.2.0",
|
|
24
|
+
"debonk-evm-sever-sdk": "^1.4.0",
|
|
25
|
+
"ethers": "^6.15.0",
|
|
26
|
+
"permissionless": "^0.3.2",
|
|
27
|
+
"promise-retry": "^2.0.1",
|
|
28
|
+
"tslib": "^2.8.1",
|
|
29
|
+
"tweetnacl": "^1.0.3",
|
|
30
|
+
"viem": "^2.43.4",
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/bn.js": "^5.2.0",
|
|
34
|
+
"@types/crypto-js": "^4.2.2",
|
|
35
|
+
"@types/node": "^24.2.1",
|
|
36
|
+
"@types/promise-retry": "^1.1.6",
|
|
37
|
+
"ts-node-dev": "^2.0.0",
|
|
38
|
+
"typescript": "^5.9.2",
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
"packages": {
|
|
43
|
+
"@adraffy/ens-normalize": ["@adraffy/ens-normalize@https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz", {}],
|
|
44
|
+
|
|
45
|
+
"@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.2.tgz", {}],
|
|
46
|
+
|
|
47
|
+
"@cspotcode/source-map-support": ["@cspotcode/source-map-support@https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", { "dependencies": { "@jridgewell/trace-mapping": "0.3.9" } }],
|
|
48
|
+
|
|
49
|
+
"@ethereumjs/rlp": ["@ethereumjs/rlp@https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz", {}],
|
|
50
|
+
|
|
51
|
+
"@ethereumjs/util": ["@ethereumjs/util@https://registry.npmjs.org/@ethereumjs/util/-/util-8.1.0.tgz", { "dependencies": { "@ethereumjs/rlp": "^4.0.1", "ethereum-cryptography": "^2.0.0", "micro-ftch": "^0.3.1" } }],
|
|
52
|
+
|
|
53
|
+
"@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", {}],
|
|
54
|
+
|
|
55
|
+
"@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", {}],
|
|
56
|
+
|
|
57
|
+
"@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", { "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }],
|
|
58
|
+
|
|
59
|
+
"@metaplex-foundation/mpl-token-metadata": ["@metaplex-foundation/mpl-token-metadata@https://registry.npmjs.org/@metaplex-foundation/mpl-token-metadata/-/mpl-token-metadata-3.4.0.tgz", { "dependencies": { "@metaplex-foundation/mpl-toolbox": "^0.10.0" } }],
|
|
60
|
+
|
|
61
|
+
"@metaplex-foundation/mpl-toolbox": ["@metaplex-foundation/mpl-toolbox@https://registry.npmjs.org/@metaplex-foundation/mpl-toolbox/-/mpl-toolbox-0.10.0.tgz", {}],
|
|
62
|
+
|
|
63
|
+
"@metaplex-foundation/umi": ["@metaplex-foundation/umi@https://registry.npmjs.org/@metaplex-foundation/umi/-/umi-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-options": "^1.4.1", "@metaplex-foundation/umi-public-keys": "^1.4.1", "@metaplex-foundation/umi-serializers": "^1.4.1" } }],
|
|
64
|
+
|
|
65
|
+
"@metaplex-foundation/umi-bundle-defaults": ["@metaplex-foundation/umi-bundle-defaults@https://registry.npmjs.org/@metaplex-foundation/umi-bundle-defaults/-/umi-bundle-defaults-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-downloader-http": "^1.4.1", "@metaplex-foundation/umi-eddsa-web3js": "^1.4.1", "@metaplex-foundation/umi-http-fetch": "^1.4.1", "@metaplex-foundation/umi-program-repository": "^1.4.1", "@metaplex-foundation/umi-rpc-chunk-get-accounts": "^1.4.1", "@metaplex-foundation/umi-rpc-web3js": "^1.4.1", "@metaplex-foundation/umi-serializer-data-view": "^1.4.1", "@metaplex-foundation/umi-transaction-factory-web3js": "^1.4.1" } }],
|
|
66
|
+
|
|
67
|
+
"@metaplex-foundation/umi-downloader-http": ["@metaplex-foundation/umi-downloader-http@https://registry.npmjs.org/@metaplex-foundation/umi-downloader-http/-/umi-downloader-http-1.4.1.tgz", {}],
|
|
68
|
+
|
|
69
|
+
"@metaplex-foundation/umi-eddsa-web3js": ["@metaplex-foundation/umi-eddsa-web3js@https://registry.npmjs.org/@metaplex-foundation/umi-eddsa-web3js/-/umi-eddsa-web3js-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-web3js-adapters": "^1.4.1", "@noble/curves": "^1.0.0", "yaml": "^2.7.0" } }],
|
|
70
|
+
|
|
71
|
+
"@metaplex-foundation/umi-http-fetch": ["@metaplex-foundation/umi-http-fetch@https://registry.npmjs.org/@metaplex-foundation/umi-http-fetch/-/umi-http-fetch-1.4.1.tgz", { "dependencies": { "node-fetch": "^2.6.7" } }],
|
|
72
|
+
|
|
73
|
+
"@metaplex-foundation/umi-options": ["@metaplex-foundation/umi-options@https://registry.npmjs.org/@metaplex-foundation/umi-options/-/umi-options-1.4.1.tgz", {}],
|
|
74
|
+
|
|
75
|
+
"@metaplex-foundation/umi-program-repository": ["@metaplex-foundation/umi-program-repository@https://registry.npmjs.org/@metaplex-foundation/umi-program-repository/-/umi-program-repository-1.4.1.tgz", {}],
|
|
76
|
+
|
|
77
|
+
"@metaplex-foundation/umi-public-keys": ["@metaplex-foundation/umi-public-keys@https://registry.npmjs.org/@metaplex-foundation/umi-public-keys/-/umi-public-keys-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-serializers-encodings": "^1.4.1" } }],
|
|
78
|
+
|
|
79
|
+
"@metaplex-foundation/umi-rpc-chunk-get-accounts": ["@metaplex-foundation/umi-rpc-chunk-get-accounts@https://registry.npmjs.org/@metaplex-foundation/umi-rpc-chunk-get-accounts/-/umi-rpc-chunk-get-accounts-1.4.1.tgz", {}],
|
|
80
|
+
|
|
81
|
+
"@metaplex-foundation/umi-rpc-web3js": ["@metaplex-foundation/umi-rpc-web3js@https://registry.npmjs.org/@metaplex-foundation/umi-rpc-web3js/-/umi-rpc-web3js-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-web3js-adapters": "^1.4.1" } }],
|
|
82
|
+
|
|
83
|
+
"@metaplex-foundation/umi-serializer-data-view": ["@metaplex-foundation/umi-serializer-data-view@https://registry.npmjs.org/@metaplex-foundation/umi-serializer-data-view/-/umi-serializer-data-view-1.4.1.tgz", {}],
|
|
84
|
+
|
|
85
|
+
"@metaplex-foundation/umi-serializers": ["@metaplex-foundation/umi-serializers@https://registry.npmjs.org/@metaplex-foundation/umi-serializers/-/umi-serializers-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-options": "^1.4.1", "@metaplex-foundation/umi-public-keys": "^1.4.1", "@metaplex-foundation/umi-serializers-core": "^1.4.1", "@metaplex-foundation/umi-serializers-encodings": "^1.4.1", "@metaplex-foundation/umi-serializers-numbers": "^1.4.1" } }],
|
|
86
|
+
|
|
87
|
+
"@metaplex-foundation/umi-serializers-core": ["@metaplex-foundation/umi-serializers-core@https://registry.npmjs.org/@metaplex-foundation/umi-serializers-core/-/umi-serializers-core-1.4.1.tgz", {}],
|
|
88
|
+
|
|
89
|
+
"@metaplex-foundation/umi-serializers-encodings": ["@metaplex-foundation/umi-serializers-encodings@https://registry.npmjs.org/@metaplex-foundation/umi-serializers-encodings/-/umi-serializers-encodings-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-serializers-core": "^1.4.1" } }],
|
|
90
|
+
|
|
91
|
+
"@metaplex-foundation/umi-serializers-numbers": ["@metaplex-foundation/umi-serializers-numbers@https://registry.npmjs.org/@metaplex-foundation/umi-serializers-numbers/-/umi-serializers-numbers-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-serializers-core": "^1.4.1" } }],
|
|
92
|
+
|
|
93
|
+
"@metaplex-foundation/umi-transaction-factory-web3js": ["@metaplex-foundation/umi-transaction-factory-web3js@https://registry.npmjs.org/@metaplex-foundation/umi-transaction-factory-web3js/-/umi-transaction-factory-web3js-1.4.1.tgz", { "dependencies": { "@metaplex-foundation/umi-web3js-adapters": "^1.4.1" } }],
|
|
94
|
+
|
|
95
|
+
"@metaplex-foundation/umi-web3js-adapters": ["@metaplex-foundation/umi-web3js-adapters@https://registry.npmjs.org/@metaplex-foundation/umi-web3js-adapters/-/umi-web3js-adapters-1.4.1.tgz", { "dependencies": { "buffer": "^6.0.3" } }],
|
|
96
|
+
|
|
97
|
+
"@noble/ciphers": ["@noble/ciphers@https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz", {}],
|
|
98
|
+
|
|
99
|
+
"@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-2.0.1.tgz", { "dependencies": { "@noble/hashes": "2.0.1" } }],
|
|
100
|
+
|
|
101
|
+
"@noble/hashes": ["@noble/hashes@https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", {}],
|
|
102
|
+
|
|
103
|
+
"@scure/base": ["@scure/base@https://registry.npmjs.org/@scure/base/-/base-2.0.0.tgz", {}],
|
|
104
|
+
|
|
105
|
+
"@scure/bip32": ["@scure/bip32@https://registry.npmjs.org/@scure/bip32/-/bip32-2.0.1.tgz", { "dependencies": { "@noble/curves": "2.0.1", "@noble/hashes": "2.0.1", "@scure/base": "2.0.0" } }],
|
|
106
|
+
|
|
107
|
+
"@scure/bip39": ["@scure/bip39@https://registry.npmjs.org/@scure/bip39/-/bip39-2.0.1.tgz", { "dependencies": { "@noble/hashes": "2.0.1", "@scure/base": "2.0.0" } }],
|
|
108
|
+
|
|
109
|
+
"@simplewebauthn/browser": ["@simplewebauthn/browser@https://registry.npmjs.org/@simplewebauthn/browser/-/browser-9.0.1.tgz", { "dependencies": { "@simplewebauthn/types": "^9.0.1" } }],
|
|
110
|
+
|
|
111
|
+
"@simplewebauthn/types": ["@simplewebauthn/types@https://registry.npmjs.org/@simplewebauthn/types/-/types-12.0.0.tgz", {}],
|
|
112
|
+
|
|
113
|
+
"@simplewebauthn/typescript-types": ["@simplewebauthn/typescript-types@https://registry.npmjs.org/@simplewebauthn/typescript-types/-/typescript-types-8.3.4.tgz", {}],
|
|
114
|
+
|
|
115
|
+
"@solana/buffer-layout": ["@solana/buffer-layout@https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz", { "dependencies": { "buffer": "~6.0.3" } }],
|
|
116
|
+
|
|
117
|
+
"@solana/buffer-layout-utils": ["@solana/buffer-layout-utils@https://registry.npmjs.org/@solana/buffer-layout-utils/-/buffer-layout-utils-0.2.0.tgz", { "dependencies": { "@solana/buffer-layout": "^4.0.0", "@solana/web3.js": "^1.32.0", "bigint-buffer": "^1.1.5", "bignumber.js": "^9.0.1" } }],
|
|
118
|
+
|
|
119
|
+
"@solana/codecs": ["@solana/codecs@https://registry.npmjs.org/@solana/codecs/-/codecs-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/codecs-data-structures": "2.0.0-rc.1", "@solana/codecs-numbers": "2.0.0-rc.1", "@solana/codecs-strings": "2.0.0-rc.1", "@solana/options": "2.0.0-rc.1" } }],
|
|
120
|
+
|
|
121
|
+
"@solana/codecs-core": ["@solana/codecs-core@https://registry.npmjs.org/@solana/codecs-core/-/codecs-core-2.3.0.tgz", { "dependencies": { "@solana/errors": "2.3.0" } }],
|
|
122
|
+
|
|
123
|
+
"@solana/codecs-data-structures": ["@solana/codecs-data-structures@https://registry.npmjs.org/@solana/codecs-data-structures/-/codecs-data-structures-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/codecs-numbers": "2.0.0-rc.1", "@solana/errors": "2.0.0-rc.1" } }],
|
|
124
|
+
|
|
125
|
+
"@solana/codecs-numbers": ["@solana/codecs-numbers@https://registry.npmjs.org/@solana/codecs-numbers/-/codecs-numbers-2.3.0.tgz", { "dependencies": { "@solana/codecs-core": "2.3.0", "@solana/errors": "2.3.0" } }],
|
|
126
|
+
|
|
127
|
+
"@solana/codecs-strings": ["@solana/codecs-strings@https://registry.npmjs.org/@solana/codecs-strings/-/codecs-strings-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/codecs-numbers": "2.0.0-rc.1", "@solana/errors": "2.0.0-rc.1" } }],
|
|
128
|
+
|
|
129
|
+
"@solana/errors": ["@solana/errors@https://registry.npmjs.org/@solana/errors/-/errors-2.3.0.tgz", { "dependencies": { "chalk": "^5.4.1", "commander": "^14.0.0" } }],
|
|
130
|
+
|
|
131
|
+
"@solana/options": ["@solana/options@https://registry.npmjs.org/@solana/options/-/options-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/codecs-data-structures": "2.0.0-rc.1", "@solana/codecs-numbers": "2.0.0-rc.1", "@solana/codecs-strings": "2.0.0-rc.1", "@solana/errors": "2.0.0-rc.1" } }],
|
|
132
|
+
|
|
133
|
+
"@solana/spl-token": ["@solana/spl-token@https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.4.13.tgz", { "dependencies": { "@solana/buffer-layout": "^4.0.0", "@solana/buffer-layout-utils": "^0.2.0", "@solana/spl-token-group": "^0.0.7", "@solana/spl-token-metadata": "^0.1.6", "buffer": "^6.0.3" } }],
|
|
134
|
+
|
|
135
|
+
"@solana/spl-token-group": ["@solana/spl-token-group@https://registry.npmjs.org/@solana/spl-token-group/-/spl-token-group-0.0.7.tgz", { "dependencies": { "@solana/codecs": "2.0.0-rc.1" } }],
|
|
136
|
+
|
|
137
|
+
"@solana/spl-token-metadata": ["@solana/spl-token-metadata@https://registry.npmjs.org/@solana/spl-token-metadata/-/spl-token-metadata-0.1.6.tgz", { "dependencies": { "@solana/codecs": "2.0.0-rc.1" } }],
|
|
138
|
+
|
|
139
|
+
"@solana/web3.js": ["@solana/web3.js@https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.98.4.tgz", { "dependencies": { "@babel/runtime": "^7.25.0", "@noble/curves": "^1.4.2", "@noble/hashes": "^1.4.0", "@solana/buffer-layout": "^4.0.1", "@solana/codecs-numbers": "^2.1.0", "agentkeepalive": "^4.5.0", "bn.js": "^5.2.1", "borsh": "^0.7.0", "bs58": "^4.0.1", "buffer": "6.0.3", "fast-stable-stringify": "^1.0.0", "jayson": "^4.1.1", "node-fetch": "^2.7.0", "rpc-websockets": "^9.0.2", "superstruct": "^2.0.2" } }],
|
|
140
|
+
|
|
141
|
+
"@swc/helpers": ["@swc/helpers@https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz", { "dependencies": { "tslib": "^2.8.0" } }],
|
|
142
|
+
|
|
143
|
+
"@tsconfig/node10": ["@tsconfig/node10@https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", {}],
|
|
144
|
+
|
|
145
|
+
"@tsconfig/node12": ["@tsconfig/node12@https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", {}],
|
|
146
|
+
|
|
147
|
+
"@tsconfig/node14": ["@tsconfig/node14@https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", {}],
|
|
148
|
+
|
|
149
|
+
"@tsconfig/node16": ["@tsconfig/node16@https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", {}],
|
|
150
|
+
|
|
151
|
+
"@types/bn.js": ["@types/bn.js@https://registry.npmjs.org/@types/bn.js/-/bn.js-5.2.0.tgz", { "dependencies": { "@types/node": "*" } }],
|
|
152
|
+
|
|
153
|
+
"@types/connect": ["@types/connect@https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", { "dependencies": { "@types/node": "*" } }],
|
|
154
|
+
|
|
155
|
+
"@types/crypto-js": ["@types/crypto-js@https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.2.2.tgz", {}],
|
|
156
|
+
|
|
157
|
+
"@types/node": ["@types/node@https://registry.npmjs.org/@types/node/-/node-24.2.1.tgz", { "dependencies": { "undici-types": "~7.10.0" } }],
|
|
158
|
+
|
|
159
|
+
"@types/promise-retry": ["@types/promise-retry@https://registry.npmjs.org/@types/promise-retry/-/promise-retry-1.1.6.tgz", { "dependencies": { "@types/retry": "*" } }],
|
|
160
|
+
|
|
161
|
+
"@types/retry": ["@types/retry@https://registry.npmjs.org/@types/retry/-/retry-0.12.5.tgz", {}],
|
|
162
|
+
|
|
163
|
+
"@types/strip-bom": ["@types/strip-bom@https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz", {}],
|
|
164
|
+
|
|
165
|
+
"@types/strip-json-comments": ["@types/strip-json-comments@https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz", {}],
|
|
166
|
+
|
|
167
|
+
"@types/uuid": ["@types/uuid@https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz", {}],
|
|
168
|
+
|
|
169
|
+
"@types/ws": ["@types/ws@https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz", { "dependencies": { "@types/node": "*" } }],
|
|
170
|
+
|
|
171
|
+
"@zerodev/hooks": ["@zerodev/hooks@https://registry.npmjs.org/@zerodev/hooks/-/hooks-5.3.4.tgz", {}],
|
|
172
|
+
|
|
173
|
+
"@zerodev/permissions": ["@zerodev/permissions@https://registry.npmjs.org/@zerodev/permissions/-/permissions-5.6.3.tgz", { "dependencies": { "@simplewebauthn/browser": "^9.0.1", "merkletreejs": "^0.3.11" } }],
|
|
174
|
+
|
|
175
|
+
"@zerodev/sdk": ["@zerodev/sdk@https://registry.npmjs.org/@zerodev/sdk/-/sdk-5.5.7.tgz", { "dependencies": { "semver": "^7.6.0" } }],
|
|
176
|
+
|
|
177
|
+
"@zerodev/webauthn-key": ["@zerodev/webauthn-key@https://registry.npmjs.org/@zerodev/webauthn-key/-/webauthn-key-5.5.0.tgz", { "dependencies": { "@noble/curves": "^1.3.0", "@simplewebauthn/browser": "^8.3.4", "@simplewebauthn/types": "^12.0.0" } }],
|
|
178
|
+
|
|
179
|
+
"abitype": ["abitype@https://registry.npmjs.org/abitype/-/abitype-1.2.3.tgz", {}],
|
|
180
|
+
|
|
181
|
+
"acorn": ["acorn@https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", {}],
|
|
182
|
+
|
|
183
|
+
"acorn-walk": ["acorn-walk@https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", { "dependencies": { "acorn": "^8.11.0" } }],
|
|
184
|
+
|
|
185
|
+
"aes-js": ["aes-js@https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz", {}],
|
|
186
|
+
|
|
187
|
+
"agentkeepalive": ["agentkeepalive@https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.6.0.tgz", { "dependencies": { "humanize-ms": "^1.2.1" } }],
|
|
188
|
+
|
|
189
|
+
"anymatch": ["anymatch@https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }],
|
|
190
|
+
|
|
191
|
+
"arg": ["arg@https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", {}],
|
|
192
|
+
|
|
193
|
+
"balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}],
|
|
194
|
+
|
|
195
|
+
"base-x": ["base-x@https://registry.npmjs.org/base-x/-/base-x-5.0.1.tgz", {}],
|
|
196
|
+
|
|
197
|
+
"base64-js": ["base64-js@https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", {}],
|
|
198
|
+
|
|
199
|
+
"bigint-buffer": ["bigint-buffer@https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz", { "dependencies": { "bindings": "^1.3.0" } }],
|
|
200
|
+
|
|
201
|
+
"bignumber.js": ["bignumber.js@https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.3.1.tgz", {}],
|
|
202
|
+
|
|
203
|
+
"binary-extensions": ["binary-extensions@https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", {}],
|
|
204
|
+
|
|
205
|
+
"bindings": ["bindings@https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", { "dependencies": { "file-uri-to-path": "1.0.0" } }],
|
|
206
|
+
|
|
207
|
+
"bn.js": ["bn.js@https://registry.npmjs.org/bn.js/-/bn.js-5.2.2.tgz", {}],
|
|
208
|
+
|
|
209
|
+
"borsh": ["borsh@https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz", { "dependencies": { "bn.js": "^5.2.0", "bs58": "^4.0.0", "text-encoding-utf-8": "^1.0.2" } }],
|
|
210
|
+
|
|
211
|
+
"brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }],
|
|
212
|
+
|
|
213
|
+
"braces": ["braces@https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", { "dependencies": { "fill-range": "^7.1.1" } }],
|
|
214
|
+
|
|
215
|
+
"bs58": ["bs58@https://registry.npmjs.org/bs58/-/bs58-6.0.0.tgz", { "dependencies": { "base-x": "^5.0.0" } }],
|
|
216
|
+
|
|
217
|
+
"buffer": ["buffer@https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" } }],
|
|
218
|
+
|
|
219
|
+
"buffer-from": ["buffer-from@https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", {}],
|
|
220
|
+
|
|
221
|
+
"buffer-reverse": ["buffer-reverse@https://registry.npmjs.org/buffer-reverse/-/buffer-reverse-1.0.1.tgz", {}],
|
|
222
|
+
|
|
223
|
+
"bufferutil": ["bufferutil@https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.9.tgz", { "dependencies": { "node-gyp-build": "^4.3.0" } }],
|
|
224
|
+
|
|
225
|
+
"chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", {}],
|
|
226
|
+
|
|
227
|
+
"chokidar": ["chokidar@https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }],
|
|
228
|
+
|
|
229
|
+
"commander": ["commander@https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", {}],
|
|
230
|
+
|
|
231
|
+
"concat-map": ["concat-map@https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", {}],
|
|
232
|
+
|
|
233
|
+
"create-require": ["create-require@https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", {}],
|
|
234
|
+
|
|
235
|
+
"crypto-js": ["crypto-js@https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", {}],
|
|
236
|
+
|
|
237
|
+
"debonk-evm-sever-sdk": ["debonk-evm-sever-sdk@https://registry.npmjs.org/debonk-evm-sever-sdk/-/debonk-evm-sever-sdk-1.4.0.tgz", { "dependencies": { "ethers": "^6.15.0", "net": "^1.0.2", "react": "^19.1.0", "tls": "^0.0.1" } }],
|
|
238
|
+
|
|
239
|
+
"delay": ["delay@https://registry.npmjs.org/delay/-/delay-5.0.0.tgz", {}],
|
|
240
|
+
|
|
241
|
+
"diff": ["diff@https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", {}],
|
|
242
|
+
|
|
243
|
+
"dynamic-dedupe": ["dynamic-dedupe@https://registry.npmjs.org/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz", { "dependencies": { "xtend": "^4.0.0" } }],
|
|
244
|
+
|
|
245
|
+
"err-code": ["err-code@https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", {}],
|
|
246
|
+
|
|
247
|
+
"es6-promise": ["es6-promise@https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", {}],
|
|
248
|
+
|
|
249
|
+
"es6-promisify": ["es6-promisify@https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", { "dependencies": { "es6-promise": "^4.0.3" } }],
|
|
250
|
+
|
|
251
|
+
"ethereum-bloom-filters": ["ethereum-bloom-filters@https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.2.0.tgz", { "dependencies": { "@noble/hashes": "^1.4.0" } }],
|
|
252
|
+
|
|
253
|
+
"ethereum-cryptography": ["ethereum-cryptography@https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", { "dependencies": { "@noble/curves": "1.4.2", "@noble/hashes": "1.4.0", "@scure/bip32": "1.4.0", "@scure/bip39": "1.3.0" } }],
|
|
254
|
+
|
|
255
|
+
"ethers": ["ethers@https://registry.npmjs.org/ethers/-/ethers-6.15.0.tgz", { "dependencies": { "@adraffy/ens-normalize": "1.10.1", "@noble/curves": "1.2.0", "@noble/hashes": "1.3.2", "@types/node": "22.7.5", "aes-js": "4.0.0-beta.5", "tslib": "2.7.0", "ws": "8.17.1" } }],
|
|
256
|
+
|
|
257
|
+
"ethjs-unit": ["ethjs-unit@https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", { "dependencies": { "bn.js": "4.11.6", "number-to-bn": "1.7.0" } }],
|
|
258
|
+
|
|
259
|
+
"eventemitter3": ["eventemitter3@https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", {}],
|
|
260
|
+
|
|
261
|
+
"eyes": ["eyes@https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", {}],
|
|
262
|
+
|
|
263
|
+
"fast-stable-stringify": ["fast-stable-stringify@https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz", {}],
|
|
264
|
+
|
|
265
|
+
"file-uri-to-path": ["file-uri-to-path@https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", {}],
|
|
266
|
+
|
|
267
|
+
"fill-range": ["fill-range@https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", { "dependencies": { "to-regex-range": "^5.0.1" } }],
|
|
268
|
+
|
|
269
|
+
"fs.realpath": ["fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", {}],
|
|
270
|
+
|
|
271
|
+
"fsevents": ["fsevents@https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", {}],
|
|
272
|
+
|
|
273
|
+
"function-bind": ["function-bind@https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", {}],
|
|
274
|
+
|
|
275
|
+
"glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }],
|
|
276
|
+
|
|
277
|
+
"glob-parent": ["glob-parent@https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", { "dependencies": { "is-glob": "^4.0.1" } }],
|
|
278
|
+
|
|
279
|
+
"hasown": ["hasown@https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", { "dependencies": { "function-bind": "^1.1.2" } }],
|
|
280
|
+
|
|
281
|
+
"humanize-ms": ["humanize-ms@https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", { "dependencies": { "ms": "^2.0.0" } }],
|
|
282
|
+
|
|
283
|
+
"ieee754": ["ieee754@https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", {}],
|
|
284
|
+
|
|
285
|
+
"inflight": ["inflight@https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", { "dependencies": { "once": "^1.3.0", "wrappy": "1" } }],
|
|
286
|
+
|
|
287
|
+
"inherits": ["inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", {}],
|
|
288
|
+
|
|
289
|
+
"is-binary-path": ["is-binary-path@https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", { "dependencies": { "binary-extensions": "^2.0.0" } }],
|
|
290
|
+
|
|
291
|
+
"is-core-module": ["is-core-module@https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", { "dependencies": { "hasown": "^2.0.2" } }],
|
|
292
|
+
|
|
293
|
+
"is-extglob": ["is-extglob@https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", {}],
|
|
294
|
+
|
|
295
|
+
"is-glob": ["is-glob@https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", { "dependencies": { "is-extglob": "^2.1.1" } }],
|
|
296
|
+
|
|
297
|
+
"is-hex-prefixed": ["is-hex-prefixed@https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", {}],
|
|
298
|
+
|
|
299
|
+
"is-number": ["is-number@https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", {}],
|
|
300
|
+
|
|
301
|
+
"isomorphic-ws": ["isomorphic-ws@https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", {}],
|
|
302
|
+
|
|
303
|
+
"isows": ["isows@https://registry.npmjs.org/isows/-/isows-1.0.7.tgz", {}],
|
|
304
|
+
|
|
305
|
+
"jayson": ["jayson@https://registry.npmjs.org/jayson/-/jayson-4.2.0.tgz", { "dependencies": { "@types/connect": "^3.4.33", "@types/node": "^12.12.54", "@types/ws": "^7.4.4", "commander": "^2.20.3", "delay": "^5.0.0", "es6-promisify": "^5.0.0", "eyes": "^0.1.8", "isomorphic-ws": "^4.0.1", "json-stringify-safe": "^5.0.1", "stream-json": "^1.9.1", "uuid": "^8.3.2", "ws": "^7.5.10" } }],
|
|
306
|
+
|
|
307
|
+
"json-stringify-safe": ["json-stringify-safe@https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", {}],
|
|
308
|
+
|
|
309
|
+
"make-error": ["make-error@https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", {}],
|
|
310
|
+
|
|
311
|
+
"merkletreejs": ["merkletreejs@https://registry.npmjs.org/merkletreejs/-/merkletreejs-0.3.11.tgz", { "dependencies": { "bignumber.js": "^9.0.1", "buffer-reverse": "^1.0.1", "crypto-js": "^4.2.0", "treeify": "^1.1.0", "web3-utils": "^1.3.4" } }],
|
|
312
|
+
|
|
313
|
+
"micro-ftch": ["micro-ftch@https://registry.npmjs.org/micro-ftch/-/micro-ftch-0.3.1.tgz", {}],
|
|
314
|
+
|
|
315
|
+
"minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", { "dependencies": { "brace-expansion": "^1.1.7" } }],
|
|
316
|
+
|
|
317
|
+
"minimist": ["minimist@https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", {}],
|
|
318
|
+
|
|
319
|
+
"mkdirp": ["mkdirp@https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", {}],
|
|
320
|
+
|
|
321
|
+
"ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}],
|
|
322
|
+
|
|
323
|
+
"net": ["net@https://registry.npmjs.org/net/-/net-1.0.2.tgz", {}],
|
|
324
|
+
|
|
325
|
+
"node-fetch": ["node-fetch@https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", { "dependencies": { "whatwg-url": "^5.0.0" } }],
|
|
326
|
+
|
|
327
|
+
"node-gyp-build": ["node-gyp-build@https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", {}],
|
|
328
|
+
|
|
329
|
+
"normalize-path": ["normalize-path@https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", {}],
|
|
330
|
+
|
|
331
|
+
"number-to-bn": ["number-to-bn@https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", { "dependencies": { "bn.js": "4.11.6", "strip-hex-prefix": "1.0.0" } }],
|
|
332
|
+
|
|
333
|
+
"once": ["once@https://registry.npmjs.org/once/-/once-1.4.0.tgz", { "dependencies": { "wrappy": "1" } }],
|
|
334
|
+
|
|
335
|
+
"ox": ["ox@https://registry.npmjs.org/ox/-/ox-0.11.1.tgz", { "dependencies": { "@adraffy/ens-normalize": "^1.11.0", "@noble/ciphers": "^1.3.0", "@noble/curves": "1.9.1", "@noble/hashes": "^1.8.0", "@scure/bip32": "^1.7.0", "@scure/bip39": "^1.6.0", "abitype": "^1.2.3", "eventemitter3": "5.0.1" } }],
|
|
336
|
+
|
|
337
|
+
"path-is-absolute": ["path-is-absolute@https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", {}],
|
|
338
|
+
|
|
339
|
+
"path-parse": ["path-parse@https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", {}],
|
|
340
|
+
|
|
341
|
+
"permissionless": ["permissionless@https://registry.npmjs.org/permissionless/-/permissionless-0.3.2.tgz", {}],
|
|
342
|
+
|
|
343
|
+
"picomatch": ["picomatch@https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", {}],
|
|
344
|
+
|
|
345
|
+
"promise-retry": ["promise-retry@https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", { "dependencies": { "err-code": "^2.0.2", "retry": "^0.12.0" } }],
|
|
346
|
+
|
|
347
|
+
"randombytes": ["randombytes@https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", { "dependencies": { "safe-buffer": "^5.1.0" } }],
|
|
348
|
+
|
|
349
|
+
"react": ["react@https://registry.npmjs.org/react/-/react-19.1.1.tgz", {}],
|
|
350
|
+
|
|
351
|
+
"readdirp": ["readdirp@https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", { "dependencies": { "picomatch": "^2.2.1" } }],
|
|
352
|
+
|
|
353
|
+
"resolve": ["resolve@https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", { "dependencies": { "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } }],
|
|
354
|
+
|
|
355
|
+
"retry": ["retry@https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", {}],
|
|
356
|
+
|
|
357
|
+
"rimraf": ["rimraf@https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", { "dependencies": { "glob": "^7.1.3" } }],
|
|
358
|
+
|
|
359
|
+
"rpc-websockets": ["rpc-websockets@https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-9.1.3.tgz", { "dependencies": { "@swc/helpers": "^0.5.11", "@types/uuid": "^8.3.4", "@types/ws": "^8.2.2", "buffer": "^6.0.3", "eventemitter3": "^5.0.1", "uuid": "^8.3.2", "ws": "^8.5.0" }, "optionalDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" } }],
|
|
360
|
+
|
|
361
|
+
"safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}],
|
|
362
|
+
|
|
363
|
+
"semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", {}],
|
|
364
|
+
|
|
365
|
+
"source-map": ["source-map@https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", {}],
|
|
366
|
+
|
|
367
|
+
"source-map-support": ["source-map-support@https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", { "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }],
|
|
368
|
+
|
|
369
|
+
"stream-chain": ["stream-chain@https://registry.npmjs.org/stream-chain/-/stream-chain-2.2.5.tgz", {}],
|
|
370
|
+
|
|
371
|
+
"stream-json": ["stream-json@https://registry.npmjs.org/stream-json/-/stream-json-1.9.1.tgz", { "dependencies": { "stream-chain": "^2.2.5" } }],
|
|
372
|
+
|
|
373
|
+
"strip-bom": ["strip-bom@https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", {}],
|
|
374
|
+
|
|
375
|
+
"strip-hex-prefix": ["strip-hex-prefix@https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", { "dependencies": { "is-hex-prefixed": "1.0.0" } }],
|
|
376
|
+
|
|
377
|
+
"strip-json-comments": ["strip-json-comments@https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", {}],
|
|
378
|
+
|
|
379
|
+
"superstruct": ["superstruct@https://registry.npmjs.org/superstruct/-/superstruct-2.0.2.tgz", {}],
|
|
380
|
+
|
|
381
|
+
"supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", {}],
|
|
382
|
+
|
|
383
|
+
"text-encoding-utf-8": ["text-encoding-utf-8@https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", {}],
|
|
384
|
+
|
|
385
|
+
"tls": ["tls@https://registry.npmjs.org/tls/-/tls-0.0.1.tgz", {}],
|
|
386
|
+
|
|
387
|
+
"to-regex-range": ["to-regex-range@https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", { "dependencies": { "is-number": "^7.0.0" } }],
|
|
388
|
+
|
|
389
|
+
"tr46": ["tr46@https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", {}],
|
|
390
|
+
|
|
391
|
+
"tree-kill": ["tree-kill@https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", {}],
|
|
392
|
+
|
|
393
|
+
"treeify": ["treeify@https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz", {}],
|
|
394
|
+
|
|
395
|
+
"ts-node": ["ts-node@https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", { "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" } }],
|
|
396
|
+
|
|
397
|
+
"ts-node-dev": ["ts-node-dev@https://registry.npmjs.org/ts-node-dev/-/ts-node-dev-2.0.0.tgz", { "dependencies": { "chokidar": "^3.5.1", "dynamic-dedupe": "^0.3.0", "minimist": "^1.2.6", "mkdirp": "^1.0.4", "resolve": "^1.0.0", "rimraf": "^2.6.1", "source-map-support": "^0.5.12", "tree-kill": "^1.2.2", "ts-node": "^10.4.0", "tsconfig": "^7.0.0" } }],
|
|
398
|
+
|
|
399
|
+
"tsconfig": ["tsconfig@https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz", { "dependencies": { "@types/strip-bom": "^3.0.0", "@types/strip-json-comments": "0.0.30", "strip-bom": "^3.0.0", "strip-json-comments": "^2.0.0" } }],
|
|
400
|
+
|
|
401
|
+
"tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", {}],
|
|
402
|
+
|
|
403
|
+
"tweetnacl": ["tweetnacl@https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", {}],
|
|
404
|
+
|
|
405
|
+
"typescript": ["typescript@https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", {}],
|
|
406
|
+
|
|
407
|
+
"undici-types": ["undici-types@https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz", {}],
|
|
408
|
+
|
|
409
|
+
"utf-8-validate": ["utf-8-validate@https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz", { "dependencies": { "node-gyp-build": "^4.3.0" } }],
|
|
410
|
+
|
|
411
|
+
"utf8": ["utf8@https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", {}],
|
|
412
|
+
|
|
413
|
+
"uuid": ["uuid@https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", {}],
|
|
414
|
+
|
|
415
|
+
"v8-compile-cache-lib": ["v8-compile-cache-lib@https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", {}],
|
|
416
|
+
|
|
417
|
+
"viem": ["viem@https://registry.npmjs.org/viem/-/viem-2.43.4.tgz", { "dependencies": { "@noble/curves": "1.9.1", "@noble/hashes": "1.8.0", "@scure/bip32": "1.7.0", "@scure/bip39": "1.6.0", "abitype": "1.2.3", "isows": "1.0.7", "ox": "0.11.1", "ws": "8.18.3" } }],
|
|
418
|
+
|
|
419
|
+
"web3-utils": ["web3-utils@https://registry.npmjs.org/web3-utils/-/web3-utils-1.10.4.tgz", { "dependencies": { "@ethereumjs/util": "^8.1.0", "bn.js": "^5.2.1", "ethereum-bloom-filters": "^1.0.6", "ethereum-cryptography": "^2.1.2", "ethjs-unit": "0.1.6", "number-to-bn": "1.7.0", "randombytes": "^2.1.0", "utf8": "3.0.0" } }],
|
|
420
|
+
|
|
421
|
+
"webidl-conversions": ["webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", {}],
|
|
422
|
+
|
|
423
|
+
"whatwg-url": ["whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }],
|
|
424
|
+
|
|
425
|
+
"wrappy": ["wrappy@https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", {}],
|
|
426
|
+
|
|
427
|
+
"ws": ["ws@https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", {}],
|
|
428
|
+
|
|
429
|
+
"xtend": ["xtend@https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", {}],
|
|
430
|
+
|
|
431
|
+
"yaml": ["yaml@https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", {}],
|
|
432
|
+
|
|
433
|
+
"yn": ["yn@https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", {}],
|
|
434
|
+
|
|
435
|
+
"@metaplex-foundation/umi-eddsa-web3js/@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-1.9.6.tgz", { "dependencies": { "@noble/hashes": "1.8.0" } }],
|
|
436
|
+
|
|
437
|
+
"@noble/curves/@noble/hashes": ["@noble/hashes@https://registry.npmjs.org/@noble/hashes/-/hashes-2.0.1.tgz", {}],
|
|
438
|
+
|
|
439
|
+
"@scure/bip32/@noble/hashes": ["@noble/hashes@https://registry.npmjs.org/@noble/hashes/-/hashes-2.0.1.tgz", {}],
|
|
440
|
+
|
|
441
|
+
"@scure/bip39/@noble/hashes": ["@noble/hashes@https://registry.npmjs.org/@noble/hashes/-/hashes-2.0.1.tgz", {}],
|
|
442
|
+
|
|
443
|
+
"@simplewebauthn/browser/@simplewebauthn/types": ["@simplewebauthn/types@https://registry.npmjs.org/@simplewebauthn/types/-/types-9.0.1.tgz", {}],
|
|
444
|
+
|
|
445
|
+
"@solana/codecs/@solana/codecs-core": ["@solana/codecs-core@https://registry.npmjs.org/@solana/codecs-core/-/codecs-core-2.0.0-rc.1.tgz", { "dependencies": { "@solana/errors": "2.0.0-rc.1" } }],
|
|
446
|
+
|
|
447
|
+
"@solana/codecs/@solana/codecs-numbers": ["@solana/codecs-numbers@https://registry.npmjs.org/@solana/codecs-numbers/-/codecs-numbers-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/errors": "2.0.0-rc.1" } }],
|
|
448
|
+
|
|
449
|
+
"@solana/codecs-data-structures/@solana/codecs-core": ["@solana/codecs-core@https://registry.npmjs.org/@solana/codecs-core/-/codecs-core-2.0.0-rc.1.tgz", { "dependencies": { "@solana/errors": "2.0.0-rc.1" } }],
|
|
450
|
+
|
|
451
|
+
"@solana/codecs-data-structures/@solana/codecs-numbers": ["@solana/codecs-numbers@https://registry.npmjs.org/@solana/codecs-numbers/-/codecs-numbers-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/errors": "2.0.0-rc.1" } }],
|
|
452
|
+
|
|
453
|
+
"@solana/codecs-data-structures/@solana/errors": ["@solana/errors@https://registry.npmjs.org/@solana/errors/-/errors-2.0.0-rc.1.tgz", { "dependencies": { "chalk": "^5.3.0", "commander": "^12.1.0" } }],
|
|
454
|
+
|
|
455
|
+
"@solana/codecs-strings/@solana/codecs-core": ["@solana/codecs-core@https://registry.npmjs.org/@solana/codecs-core/-/codecs-core-2.0.0-rc.1.tgz", { "dependencies": { "@solana/errors": "2.0.0-rc.1" } }],
|
|
456
|
+
|
|
457
|
+
"@solana/codecs-strings/@solana/codecs-numbers": ["@solana/codecs-numbers@https://registry.npmjs.org/@solana/codecs-numbers/-/codecs-numbers-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/errors": "2.0.0-rc.1" } }],
|
|
458
|
+
|
|
459
|
+
"@solana/codecs-strings/@solana/errors": ["@solana/errors@https://registry.npmjs.org/@solana/errors/-/errors-2.0.0-rc.1.tgz", { "dependencies": { "chalk": "^5.3.0", "commander": "^12.1.0" } }],
|
|
460
|
+
|
|
461
|
+
"@solana/errors/commander": ["commander@https://registry.npmjs.org/commander/-/commander-14.0.0.tgz", {}],
|
|
462
|
+
|
|
463
|
+
"@solana/options/@solana/codecs-core": ["@solana/codecs-core@https://registry.npmjs.org/@solana/codecs-core/-/codecs-core-2.0.0-rc.1.tgz", { "dependencies": { "@solana/errors": "2.0.0-rc.1" } }],
|
|
464
|
+
|
|
465
|
+
"@solana/options/@solana/codecs-numbers": ["@solana/codecs-numbers@https://registry.npmjs.org/@solana/codecs-numbers/-/codecs-numbers-2.0.0-rc.1.tgz", { "dependencies": { "@solana/codecs-core": "2.0.0-rc.1", "@solana/errors": "2.0.0-rc.1" } }],
|
|
466
|
+
|
|
467
|
+
"@solana/options/@solana/errors": ["@solana/errors@https://registry.npmjs.org/@solana/errors/-/errors-2.0.0-rc.1.tgz", { "dependencies": { "chalk": "^5.3.0", "commander": "^12.1.0" } }],
|
|
468
|
+
|
|
469
|
+
"@solana/web3.js/@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-1.9.6.tgz", { "dependencies": { "@noble/hashes": "1.8.0" } }],
|
|
470
|
+
|
|
471
|
+
"@solana/web3.js/bs58": ["bs58@https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", { "dependencies": { "base-x": "^3.0.2" } }],
|
|
472
|
+
|
|
473
|
+
"@zerodev/webauthn-key/@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-1.9.6.tgz", { "dependencies": { "@noble/hashes": "1.8.0" } }],
|
|
474
|
+
|
|
475
|
+
"@zerodev/webauthn-key/@simplewebauthn/browser": ["@simplewebauthn/browser@https://registry.npmjs.org/@simplewebauthn/browser/-/browser-8.3.7.tgz", { "dependencies": { "@simplewebauthn/typescript-types": "^8.3.4" } }],
|
|
476
|
+
|
|
477
|
+
"borsh/bs58": ["bs58@https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", { "dependencies": { "base-x": "^3.0.2" } }],
|
|
478
|
+
|
|
479
|
+
"ethereum-cryptography/@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz", { "dependencies": { "@noble/hashes": "1.4.0" } }],
|
|
480
|
+
|
|
481
|
+
"ethereum-cryptography/@noble/hashes": ["@noble/hashes@https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", {}],
|
|
482
|
+
|
|
483
|
+
"ethereum-cryptography/@scure/bip32": ["@scure/bip32@https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz", { "dependencies": { "@noble/curves": "~1.4.0", "@noble/hashes": "~1.4.0", "@scure/base": "~1.1.6" } }],
|
|
484
|
+
|
|
485
|
+
"ethereum-cryptography/@scure/bip39": ["@scure/bip39@https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz", { "dependencies": { "@noble/hashes": "~1.4.0", "@scure/base": "~1.1.6" } }],
|
|
486
|
+
|
|
487
|
+
"ethers/@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz", { "dependencies": { "@noble/hashes": "1.3.2" } }],
|
|
488
|
+
|
|
489
|
+
"ethers/@noble/hashes": ["@noble/hashes@https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz", {}],
|
|
490
|
+
|
|
491
|
+
"ethers/@types/node": ["@types/node@https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz", { "dependencies": { "undici-types": "~6.19.2" } }],
|
|
492
|
+
|
|
493
|
+
"ethers/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", {}],
|
|
494
|
+
|
|
495
|
+
"ethjs-unit/bn.js": ["bn.js@https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", {}],
|
|
496
|
+
|
|
497
|
+
"jayson/@types/node": ["@types/node@https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", {}],
|
|
498
|
+
|
|
499
|
+
"jayson/ws": ["ws@https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", {}],
|
|
500
|
+
|
|
501
|
+
"number-to-bn/bn.js": ["bn.js@https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", {}],
|
|
502
|
+
|
|
503
|
+
"ox/@adraffy/ens-normalize": ["@adraffy/ens-normalize@https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.1.tgz", {}],
|
|
504
|
+
|
|
505
|
+
"ox/@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz", { "dependencies": { "@noble/hashes": "1.8.0" } }],
|
|
506
|
+
|
|
507
|
+
"ox/@scure/bip32": ["@scure/bip32@https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz", { "dependencies": { "@noble/curves": "~1.9.0", "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }],
|
|
508
|
+
|
|
509
|
+
"ox/@scure/bip39": ["@scure/bip39@https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz", { "dependencies": { "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }],
|
|
510
|
+
|
|
511
|
+
"rpc-websockets/@types/ws": ["@types/ws@https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", { "dependencies": { "@types/node": "*" } }],
|
|
512
|
+
|
|
513
|
+
"viem/@noble/curves": ["@noble/curves@https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz", { "dependencies": { "@noble/hashes": "1.8.0" } }],
|
|
514
|
+
|
|
515
|
+
"viem/@scure/bip32": ["@scure/bip32@https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz", { "dependencies": { "@noble/curves": "~1.9.0", "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }],
|
|
516
|
+
|
|
517
|
+
"viem/@scure/bip39": ["@scure/bip39@https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz", { "dependencies": { "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }],
|
|
518
|
+
|
|
519
|
+
"viem/ws": ["ws@https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", {}],
|
|
520
|
+
|
|
521
|
+
"@solana/codecs-data-structures/@solana/errors/commander": ["commander@https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", {}],
|
|
522
|
+
|
|
523
|
+
"@solana/codecs-strings/@solana/errors/commander": ["commander@https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", {}],
|
|
524
|
+
|
|
525
|
+
"@solana/codecs/@solana/codecs-core/@solana/errors": ["@solana/errors@https://registry.npmjs.org/@solana/errors/-/errors-2.0.0-rc.1.tgz", { "dependencies": { "chalk": "^5.3.0", "commander": "^12.1.0" } }],
|
|
526
|
+
|
|
527
|
+
"@solana/codecs/@solana/codecs-numbers/@solana/errors": ["@solana/errors@https://registry.npmjs.org/@solana/errors/-/errors-2.0.0-rc.1.tgz", { "dependencies": { "chalk": "^5.3.0", "commander": "^12.1.0" } }],
|
|
528
|
+
|
|
529
|
+
"@solana/options/@solana/errors/commander": ["commander@https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", {}],
|
|
530
|
+
|
|
531
|
+
"@solana/web3.js/bs58/base-x": ["base-x@https://registry.npmjs.org/base-x/-/base-x-3.0.11.tgz", { "dependencies": { "safe-buffer": "^5.0.1" } }],
|
|
532
|
+
|
|
533
|
+
"borsh/bs58/base-x": ["base-x@https://registry.npmjs.org/base-x/-/base-x-3.0.11.tgz", { "dependencies": { "safe-buffer": "^5.0.1" } }],
|
|
534
|
+
|
|
535
|
+
"ethereum-cryptography/@scure/bip32/@scure/base": ["@scure/base@https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", {}],
|
|
536
|
+
|
|
537
|
+
"ethereum-cryptography/@scure/bip39/@scure/base": ["@scure/base@https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", {}],
|
|
538
|
+
|
|
539
|
+
"ethers/@types/node/undici-types": ["undici-types@https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", {}],
|
|
540
|
+
|
|
541
|
+
"ox/@scure/bip32/@scure/base": ["@scure/base@https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz", {}],
|
|
542
|
+
|
|
543
|
+
"ox/@scure/bip39/@scure/base": ["@scure/base@https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz", {}],
|
|
544
|
+
|
|
545
|
+
"viem/@scure/bip32/@scure/base": ["@scure/base@https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz", {}],
|
|
546
|
+
|
|
547
|
+
"viem/@scure/bip39/@scure/base": ["@scure/base@https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz", {}],
|
|
548
|
+
|
|
549
|
+
"@solana/codecs/@solana/codecs-core/@solana/errors/commander": ["commander@https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", {}],
|
|
550
|
+
|
|
551
|
+
"@solana/codecs/@solana/codecs-numbers/@solana/errors/commander": ["commander@https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", {}],
|
|
552
|
+
}
|
|
553
|
+
}
|
package/dist/IChainWallet.js
CHANGED
|
@@ -13,10 +13,6 @@ class ChainWallet {
|
|
|
13
13
|
this.address = this.generateAddress(privateKey);
|
|
14
14
|
this.index = index;
|
|
15
15
|
}
|
|
16
|
-
// abstract transferNFT(contractAddress: AddressType, tokenId: string, to: string): Promise<TransactionResult>;
|
|
17
|
-
// abstract getTokenInfo(tokenAddress: string): Promise<TokenInfo>;
|
|
18
|
-
// abstract getNFTInfo(contractAddress: string, tokenId: string): Promise<NFTInfo>;
|
|
19
|
-
// abstract getTransactionHistory(): Promise<any[]>;
|
|
20
16
|
getAddress() {
|
|
21
17
|
return this.address;
|
|
22
18
|
}
|
|
@@ -25,4 +21,3 @@ class ChainWallet {
|
|
|
25
21
|
}
|
|
26
22
|
}
|
|
27
23
|
exports.ChainWallet = ChainWallet;
|
|
28
|
-
//# sourceMappingURL=IChainWallet.js.map
|