@opendatalabs/vana-sdk 0.1.0-alpha.7ee7635 → 0.1.0-alpha.80df35f
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/dist/__tests__/waitForTransactionEvents.test.d.ts +1 -0
- package/dist/browser.d.ts +4 -2
- package/dist/chains/definitions.cjs +9 -6
- package/dist/chains/definitions.cjs.map +1 -1
- package/dist/chains/definitions.d.ts +9 -11
- package/dist/chains/definitions.js +9 -6
- package/dist/chains/definitions.js.map +1 -1
- package/dist/chains/index.d.ts +5 -2
- package/dist/chains.browser.d.ts +8 -2
- package/dist/chains.d.ts +8 -2
- package/dist/chains.node.d.ts +8 -2
- package/dist/config/addresses.d.ts +8 -45
- package/dist/config/chains.d.ts +9 -13
- package/dist/config/default-services.cjs +60 -0
- package/dist/config/default-services.cjs.map +1 -0
- package/dist/config/default-services.d.ts +46 -0
- package/dist/config/default-services.js +33 -0
- package/dist/config/default-services.js.map +1 -0
- package/dist/config/default-services.test.d.ts +1 -0
- package/dist/config/features.d.ts +1 -3
- package/dist/config/tests/addresses.test.d.ts +1 -0
- package/dist/contracts/contractController.cjs +3 -3
- package/dist/contracts/contractController.cjs.map +1 -1
- package/dist/contracts/contractController.d.ts +11 -49
- package/dist/contracts/contractController.js +4 -7
- package/dist/contracts/contractController.js.map +1 -1
- package/dist/contracts/tests/contractController.test.d.ts +1 -0
- package/dist/controllers/__tests__/schemas-edge-cases.test.d.ts +1 -0
- package/dist/controllers/base.cjs +83 -0
- package/dist/controllers/base.cjs.map +1 -0
- package/dist/controllers/base.d.ts +84 -0
- package/dist/controllers/base.js +59 -0
- package/dist/controllers/base.js.map +1 -0
- package/dist/controllers/data-error-handling.test.d.ts +1 -0
- package/dist/controllers/data.cjs +338 -107
- package/dist/controllers/data.cjs.map +1 -1
- package/dist/controllers/data.d.ts +145 -46
- package/dist/controllers/data.js +338 -107
- package/dist/controllers/data.js.map +1 -1
- package/dist/controllers/permissions.cjs +162 -223
- package/dist/controllers/permissions.cjs.map +1 -1
- package/dist/controllers/permissions.d.ts +24 -78
- package/dist/controllers/permissions.js +162 -223
- package/dist/controllers/permissions.js.map +1 -1
- package/dist/controllers/protocol.cjs +15 -11
- package/dist/controllers/protocol.cjs.map +1 -1
- package/dist/controllers/protocol.d.ts +7 -56
- package/dist/controllers/protocol.js +15 -14
- package/dist/controllers/protocol.js.map +1 -1
- package/dist/controllers/schemas.cjs +29 -36
- package/dist/controllers/schemas.cjs.map +1 -1
- package/dist/controllers/schemas.d.ts +8 -23
- package/dist/controllers/schemas.js +29 -36
- package/dist/controllers/schemas.js.map +1 -1
- package/dist/controllers/server-additional.test.d.ts +1 -0
- package/dist/controllers/server.cjs +15 -10
- package/dist/controllers/server.cjs.map +1 -1
- package/dist/controllers/server.d.ts +7 -20
- package/dist/controllers/server.js +15 -10
- package/dist/controllers/server.js.map +1 -1
- package/dist/core/apiClient.cjs +15 -12
- package/dist/core/apiClient.cjs.map +1 -1
- package/dist/core/apiClient.d.ts +5 -9
- package/dist/core/apiClient.js +19 -19
- package/dist/core/apiClient.js.map +1 -1
- package/dist/core/client.cjs +7 -7
- package/dist/core/client.cjs.map +1 -1
- package/dist/core/client.d.ts +6 -9
- package/dist/core/client.js +7 -7
- package/dist/core/client.js.map +1 -1
- package/dist/core/core.test.d.ts +1 -0
- package/dist/core/generics.cjs +11 -9
- package/dist/core/generics.cjs.map +1 -1
- package/dist/core/generics.d.ts +9 -13
- package/dist/core/generics.js +22 -29
- package/dist/core/generics.js.map +1 -1
- package/dist/core/tests/apiClient.test.d.ts +1 -0
- package/dist/core/tests/client.test.d.ts +1 -0
- package/dist/core/tests/generics.test.d.ts +1 -0
- package/dist/core.cjs +82 -34
- package/dist/core.cjs.map +1 -1
- package/dist/core.d.ts +21 -73
- package/dist/core.js +105 -60
- package/dist/core.js.map +1 -1
- package/dist/crypto/ecies/__tests__/base.test.d.ts +4 -0
- package/dist/crypto/ecies/__tests__/compatibility.test.d.ts +8 -0
- package/dist/crypto/ecies/__tests__/constants.test.d.ts +4 -0
- package/dist/crypto/ecies/__tests__/native-parity.test.d.ts +7 -0
- package/dist/crypto/ecies/__tests__/normalization.test.d.ts +1 -0
- package/dist/crypto/ecies/__tests__/test-vectors.d.ts +2 -4
- package/dist/crypto/ecies/base.cjs +4 -3
- package/dist/crypto/ecies/base.cjs.map +1 -1
- package/dist/crypto/ecies/base.d.ts +2 -5
- package/dist/crypto/ecies/base.js +12 -15
- package/dist/crypto/ecies/base.js.map +1 -1
- package/dist/crypto/ecies/browser.cjs +2 -1
- package/dist/crypto/ecies/browser.cjs.map +1 -1
- package/dist/crypto/ecies/browser.d.ts +2 -7
- package/dist/crypto/ecies/browser.js +2 -1
- package/dist/crypto/ecies/browser.js.map +1 -1
- package/dist/crypto/ecies/constants.d.ts +7 -9
- package/dist/crypto/ecies/index.d.ts +8 -1
- package/dist/crypto/ecies/interface.cjs +4 -5
- package/dist/crypto/ecies/interface.cjs.map +1 -1
- package/dist/crypto/ecies/interface.d.ts +9 -11
- package/dist/crypto/ecies/interface.js +4 -5
- package/dist/crypto/ecies/interface.js.map +1 -1
- package/dist/crypto/ecies/node.cjs +3 -2
- package/dist/crypto/ecies/node.cjs.map +1 -1
- package/dist/crypto/ecies/node.d.ts +2 -7
- package/dist/crypto/ecies/node.js +11 -16
- package/dist/crypto/ecies/node.js.map +1 -1
- package/dist/crypto/ecies/utils.cjs +2 -41
- package/dist/crypto/ecies/utils.cjs.map +1 -1
- package/dist/crypto/ecies/utils.d.ts +3 -40
- package/dist/crypto/ecies/utils.js +1 -35
- package/dist/crypto/ecies/utils.js.map +1 -1
- package/dist/crypto/services/WalletKeyEncryptionService.cjs +2 -2
- package/dist/crypto/services/WalletKeyEncryptionService.cjs.map +1 -1
- package/dist/crypto/services/WalletKeyEncryptionService.d.ts +3 -7
- package/dist/crypto/services/WalletKeyEncryptionService.js +5 -9
- package/dist/crypto/services/WalletKeyEncryptionService.js.map +1 -1
- package/dist/crypto/services/WalletKeyEncryptionService.test.d.ts +1 -0
- package/dist/diagnostics.d.ts +1 -3
- package/dist/diagnostics.test.d.ts +1 -0
- package/dist/errors.cjs +16 -0
- package/dist/errors.cjs.map +1 -1
- package/dist/errors.d.ts +53 -15
- package/dist/errors.js +18 -6
- package/dist/errors.js.map +1 -1
- package/dist/generated/abi/ComputeEngineImplementation.d.ts +2 -3
- package/dist/generated/abi/ComputeInstructionRegistryImplementation.cjs.map +1 -1
- package/dist/generated/abi/ComputeInstructionRegistryImplementation.d.ts +2 -3
- package/dist/generated/abi/ComputeInstructionRegistryImplementation.js.map +1 -1
- package/dist/generated/abi/DATFactoryImplementation.d.ts +2 -3
- package/dist/generated/abi/DATImplementation.d.ts +2 -3
- package/dist/generated/abi/DATPausableImplementation.d.ts +2 -3
- package/dist/generated/abi/DATVotesImplementation.d.ts +2 -3
- package/dist/generated/abi/DLPPerformanceImplementation.d.ts +2 -3
- package/dist/generated/abi/DLPRegistryImplementation.d.ts +2 -3
- package/dist/generated/abi/DLPRegistryTreasuryImplementation.d.ts +2 -3
- package/dist/generated/abi/DLPRewardDeployerImplementation.d.ts +2 -3
- package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.d.ts +2 -3
- package/dist/generated/abi/DLPRewardSwapImplementation.d.ts +2 -3
- package/dist/generated/abi/DLPRootImplementation.d.ts +1 -3
- package/dist/generated/abi/DLPTreasuryImplementation.d.ts +2 -3
- package/dist/generated/abi/DataLiquidityPoolImplementation.d.ts +1 -3
- package/dist/generated/abi/DataPortabilityGranteesImplementation.d.ts +2 -3
- package/dist/generated/abi/DataPortabilityPermissionsImplementation.cjs.map +1 -1
- package/dist/generated/abi/DataPortabilityPermissionsImplementation.d.ts +2 -3
- package/dist/generated/abi/DataPortabilityPermissionsImplementation.js.map +1 -1
- package/dist/generated/abi/DataPortabilityServersImplementation.cjs.map +1 -1
- package/dist/generated/abi/DataPortabilityServersImplementation.d.ts +2 -3
- package/dist/generated/abi/DataPortabilityServersImplementation.js.map +1 -1
- package/dist/generated/abi/DataRefinerRegistryImplementation.d.ts +2 -3
- package/dist/generated/abi/DataRegistryImplementation.d.ts +2 -3
- package/dist/generated/abi/QueryEngineImplementation.d.ts +2 -3
- package/dist/generated/abi/SwapHelperImplementation.d.ts +2 -3
- package/dist/generated/abi/TeePoolDedicatedGpuImplementation.d.ts +2 -3
- package/dist/generated/abi/TeePoolDedicatedStandardImplementation.d.ts +2 -3
- package/dist/generated/abi/TeePoolEphemeralStandardImplementation.d.ts +2 -3
- package/dist/generated/abi/TeePoolImplementation.d.ts +2 -3
- package/dist/generated/abi/TeePoolPersistentGpuImplementation.d.ts +2 -3
- package/dist/generated/abi/TeePoolPersistentStandardImplementation.d.ts +2 -3
- package/dist/generated/abi/TeePoolPhalaImplementation.d.ts +2 -3
- package/dist/generated/abi/VanaEpochImplementation.d.ts +2 -3
- package/dist/generated/abi/VanaPoolEntityImplementation.d.ts +2 -3
- package/dist/generated/abi/VanaPoolStakingImplementation.d.ts +2 -3
- package/dist/generated/abi/VanaPoolTreasuryImplementation.d.ts +2 -3
- package/dist/generated/abi/index.d.ts +37 -39
- package/dist/generated/event-types.d.ts +9 -10
- package/dist/generated/eventRegistry.d.ts +3 -7
- package/dist/generated/server/server-exports.d.ts +19 -21
- package/dist/generated/server/server.cjs.map +1 -1
- package/dist/generated/server/server.d.ts +113 -87
- package/dist/generated/subgraph.d.ts +329 -332
- package/dist/index.browser.d.ts +47 -96
- package/dist/index.browser.js +12 -0
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.node.cjs +9 -0
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.d.ts +181 -87
- package/dist/index.node.js +10 -0
- package/dist/index.node.js.map +1 -1
- package/dist/node.d.ts +4 -2
- package/dist/platform/browser-only.d.ts +5 -8
- package/dist/platform/browser-only.test.d.ts +1 -0
- package/dist/platform/browser-safe.d.ts +6 -9
- package/dist/platform/browser-safe.test.d.ts +1 -0
- package/dist/platform/browser.cjs +7 -6
- package/dist/platform/browser.cjs.map +1 -1
- package/dist/platform/browser.d.ts +3 -6
- package/dist/platform/browser.js +19 -27
- package/dist/platform/browser.js.map +1 -1
- package/dist/platform/browser.test.d.ts +1 -0
- package/dist/platform/index.d.ts +11 -5
- package/dist/platform/interface.d.ts +6 -8
- package/dist/platform/node.d.ts +3 -7
- package/dist/platform/node.js +12 -19
- package/dist/platform/node.js.map +1 -1
- package/dist/platform/ports/openpgp-port.cjs +74 -0
- package/dist/platform/ports/openpgp-port.cjs.map +1 -0
- package/dist/platform/ports/openpgp-port.d.ts +13 -0
- package/dist/platform/ports/openpgp-port.js +59 -0
- package/dist/platform/ports/openpgp-port.js.map +1 -0
- package/dist/platform/ports/pgp-port.cjs +17 -0
- package/dist/platform/ports/pgp-port.cjs.map +1 -0
- package/dist/platform/ports/pgp-port.d.ts +35 -0
- package/dist/platform/ports/pgp-port.js +1 -0
- package/dist/platform/ports/pgp-port.js.map +1 -0
- package/dist/platform/shared/error-utils.d.ts +2 -4
- package/dist/platform/shared/pgp-utils.cjs +2 -2
- package/dist/platform/shared/pgp-utils.cjs.map +1 -1
- package/dist/platform/shared/pgp-utils.d.ts +3 -5
- package/dist/platform/shared/pgp-utils.js +2 -2
- package/dist/platform/shared/pgp-utils.js.map +1 -1
- package/dist/platform/shared/stream-utils.d.ts +1 -3
- package/dist/platform/utils.d.ts +6 -10
- package/dist/platform/utils.test.d.ts +1 -0
- package/dist/platform.browser.d.ts +9 -4
- package/dist/platform.d.ts +11 -5
- package/dist/platform.node.d.ts +10 -5
- package/dist/server/handler.cjs.map +1 -1
- package/dist/server/handler.d.ts +8 -227
- package/dist/server/handler.js.map +1 -1
- package/dist/storage/index.d.ts +56 -10
- package/dist/storage/manager.cjs +2 -2
- package/dist/storage/manager.cjs.map +1 -1
- package/dist/storage/manager.d.ts +2 -5
- package/dist/storage/manager.js +5 -12
- package/dist/storage/manager.js.map +1 -1
- package/dist/storage/providers/callback-storage.cjs +3 -3
- package/dist/storage/providers/callback-storage.cjs.map +1 -1
- package/dist/storage/providers/callback-storage.d.ts +3 -9
- package/dist/storage/providers/callback-storage.js +3 -3
- package/dist/storage/providers/callback-storage.js.map +1 -1
- package/dist/storage/providers/google-drive.cjs +2 -2
- package/dist/storage/providers/google-drive.cjs.map +1 -1
- package/dist/storage/providers/google-drive.d.ts +3 -7
- package/dist/storage/providers/google-drive.js +4 -7
- package/dist/storage/providers/google-drive.js.map +1 -1
- package/dist/storage/providers/google-drive.test.d.ts +1 -0
- package/dist/storage/providers/ipfs.cjs +5 -5
- package/dist/storage/providers/ipfs.cjs.map +1 -1
- package/dist/storage/providers/ipfs.d.ts +3 -6
- package/dist/storage/providers/ipfs.js +7 -10
- package/dist/storage/providers/ipfs.js.map +1 -1
- package/dist/storage/providers/pinata.cjs +6 -6
- package/dist/storage/providers/pinata.cjs.map +1 -1
- package/dist/storage/providers/pinata.d.ts +5 -8
- package/dist/storage/providers/pinata.js +8 -11
- package/dist/storage/providers/pinata.js.map +1 -1
- package/dist/storage/tests/callbackStorage.test.d.ts +1 -0
- package/dist/storage/tests/googleDriveStorage.test.d.ts +1 -0
- package/dist/storage/tests/ipfsStorage.test.d.ts +1 -0
- package/dist/storage/tests/pinataStorage.test.d.ts +1 -0
- package/dist/storage/tests/storageManager.test.d.ts +1 -0
- package/dist/tests/abi.test.d.ts +1 -0
- package/dist/tests/chains-definitions.test.d.ts +1 -0
- package/dist/tests/core-encryption.test.d.ts +1 -0
- package/dist/tests/core-extended.test.d.ts +1 -0
- package/dist/tests/core-generics-coverage.test.d.ts +1 -0
- package/dist/tests/coverage-boost.test.d.ts +1 -0
- package/dist/tests/crypto-cross-platform-compatibility.test.d.ts +1 -0
- package/dist/tests/data-addfile-permissions-schema.test.d.ts +1 -0
- package/dist/tests/data-additional-methods.test.d.ts +1 -0
- package/dist/tests/data-controller-edge-cases.test.d.ts +1 -0
- package/dist/tests/data-ipfs-gateways.test.d.ts +1 -0
- package/dist/tests/data-relayer.test.d.ts +1 -0
- package/dist/tests/data-schema-validation.test.d.ts +1 -0
- package/dist/tests/data-simple-methods.test.d.ts +1 -0
- package/dist/tests/data.test.d.ts +1 -0
- package/dist/tests/demo-integration.test.d.ts +1 -0
- package/dist/tests/demo-trusted-server-integration.test.d.ts +1 -0
- package/dist/tests/download-relayer.test.d.ts +1 -0
- package/dist/tests/dual-mode-permissions.test.d.ts +1 -0
- package/dist/tests/dual-mode-trusted-servers.test.d.ts +1 -0
- package/dist/tests/encryption-correct-implementation.test.d.ts +1 -0
- package/dist/tests/encryption-coverage.test.d.ts +1 -0
- package/dist/tests/encryption-edge-cases.test.d.ts +1 -0
- package/dist/tests/encryption-utils-updated.test.d.ts +1 -0
- package/dist/tests/errors-coverage.test.d.ts +1 -0
- package/dist/tests/errors.test.d.ts +1 -0
- package/dist/tests/factories/mockFactory.d.ts +316 -0
- package/dist/tests/fakes/FakeStorageManager.d.ts +200 -0
- package/dist/tests/fakes/FakeStorageManager.test.d.ts +1 -0
- package/dist/tests/fakes/FakeWaitForTransactionEvents.d.ts +170 -0
- package/dist/tests/fakes/FakeWaitForTransactionEvents.test.d.ts +1 -0
- package/dist/tests/fakes/fake-pgp-port.d.ts +13 -0
- package/dist/tests/grantValidation-edge-cases.test.d.ts +1 -0
- package/dist/tests/grantValidation-unreachable-branch.test.d.ts +1 -0
- package/dist/tests/helper-methods.test.d.ts +1 -0
- package/dist/tests/helpers/platformTestHelpers.d.ts +106 -0
- package/dist/tests/helpers/typedMocks.d.ts +64 -0
- package/dist/tests/index-browser.test.d.ts +1 -0
- package/dist/tests/index-node.test.d.ts +1 -0
- package/dist/tests/index.test.d.ts +1 -0
- package/dist/tests/mocks/platformAdapter.d.ts +12 -0
- package/dist/tests/new-permissions-methods.test.d.ts +1 -0
- package/dist/tests/no-buffer-browser.test.d.ts +1 -0
- package/dist/tests/permissions-grantee.test.d.ts +1 -0
- package/dist/tests/permissions-schema-validation.test.d.ts +1 -0
- package/dist/tests/permissions-server-files.test.d.ts +1 -0
- package/dist/tests/permissions-trust-servers.test.d.ts +1 -0
- package/dist/tests/permissions.test.d.ts +1 -0
- package/dist/tests/personal.test.d.ts +1 -0
- package/dist/tests/platform-browser.test.d.ts +1 -0
- package/dist/tests/platform-crypto-expanded.test.d.ts +1 -0
- package/dist/tests/platform-crypto.test.d.ts +1 -0
- package/dist/tests/platform-index.test.d.ts +1 -0
- package/dist/tests/platform-node.test.d.ts +1 -0
- package/dist/tests/platform-shared-utils.test.d.ts +1 -0
- package/dist/tests/platform-updated.test.d.ts +1 -0
- package/dist/tests/protocol-additional-methods.test.d.ts +1 -0
- package/dist/tests/protocol.test.d.ts +1 -0
- package/dist/tests/read-only-mode.test.d.ts +1 -0
- package/dist/tests/schemas.test.d.ts +1 -0
- package/dist/tests/server-handler.test.d.ts +1 -0
- package/dist/tests/setup.d.ts +7 -0
- package/dist/tests/signatureFormatter.test.d.ts +1 -0
- package/dist/tests/trusted-server-queries.test.d.ts +1 -0
- package/dist/tests/typedDataConverter.test.d.ts +1 -0
- package/dist/tests/types-contracts.test.d.ts +1 -0
- package/dist/tests/types-data.test.d.ts +1 -0
- package/dist/tests/types-external-apis.test.d.ts +1 -0
- package/dist/tests/types-generics.test.d.ts +1 -0
- package/dist/tests/types-permissions.test.d.ts +1 -0
- package/dist/tests/types-upload-params.test.d.ts +1 -0
- package/dist/tests/types.test.d.ts +1 -0
- package/dist/tests/utils-formatters.test.d.ts +1 -0
- package/dist/tests/utils-grantFiles-edge-cases.test.d.ts +1 -0
- package/dist/tests/utils-grantFiles-validation.test.d.ts +1 -0
- package/dist/tests/utils-grantFiles.test.d.ts +1 -0
- package/dist/tests/utils-grantValidation-consolidated.test.d.ts +1 -0
- package/dist/tests/utils-grants.test.d.ts +1 -0
- package/dist/tests/utils-ipfs-additional.test.d.ts +1 -0
- package/dist/tests/utils-ipfs.test.d.ts +4 -0
- package/dist/tests/utils-schemaValidation.test.d.ts +1 -0
- package/dist/tests/vana.test.d.ts +1 -0
- package/dist/tests/wallet-crypto-compatibility.test.d.ts +1 -0
- package/dist/types/blockchain.cjs.map +1 -1
- package/dist/types/blockchain.d.ts +13 -8
- package/dist/types/chains-additional.test.d.ts +1 -0
- package/dist/types/chains.d.ts +6 -9
- package/dist/types/config.cjs +10 -0
- package/dist/types/config.cjs.map +1 -1
- package/dist/types/config.d.ts +161 -54
- package/dist/types/config.js +8 -0
- package/dist/types/config.js.map +1 -1
- package/dist/types/contracts.cjs.map +1 -1
- package/dist/types/contracts.d.ts +8 -11
- package/dist/types/controller-context.cjs.map +1 -1
- package/dist/types/controller-context.d.ts +13 -20
- package/dist/types/data.cjs.map +1 -1
- package/dist/types/data.d.ts +107 -39
- package/dist/types/external-apis.d.ts +10 -12
- package/dist/types/generics.d.ts +35 -38
- package/dist/types/index.cjs +5 -4
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.ts +20 -22
- package/dist/types/index.js +9 -2
- package/dist/types/index.js.map +1 -1
- package/dist/types/operations.cjs +2 -2
- package/dist/types/operations.cjs.map +1 -1
- package/dist/types/operations.d.ts +13 -17
- package/dist/types/operations.js +2 -2
- package/dist/types/operations.js.map +1 -1
- package/dist/types/permissions.d.ts +55 -58
- package/dist/types/personal.cjs.map +1 -1
- package/dist/types/personal.d.ts +6 -8
- package/dist/types/relayer.d.ts +15 -18
- package/dist/types/storage.d.ts +6 -8
- package/dist/types/storage.js +2 -5
- package/dist/types/storage.js.map +1 -1
- package/dist/types/transactionResults.d.ts +16 -18
- package/dist/types/utils.d.ts +21 -24
- package/dist/types.d.ts +4 -28
- package/dist/utils/__tests__/parseTransaction.test.d.ts +1 -0
- package/dist/utils/__tests__/pojo-serialization.test.d.ts +1 -0
- package/dist/utils/__tests__/signatureCache.test.d.ts +1 -0
- package/dist/utils/__tests__/transaction-edge-cases.test.d.ts +1 -0
- package/dist/utils/__tests__/transactionHelpers.test.d.ts +1 -0
- package/dist/utils/__tests__/urlResolver.test.d.ts +4 -0
- package/dist/utils/blockchain/registry.cjs +2 -2
- package/dist/utils/blockchain/registry.cjs.map +1 -1
- package/dist/utils/blockchain/registry.d.ts +6 -8
- package/dist/utils/blockchain/registry.js +2 -2
- package/dist/utils/blockchain/registry.js.map +1 -1
- package/dist/utils/blockchain/registry.test.d.ts +1 -0
- package/dist/utils/crypto-utils.cjs +0 -12
- package/dist/utils/crypto-utils.cjs.map +1 -1
- package/dist/utils/crypto-utils.d.ts +9 -27
- package/dist/utils/crypto-utils.js +0 -11
- package/dist/utils/crypto-utils.js.map +1 -1
- package/dist/utils/crypto-utils.test.d.ts +1 -0
- package/dist/utils/download.cjs +3 -3
- package/dist/utils/download.cjs.map +1 -1
- package/dist/utils/download.d.ts +13 -14
- package/dist/utils/download.js +2 -2
- package/dist/utils/download.js.map +1 -1
- package/dist/utils/encoding.cjs +1 -1
- package/dist/utils/encoding.cjs.map +1 -1
- package/dist/utils/encoding.d.ts +4 -6
- package/dist/utils/encoding.js +1 -1
- package/dist/utils/encoding.js.map +1 -1
- package/dist/utils/encoding.test.d.ts +1 -0
- package/dist/utils/encryption.cjs +16 -10
- package/dist/utils/encryption.cjs.map +1 -1
- package/dist/utils/encryption.d.ts +13 -17
- package/dist/utils/encryption.js +16 -10
- package/dist/utils/encryption.js.map +1 -1
- package/dist/utils/formatters.cjs +4 -2
- package/dist/utils/formatters.cjs.map +1 -1
- package/dist/utils/formatters.d.ts +4 -6
- package/dist/utils/formatters.js +4 -2
- package/dist/utils/formatters.js.map +1 -1
- package/dist/utils/grantFiles.cjs +7 -4
- package/dist/utils/grantFiles.cjs.map +1 -1
- package/dist/utils/grantFiles.d.ts +6 -10
- package/dist/utils/grantFiles.js +7 -4
- package/dist/utils/grantFiles.js.map +1 -1
- package/dist/utils/grantValidation.cjs +1 -1
- package/dist/utils/grantValidation.cjs.map +1 -1
- package/dist/utils/grantValidation.d.ts +14 -17
- package/dist/utils/grantValidation.js +1 -1
- package/dist/utils/grantValidation.js.map +1 -1
- package/dist/utils/grants.cjs +1 -1
- package/dist/utils/grants.cjs.map +1 -1
- package/dist/utils/grants.d.ts +10 -13
- package/dist/utils/grants.js +1 -1
- package/dist/utils/grants.js.map +1 -1
- package/dist/utils/ipfs.d.ts +8 -10
- package/dist/utils/lazy-import.cjs +4 -6
- package/dist/utils/lazy-import.cjs.map +1 -1
- package/dist/utils/lazy-import.d.ts +1 -3
- package/dist/utils/lazy-import.js +4 -6
- package/dist/utils/lazy-import.js.map +1 -1
- package/dist/utils/multicall.cjs +4 -2
- package/dist/utils/multicall.cjs.map +1 -1
- package/dist/utils/multicall.d.ts +5 -8
- package/dist/utils/multicall.js +4 -2
- package/dist/utils/multicall.js.map +1 -1
- package/dist/utils/parseTransactionPojo.cjs.map +1 -1
- package/dist/utils/parseTransactionPojo.d.ts +4 -10
- package/dist/utils/parseTransactionPojo.js.map +1 -1
- package/dist/utils/schemaValidation.cjs +5 -5
- package/dist/utils/schemaValidation.cjs.map +1 -1
- package/dist/utils/schemaValidation.d.ts +8 -12
- package/dist/utils/schemaValidation.js +7 -10
- package/dist/utils/schemaValidation.js.map +1 -1
- package/dist/utils/signatureCache.cjs +1 -2
- package/dist/utils/signatureCache.cjs.map +1 -1
- package/dist/utils/signatureCache.d.ts +4 -7
- package/dist/utils/signatureCache.js +4 -8
- package/dist/utils/signatureCache.js.map +1 -1
- package/dist/utils/signatureFormatter.cjs +6 -9
- package/dist/utils/signatureFormatter.cjs.map +1 -1
- package/dist/utils/signatureFormatter.d.ts +2 -5
- package/dist/utils/signatureFormatter.js +6 -9
- package/dist/utils/signatureFormatter.js.map +1 -1
- package/dist/utils/tests/multicall.test.d.ts +1 -0
- package/dist/utils/transactionHelpers.cjs.map +1 -1
- package/dist/utils/transactionHelpers.d.ts +5 -11
- package/dist/utils/transactionHelpers.js.map +1 -1
- package/dist/utils/typeGuards.cjs +109 -0
- package/dist/utils/typeGuards.cjs.map +1 -0
- package/dist/utils/typeGuards.d.ts +138 -0
- package/dist/utils/typeGuards.js +74 -0
- package/dist/utils/typeGuards.js.map +1 -0
- package/dist/utils/typedDataConverter.d.ts +3 -6
- package/dist/utils/urlResolver.cjs +1 -1
- package/dist/utils/urlResolver.cjs.map +1 -1
- package/dist/utils/urlResolver.d.ts +2 -4
- package/dist/utils/urlResolver.js +2 -2
- package/dist/utils/urlResolver.js.map +1 -1
- package/dist/utils/wallet.cjs +62 -0
- package/dist/utils/wallet.cjs.map +1 -0
- package/dist/utils/wallet.d.ts +32 -0
- package/dist/utils/wallet.js +36 -0
- package/dist/utils/wallet.js.map +1 -0
- package/dist/utils/withEvents.cjs.map +1 -1
- package/dist/utils/withEvents.d.ts +5 -12
- package/dist/utils/withEvents.js.map +1 -1
- package/package.json +22 -16
- package/dist/browser.d.cts +0 -2
- package/dist/chains/definitions.d.cts +0 -53
- package/dist/chains/index.d.cts +0 -2
- package/dist/chains.browser.cjs +0 -37
- package/dist/chains.browser.cjs.map +0 -1
- package/dist/chains.browser.d.cts +0 -2
- package/dist/chains.d.cts +0 -2
- package/dist/chains.node.d.cts +0 -2
- package/dist/config/addresses.d.cts +0 -401
- package/dist/config/chains.d.cts +0 -85
- package/dist/config/features.d.cts +0 -64
- package/dist/contracts/contractController.d.cts +0 -117
- package/dist/controllers/data.d.cts +0 -915
- package/dist/controllers/permissions.d.cts +0 -1383
- package/dist/controllers/protocol.d.cts +0 -188
- package/dist/controllers/schemas.d.cts +0 -260
- package/dist/controllers/server.d.cts +0 -230
- package/dist/core/apiClient.d.cts +0 -165
- package/dist/core/client.d.cts +0 -92
- package/dist/core/generics.d.cts +0 -120
- package/dist/core.d.cts +0 -493
- package/dist/crypto/ecies/__tests__/test-vectors.d.cts +0 -40
- package/dist/crypto/ecies/base.d.cts +0 -143
- package/dist/crypto/ecies/browser.d.cts +0 -48
- package/dist/crypto/ecies/constants.d.cts +0 -122
- package/dist/crypto/ecies/index.d.cts +0 -1
- package/dist/crypto/ecies/interface.d.cts +0 -176
- package/dist/crypto/ecies/node.d.cts +0 -50
- package/dist/crypto/ecies/test-vectors/eccrypto-vectors.d.cts +0 -76
- package/dist/crypto/ecies/test-vectors/eccrypto-vectors.d.ts +0 -76
- package/dist/crypto/ecies/utils.d.cts +0 -67
- package/dist/crypto/services/WalletKeyEncryptionService.d.cts +0 -92
- package/dist/diagnostics.d.cts +0 -26
- package/dist/errors.d.cts +0 -350
- package/dist/generated/abi/ComputeEngineImplementation.d.cts +0 -996
- package/dist/generated/abi/ComputeInstructionRegistryImplementation.d.cts +0 -545
- package/dist/generated/abi/DATFactoryImplementation.d.cts +0 -661
- package/dist/generated/abi/DATImplementation.d.cts +0 -693
- package/dist/generated/abi/DATPausableImplementation.d.cts +0 -1145
- package/dist/generated/abi/DATVotesImplementation.d.cts +0 -1095
- package/dist/generated/abi/DLPPerformanceImplementation.d.cts +0 -883
- package/dist/generated/abi/DLPRegistryImplementation.d.cts +0 -1123
- package/dist/generated/abi/DLPRegistryTreasuryImplementation.d.cts +0 -452
- package/dist/generated/abi/DLPRewardDeployerImplementation.d.cts +0 -714
- package/dist/generated/abi/DLPRewardDeployerTreasuryImplementation.d.cts +0 -452
- package/dist/generated/abi/DLPRewardSwapImplementation.d.cts +0 -706
- package/dist/generated/abi/DLPRootImplementation.d.cts +0 -1248
- package/dist/generated/abi/DLPTreasuryImplementation.d.cts +0 -452
- package/dist/generated/abi/DataLiquidityPoolImplementation.d.cts +0 -737
- package/dist/generated/abi/DataPortabilityGranteesImplementation.d.cts +0 -661
- package/dist/generated/abi/DataPortabilityPermissionsImplementation.d.cts +0 -989
- package/dist/generated/abi/DataPortabilityServersImplementation.d.cts +0 -1086
- package/dist/generated/abi/DataRefinerRegistryImplementation.d.cts +0 -737
- package/dist/generated/abi/DataRegistryImplementation.d.cts +0 -1014
- package/dist/generated/abi/QueryEngineImplementation.d.cts +0 -1001
- package/dist/generated/abi/SwapHelperImplementation.d.cts +0 -764
- package/dist/generated/abi/TeePoolDedicatedGpuImplementation.d.cts +0 -701
- package/dist/generated/abi/TeePoolDedicatedStandardImplementation.d.cts +0 -701
- package/dist/generated/abi/TeePoolEphemeralStandardImplementation.d.cts +0 -701
- package/dist/generated/abi/TeePoolImplementation.d.cts +0 -993
- package/dist/generated/abi/TeePoolPersistentGpuImplementation.d.cts +0 -701
- package/dist/generated/abi/TeePoolPersistentStandardImplementation.d.cts +0 -701
- package/dist/generated/abi/TeePoolPhalaImplementation.d.cts +0 -993
- package/dist/generated/abi/VanaEpochImplementation.d.cts +0 -900
- package/dist/generated/abi/VanaPoolEntityImplementation.d.cts +0 -934
- package/dist/generated/abi/VanaPoolStakingImplementation.d.cts +0 -693
- package/dist/generated/abi/VanaPoolTreasuryImplementation.d.cts +0 -394
- package/dist/generated/abi/index.d.cts +0 -26547
- package/dist/generated/event-types.d.cts +0 -855
- package/dist/generated/eventRegistry.d.cts +0 -18
- package/dist/generated/server/server-exports.d.cts +0 -21
- package/dist/generated/server/server.d.cts +0 -512
- package/dist/generated/subgraph.d.cts +0 -5981
- package/dist/index.browser.cjs +0 -151
- package/dist/index.browser.cjs.map +0 -1
- package/dist/index.browser.d.cts +0 -201
- package/dist/index.d.cts +0 -2
- package/dist/index.node.d.cts +0 -87
- package/dist/node.d.cts +0 -2
- package/dist/platform/browser-only.d.cts +0 -25
- package/dist/platform/browser-safe.d.cts +0 -32
- package/dist/platform/browser.d.cts +0 -74
- package/dist/platform/index.d.cts +0 -5
- package/dist/platform/interface.d.cts +0 -218
- package/dist/platform/node.d.cts +0 -27
- package/dist/platform/shared/error-utils.d.cts +0 -25
- package/dist/platform/shared/pgp-utils.d.cts +0 -61
- package/dist/platform/shared/stream-utils.d.cts +0 -16
- package/dist/platform/utils.d.cts +0 -53
- package/dist/platform.browser.cjs +0 -41
- package/dist/platform.browser.cjs.map +0 -1
- package/dist/platform.browser.d.cts +0 -4
- package/dist/platform.d.cts +0 -5
- package/dist/platform.node.d.cts +0 -5
- package/dist/schemas/dataSchema.schema.d.cts +0 -88
- package/dist/schemas/dataSchema.schema.d.ts +0 -88
- package/dist/schemas/grantFile.schema.d.cts +0 -57
- package/dist/schemas/grantFile.schema.d.ts +0 -57
- package/dist/server/handler.d.cts +0 -306
- package/dist/storage/index.d.cts +0 -10
- package/dist/storage/manager.d.cts +0 -150
- package/dist/storage/providers/callback-storage.d.cts +0 -100
- package/dist/storage/providers/google-drive.d.cts +0 -156
- package/dist/storage/providers/ipfs.d.cts +0 -163
- package/dist/storage/providers/pinata.d.cts +0 -173
- package/dist/types/blockchain.d.cts +0 -52
- package/dist/types/chains.d.cts +0 -34
- package/dist/types/config.d.cts +0 -726
- package/dist/types/contracts.d.cts +0 -68
- package/dist/types/controller-context.d.cts +0 -71
- package/dist/types/data.d.cts +0 -694
- package/dist/types/eccrypto-js.d.d.cts +0 -13
- package/dist/types/eccrypto-js.d.d.ts +0 -13
- package/dist/types/external-apis.d.cts +0 -186
- package/dist/types/generics.d.cts +0 -450
- package/dist/types/index.d.cts +0 -22
- package/dist/types/operations.d.cts +0 -116
- package/dist/types/permissions.d.cts +0 -957
- package/dist/types/personal.d.cts +0 -40
- package/dist/types/relayer.d.cts +0 -284
- package/dist/types/storage.d.cts +0 -131
- package/dist/types/transactionResults.d.cts +0 -195
- package/dist/types/utils.d.cts +0 -819
- package/dist/types.d.cts +0 -54
- package/dist/utils/blockchain/registry.d.cts +0 -34
- package/dist/utils/crypto-utils.d.cts +0 -118
- package/dist/utils/download.d.cts +0 -41
- package/dist/utils/encoding.d.cts +0 -54
- package/dist/utils/encryption.d.cts +0 -275
- package/dist/utils/formatters.d.cts +0 -120
- package/dist/utils/grantFiles.d.cts +0 -186
- package/dist/utils/grantValidation.d.cts +0 -150
- package/dist/utils/grants.d.cts +0 -70
- package/dist/utils/ipfs.d.cts +0 -90
- package/dist/utils/lazy-import.d.cts +0 -20
- package/dist/utils/multicall.d.cts +0 -129
- package/dist/utils/parseTransactionPojo.d.cts +0 -37
- package/dist/utils/schemaValidation.d.cts +0 -172
- package/dist/utils/signatureCache.d.cts +0 -134
- package/dist/utils/signatureFormatter.d.cts +0 -39
- package/dist/utils/transactionHelpers.d.cts +0 -86
- package/dist/utils/typedDataConverter.d.cts +0 -13
- package/dist/utils/urlResolver.d.cts +0 -40
- package/dist/utils/withEvents.d.cts +0 -63
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
import { Address, Abi, PublicClient, MulticallParameters, MulticallReturnType } from 'viem';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Type for a contract function configuration used in multicall
|
|
5
|
-
*/
|
|
6
|
-
interface ContractFunctionConfig {
|
|
7
|
-
address: Address;
|
|
8
|
-
abi: Abi;
|
|
9
|
-
functionName: string;
|
|
10
|
-
args?: readonly unknown[];
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* Configuration options for gas-aware multicall batching.
|
|
14
|
-
*
|
|
15
|
-
* @remarks
|
|
16
|
-
* These options control how the multicall utility splits large batches
|
|
17
|
-
* to stay within gas and calldata limits. The defaults are conservative
|
|
18
|
-
* to ensure compatibility across different chains and RPC providers.
|
|
19
|
-
*/
|
|
20
|
-
interface GasAwareMulticallOptions {
|
|
21
|
-
/**
|
|
22
|
-
* Maximum gas per batch. Defaults to 10M (conservative for most chains).
|
|
23
|
-
*
|
|
24
|
-
* @remarks
|
|
25
|
-
* This should be set below the block gas limit of your target chain.
|
|
26
|
-
* Common values:
|
|
27
|
-
* - Vana mainnet: 30M (use 25M for safety)
|
|
28
|
-
* - Vana moksha: 30M (use 25M for safety)
|
|
29
|
-
* - Ethereum mainnet: 30M (use 25M for safety)
|
|
30
|
-
* - Arbitrum: 32M (use 25M for safety)
|
|
31
|
-
*/
|
|
32
|
-
maxGasPerBatch?: bigint;
|
|
33
|
-
/**
|
|
34
|
-
* Maximum calldata size per batch in bytes. Defaults to 100KB.
|
|
35
|
-
*
|
|
36
|
-
* @remarks
|
|
37
|
-
* This is particularly important for L2 chains where calldata is expensive.
|
|
38
|
-
* Some RPC providers also have limits on request size.
|
|
39
|
-
*/
|
|
40
|
-
maxCalldataBytes?: number;
|
|
41
|
-
/**
|
|
42
|
-
* How often to checkpoint gas estimates. Defaults to every 32 calls or 8KB.
|
|
43
|
-
*
|
|
44
|
-
* @remarks
|
|
45
|
-
* More frequent checkpoints give more accurate batching but require more
|
|
46
|
-
* RPC calls for gas estimation. The default balances accuracy vs performance.
|
|
47
|
-
*/
|
|
48
|
-
checkpointFrequency?: {
|
|
49
|
-
/** Checkpoint after this many calls */
|
|
50
|
-
calls: number;
|
|
51
|
-
/** Checkpoint after this many bytes of calldata */
|
|
52
|
-
bytes: number;
|
|
53
|
-
};
|
|
54
|
-
/**
|
|
55
|
-
* Whether to allow partial batch failures. Defaults to false.
|
|
56
|
-
*
|
|
57
|
-
* @remarks
|
|
58
|
-
* When true, individual call failures won't fail the entire batch.
|
|
59
|
-
* This matches viem's multicall behavior with allowFailure option.
|
|
60
|
-
*/
|
|
61
|
-
allowFailure?: boolean;
|
|
62
|
-
/**
|
|
63
|
-
* Optional multicall3 contract address override.
|
|
64
|
-
*
|
|
65
|
-
* @remarks
|
|
66
|
-
* By default, uses the standard multicall3 address deployed on most chains:
|
|
67
|
-
* 0xcA11bde05977b3631167028862bE2a173976CA11
|
|
68
|
-
*/
|
|
69
|
-
multicallAddress?: Address;
|
|
70
|
-
/**
|
|
71
|
-
* Optional callback for tracking batching progress.
|
|
72
|
-
*
|
|
73
|
-
* @remarks
|
|
74
|
-
* Useful for showing progress in UI or debugging batch performance.
|
|
75
|
-
*/
|
|
76
|
-
onProgress?: (completed: number, total: number) => void;
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* A gas-aware multicall function that automatically batches calls to stay within limits.
|
|
80
|
-
*
|
|
81
|
-
* @remarks
|
|
82
|
-
* This function extends viem's multicall with intelligent batching based on:
|
|
83
|
-
* - Actual gas costs (via periodic estimateGas calls)
|
|
84
|
-
* - Calldata size limits
|
|
85
|
-
* - Chain-specific constraints
|
|
86
|
-
*
|
|
87
|
-
* It uses a greedy algorithm with periodic checkpoints to efficiently determine
|
|
88
|
-
* optimal batch sizes without making excessive RPC calls.
|
|
89
|
-
*
|
|
90
|
-
* @param client - The viem public client to use for RPC calls
|
|
91
|
-
* @param parameters - The multicall parameters (same as viem's multicall)
|
|
92
|
-
* @param options - Optional configuration for gas-aware batching
|
|
93
|
-
* @returns The aggregated results from all batches
|
|
94
|
-
*
|
|
95
|
-
* @example
|
|
96
|
-
* ```typescript
|
|
97
|
-
* // Basic usage - drop-in replacement for viem's multicall
|
|
98
|
-
* const results = await gasAwareMulticall(publicClient, {
|
|
99
|
-
* contracts: [
|
|
100
|
-
* { address: '0x...', abi: erc20Abi, functionName: 'balanceOf', args: [address1] },
|
|
101
|
-
* { address: '0x...', abi: erc20Abi, functionName: 'balanceOf', args: [address2] },
|
|
102
|
-
* // ... hundreds more calls
|
|
103
|
-
* ]
|
|
104
|
-
* });
|
|
105
|
-
*
|
|
106
|
-
* // With custom limits for a specific chain
|
|
107
|
-
* const results = await gasAwareMulticall(publicClient, {
|
|
108
|
-
* contracts: calls,
|
|
109
|
-
* }, {
|
|
110
|
-
* maxGasPerBatch: 25_000_000n, // 25M for mainnet
|
|
111
|
-
* maxCalldataBytes: 128_000, // 128KB
|
|
112
|
-
* onProgress: (done, total) => console.log(`Progress: ${done}/${total}`)
|
|
113
|
-
* });
|
|
114
|
-
* ```
|
|
115
|
-
*/
|
|
116
|
-
declare function gasAwareMulticall<TContracts extends readonly ContractFunctionConfig[], TAllowFailure extends boolean = false>(client: PublicClient, parameters: MulticallParameters<TContracts, TAllowFailure>, options?: GasAwareMulticallOptions): Promise<MulticallReturnType<TContracts, TAllowFailure>>;
|
|
117
|
-
/**
|
|
118
|
-
* Utility function to analyze calls and predict optimal batch configuration
|
|
119
|
-
*
|
|
120
|
-
* @remarks
|
|
121
|
-
* This function helps determine the best configuration for a specific set of calls
|
|
122
|
-
* by analyzing their characteristics. Useful for optimizing repeated operations.
|
|
123
|
-
*
|
|
124
|
-
* @param contracts - The calls to analyze
|
|
125
|
-
* @returns Suggested configuration based on call analysis
|
|
126
|
-
*/
|
|
127
|
-
declare function analyzeCallsForOptimalConfig(contracts: readonly ContractFunctionConfig[]): Pick<GasAwareMulticallOptions, "checkpointFrequency" | "maxCalldataBytes">;
|
|
128
|
-
|
|
129
|
-
export { type ContractFunctionConfig, type GasAwareMulticallOptions, analyzeCallsForOptimalConfig, gasAwareMulticall };
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { TransactionReceipt } from 'viem';
|
|
2
|
-
import { TransactionResult } from '../types/operations.cjs';
|
|
3
|
-
import { Contract, Fn, TypedTransactionResult } from '../generated/event-types.cjs';
|
|
4
|
-
import '../generated/server/server-exports.cjs';
|
|
5
|
-
import '../generated/server/server.cjs';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Transaction parsing with POJO support and NO heuristics.
|
|
9
|
-
*
|
|
10
|
-
* @remarks
|
|
11
|
-
* This is the new POJO-based parser that works with TransactionResult objects.
|
|
12
|
-
* Principle: Explicit over implicit, guarantees over guesses.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Parses a transaction using TransactionResult POJO with ZERO heuristics.
|
|
17
|
-
*
|
|
18
|
-
* @remarks
|
|
19
|
-
* - Uses function-scoped event registry for O(1) lookups
|
|
20
|
-
* - Only expects events explicitly mapped for this contract.function
|
|
21
|
-
* - Returns typed events matching the exact TypedTransactionResult interface
|
|
22
|
-
*
|
|
23
|
-
* @param transactionResult - The TransactionResult POJO with context
|
|
24
|
-
* @param transactionResult.hash - Transaction hash
|
|
25
|
-
* @param transactionResult.from - Transaction sender address
|
|
26
|
-
* @param transactionResult.contract - Contract name
|
|
27
|
-
* @param transactionResult.fn - Function name
|
|
28
|
-
* @param transactionResult.chainId - Optional chain ID
|
|
29
|
-
* @param transactionResult.value - Optional transaction value
|
|
30
|
-
* @param transactionResult.nonce - Optional nonce
|
|
31
|
-
* @param transactionResult.to - Optional recipient address
|
|
32
|
-
* @param receipt - The transaction receipt from the blockchain
|
|
33
|
-
* @returns Typed transaction result with parsed events
|
|
34
|
-
*/
|
|
35
|
-
declare function parseTransaction<C extends Contract, F extends Fn<C>>(transactionResult: TransactionResult<C, F>, receipt: TransactionReceipt): TypedTransactionResult<C, F>;
|
|
36
|
-
|
|
37
|
-
export { parseTransaction };
|
|
@@ -1,172 +0,0 @@
|
|
|
1
|
-
import { Schema } from '../types/data.cjs';
|
|
2
|
-
import 'viem';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Data schema interface following the Vana schema specification
|
|
6
|
-
*
|
|
7
|
-
* @category Configuration
|
|
8
|
-
*/
|
|
9
|
-
interface DataSchema {
|
|
10
|
-
/** The name of the data schema */
|
|
11
|
-
name: string;
|
|
12
|
-
/** The version of the data schema */
|
|
13
|
-
version: string;
|
|
14
|
-
/** Optional description of the data schema */
|
|
15
|
-
description?: string;
|
|
16
|
-
/** The dialect type - either SQLite or JSON */
|
|
17
|
-
dialect: "sqlite" | "json";
|
|
18
|
-
/** Optional version of the dialect */
|
|
19
|
-
dialectVersion?: string;
|
|
20
|
-
/** The actual schema definition as string or object */
|
|
21
|
-
schema: string | object;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Error thrown when schema validation fails
|
|
25
|
-
*/
|
|
26
|
-
declare class SchemaValidationError extends Error {
|
|
27
|
-
errors: Array<{
|
|
28
|
-
instancePath: string;
|
|
29
|
-
schemaPath: string;
|
|
30
|
-
keyword: string;
|
|
31
|
-
params: Record<string, unknown>;
|
|
32
|
-
message?: string;
|
|
33
|
-
}>;
|
|
34
|
-
constructor(message: string, errors: Array<{
|
|
35
|
-
instancePath: string;
|
|
36
|
-
schemaPath: string;
|
|
37
|
-
keyword: string;
|
|
38
|
-
params: Record<string, unknown>;
|
|
39
|
-
message?: string;
|
|
40
|
-
}>);
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* Data schema validation utility class
|
|
44
|
-
*/
|
|
45
|
-
declare class SchemaValidator {
|
|
46
|
-
private ajv;
|
|
47
|
-
private dataSchemaValidator;
|
|
48
|
-
constructor();
|
|
49
|
-
/**
|
|
50
|
-
* Validates a data schema definition against the Vana meta-schema
|
|
51
|
-
*
|
|
52
|
-
* @param schema - The data schema definition to validate
|
|
53
|
-
* @throws SchemaValidationError if invalid
|
|
54
|
-
* @example
|
|
55
|
-
* ```typescript
|
|
56
|
-
* const validator = new SchemaValidator();
|
|
57
|
-
*
|
|
58
|
-
* const schema = {
|
|
59
|
-
* name: "User Profile",
|
|
60
|
-
* version: "1.0.0",
|
|
61
|
-
* dialect: "json",
|
|
62
|
-
* schema: {
|
|
63
|
-
* type: "object",
|
|
64
|
-
* properties: {
|
|
65
|
-
* name: { type: "string" },
|
|
66
|
-
* age: { type: "number" }
|
|
67
|
-
* }
|
|
68
|
-
* }
|
|
69
|
-
* };
|
|
70
|
-
*
|
|
71
|
-
* validator.validateDataSchemaAgainstMetaSchema(schema); // throws if invalid
|
|
72
|
-
* ```
|
|
73
|
-
*/
|
|
74
|
-
validateDataSchemaAgainstMetaSchema(schema: unknown): asserts schema is DataSchema;
|
|
75
|
-
/**
|
|
76
|
-
* Validates data against a JSON Schema
|
|
77
|
-
*
|
|
78
|
-
* @param data - The data to validate
|
|
79
|
-
* @param schema - The schema containing the validation rules (must have been validated or fetched from chain)
|
|
80
|
-
* @throws SchemaValidationError if invalid
|
|
81
|
-
* @example
|
|
82
|
-
* ```typescript
|
|
83
|
-
* const validator = new SchemaValidator();
|
|
84
|
-
*
|
|
85
|
-
* // Works with Schema from schemas.get()
|
|
86
|
-
* const schema = await vana.schemas.get(1);
|
|
87
|
-
* validator.validateDataAgainstSchema(userData, schema);
|
|
88
|
-
*
|
|
89
|
-
* // Also works with pre-validated DataSchema object
|
|
90
|
-
* const dataSchema = validator.validateDataSchemaAgainstMetaSchema({
|
|
91
|
-
* name: "User Profile",
|
|
92
|
-
* version: "1.0.0",
|
|
93
|
-
* dialect: "json",
|
|
94
|
-
* schema: { type: "object", properties: { name: { type: "string" } } }
|
|
95
|
-
* });
|
|
96
|
-
* validator.validateDataAgainstSchema(userData, dataSchema);
|
|
97
|
-
* ```
|
|
98
|
-
*/
|
|
99
|
-
validateDataAgainstSchema(data: unknown, schema: DataSchema | Schema): void;
|
|
100
|
-
/**
|
|
101
|
-
* Validates a SQLite DDL string for basic syntax
|
|
102
|
-
* Note: This is a basic validation, full SQL parsing would require a proper SQL parser
|
|
103
|
-
*
|
|
104
|
-
* @param ddl - The DDL string to validate
|
|
105
|
-
* @param dialectVersion - Optional SQLite version (e.g., "3" for SQLite v3)
|
|
106
|
-
* @throws SchemaValidationError if invalid
|
|
107
|
-
*/
|
|
108
|
-
validateSQLiteDDL(ddl: string, dialectVersion?: string): void;
|
|
109
|
-
/**
|
|
110
|
-
* Fetches and validates a data schema from a URL
|
|
111
|
-
*
|
|
112
|
-
* @param url - The URL to fetch the data schema from
|
|
113
|
-
* @param downloadRelayer - Optional download relayer for CORS bypass
|
|
114
|
-
* @param downloadRelayer.proxyDownload - Function to proxy downloads through application server
|
|
115
|
-
* @returns The validated data schema
|
|
116
|
-
* @throws SchemaValidationError if invalid or fetch fails
|
|
117
|
-
* @example
|
|
118
|
-
* ```typescript
|
|
119
|
-
* const validator = new SchemaValidator();
|
|
120
|
-
* const schema = await validator.fetchAndValidateSchema("https://example.com/schema.json");
|
|
121
|
-
* ```
|
|
122
|
-
*/
|
|
123
|
-
fetchAndValidateSchema(url: string, downloadRelayer?: {
|
|
124
|
-
proxyDownload: (url: string) => Promise<Blob>;
|
|
125
|
-
}): Promise<DataSchema>;
|
|
126
|
-
}
|
|
127
|
-
/**
|
|
128
|
-
* Global schema validator instance
|
|
129
|
-
*/
|
|
130
|
-
declare const schemaValidator: SchemaValidator;
|
|
131
|
-
/**
|
|
132
|
-
* Convenience function to validate a data schema definition against the Vana meta-schema
|
|
133
|
-
*
|
|
134
|
-
* @param schema - The data schema definition to validate
|
|
135
|
-
* @returns The validated DataSchema
|
|
136
|
-
* @throws SchemaValidationError if invalid
|
|
137
|
-
* @example
|
|
138
|
-
* ```typescript
|
|
139
|
-
* const schemaDefinition = {
|
|
140
|
-
* name: "User Profile",
|
|
141
|
-
* version: "1.0.0",
|
|
142
|
-
* dialect: "json",
|
|
143
|
-
* schema: { type: "object", properties: { name: { type: "string" } } }
|
|
144
|
-
* };
|
|
145
|
-
*
|
|
146
|
-
* const validatedSchema = validateDataSchemaAgainstMetaSchema(schemaDefinition);
|
|
147
|
-
* ```
|
|
148
|
-
*/
|
|
149
|
-
declare function validateDataSchemaAgainstMetaSchema(schema: unknown): DataSchema;
|
|
150
|
-
/**
|
|
151
|
-
* Convenience function to validate data against a schema
|
|
152
|
-
*
|
|
153
|
-
* @param data - The data to validate
|
|
154
|
-
* @param schema - The data schema containing the schema
|
|
155
|
-
* @returns void - Function doesn't return a value
|
|
156
|
-
* @throws SchemaValidationError if invalid
|
|
157
|
-
*/
|
|
158
|
-
declare function validateDataAgainstSchema(data: unknown, schema: DataSchema | Schema): void;
|
|
159
|
-
/**
|
|
160
|
-
* Convenience function to fetch and validate a data schema from a URL
|
|
161
|
-
*
|
|
162
|
-
* @param url - The URL to fetch the data schema from
|
|
163
|
-
* @param downloadRelayer - Optional download relayer for CORS bypass
|
|
164
|
-
* @param downloadRelayer.proxyDownload - Function to proxy downloads through application server
|
|
165
|
-
* @returns The validated data schema
|
|
166
|
-
* @throws SchemaValidationError if invalid or fetch fails
|
|
167
|
-
*/
|
|
168
|
-
declare function fetchAndValidateSchema(url: string, downloadRelayer?: {
|
|
169
|
-
proxyDownload: (url: string) => Promise<Blob>;
|
|
170
|
-
}): Promise<DataSchema>;
|
|
171
|
-
|
|
172
|
-
export { type DataSchema, SchemaValidationError, SchemaValidator, fetchAndValidateSchema, schemaValidator, validateDataAgainstSchema, validateDataSchemaAgainstMetaSchema };
|
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
import { Hash } from 'viem';
|
|
2
|
-
import { VanaCacheAdapter } from '../platform/interface.cjs';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Simple signature cache using platform cache adapter to avoid repeated signing of identical messages.
|
|
6
|
-
*
|
|
7
|
-
* @remarks
|
|
8
|
-
* This cache significantly improves UX by avoiding repeated wallet signature prompts
|
|
9
|
-
* for identical operations. It's particularly useful for operations that may be
|
|
10
|
-
* retried or called multiple times with the same parameters.
|
|
11
|
-
*
|
|
12
|
-
* Features:
|
|
13
|
-
* - Platform-appropriate storage (sessionStorage in browser, memory in Node.js)
|
|
14
|
-
* - Configurable TTL (default 2 hours)
|
|
15
|
-
* - Automatic cleanup of expired entries
|
|
16
|
-
* - Cache keys based on wallet address + message hash
|
|
17
|
-
*
|
|
18
|
-
* @example
|
|
19
|
-
* ```typescript
|
|
20
|
-
* // Check cache before requesting signature
|
|
21
|
-
* const cached = SignatureCache.get(cache, walletAddress, messageHash);
|
|
22
|
-
* if (cached) {
|
|
23
|
-
* return cached;
|
|
24
|
-
* }
|
|
25
|
-
*
|
|
26
|
-
* // Request signature and cache it
|
|
27
|
-
* const signature = await wallet.signTypedData(typedData);
|
|
28
|
-
* SignatureCache.set(cache, walletAddress, messageHash, signature);
|
|
29
|
-
* ```
|
|
30
|
-
* @category Utilities
|
|
31
|
-
*/
|
|
32
|
-
declare class SignatureCache {
|
|
33
|
-
private static readonly PREFIX;
|
|
34
|
-
private static readonly DEFAULT_TTL_HOURS;
|
|
35
|
-
/**
|
|
36
|
-
* Get a cached signature if it exists and hasn't expired
|
|
37
|
-
*
|
|
38
|
-
* @param cache - Platform cache adapter instance
|
|
39
|
-
* @param walletAddress - Wallet address that created the signature
|
|
40
|
-
* @param messageHash - Hash of the message that was signed
|
|
41
|
-
* @returns The cached signature if valid, null if expired or not found
|
|
42
|
-
* @example
|
|
43
|
-
* ```typescript
|
|
44
|
-
* const messageHash = SignatureCache.hashMessage(typedData);
|
|
45
|
-
* const cached = SignatureCache.get(cache, '0x123...', messageHash);
|
|
46
|
-
* if (cached) {
|
|
47
|
-
* console.log('Using cached signature:', cached);
|
|
48
|
-
* }
|
|
49
|
-
* ```
|
|
50
|
-
*/
|
|
51
|
-
static get(cache: VanaCacheAdapter, walletAddress: string, messageHash: string): Hash | null;
|
|
52
|
-
/**
|
|
53
|
-
* Store a signature in the cache with configurable TTL
|
|
54
|
-
*
|
|
55
|
-
* @param cache - Platform cache adapter instance
|
|
56
|
-
* @param walletAddress - Wallet address that created the signature
|
|
57
|
-
* @param messageHash - Hash of the message that was signed
|
|
58
|
-
* @param signature - The signature to cache
|
|
59
|
-
* @param ttlHours - Time to live in hours (default: 2)
|
|
60
|
-
* @example
|
|
61
|
-
* ```typescript
|
|
62
|
-
* const signature = await wallet.signTypedData(typedData);
|
|
63
|
-
* const messageHash = SignatureCache.hashMessage(typedData);
|
|
64
|
-
*
|
|
65
|
-
* // Cache for default 2 hours
|
|
66
|
-
* SignatureCache.set(cache, walletAddress, messageHash, signature);
|
|
67
|
-
*
|
|
68
|
-
* // Cache for 24 hours
|
|
69
|
-
* SignatureCache.set(cache, walletAddress, messageHash, signature, 24);
|
|
70
|
-
* ```
|
|
71
|
-
*/
|
|
72
|
-
static set(cache: VanaCacheAdapter, walletAddress: string, messageHash: string, signature: Hash, ttlHours?: number): void;
|
|
73
|
-
/**
|
|
74
|
-
* Clear all cached signatures (useful for testing or explicit cleanup)
|
|
75
|
-
*
|
|
76
|
-
* @param cache - Platform cache adapter instance
|
|
77
|
-
* @example
|
|
78
|
-
* ```typescript
|
|
79
|
-
* // Clear all signatures when user logs out
|
|
80
|
-
* SignatureCache.clear(cache);
|
|
81
|
-
*
|
|
82
|
-
* // Clear before running tests
|
|
83
|
-
* beforeEach(() => {
|
|
84
|
-
* SignatureCache.clear(cache);
|
|
85
|
-
* });
|
|
86
|
-
* ```
|
|
87
|
-
*/
|
|
88
|
-
static clear(cache: VanaCacheAdapter): void;
|
|
89
|
-
private static getCacheKey;
|
|
90
|
-
/**
|
|
91
|
-
* Generate a deterministic hash of a message object for cache key generation
|
|
92
|
-
*
|
|
93
|
-
* @remarks
|
|
94
|
-
* Creates a cryptographically secure hash from complex objects including EIP-712 typed data.
|
|
95
|
-
* Uses SHA-256 for collision resistance and deterministic key generation.
|
|
96
|
-
* Handles BigInt serialization and sorts object keys for consistency.
|
|
97
|
-
*
|
|
98
|
-
* @param message - The message object to hash (typically EIP-712 typed data)
|
|
99
|
-
* @returns A hex string hash (SHA-256) suitable for cache keys
|
|
100
|
-
* @example
|
|
101
|
-
* ```typescript
|
|
102
|
-
* const typedData = {
|
|
103
|
-
* domain: { name: 'Vana', version: '1' },
|
|
104
|
-
* message: { nonce: 123n, grant: '...' }
|
|
105
|
-
* };
|
|
106
|
-
*
|
|
107
|
-
* const hash = SignatureCache.hashMessage(typedData);
|
|
108
|
-
* // Returns SHA-256 hash like: "a1b2c3d4e5f6..."
|
|
109
|
-
* ```
|
|
110
|
-
*/
|
|
111
|
-
static hashMessage(message: object): string;
|
|
112
|
-
/**
|
|
113
|
-
* Deterministic JSON replacer that handles BigInt values and sorts object keys
|
|
114
|
-
* This ensures consistent cache key generation for EIP-712 typed data
|
|
115
|
-
*
|
|
116
|
-
* @param _key - The object key being serialized (unused)
|
|
117
|
-
* @param value - The value to serialize
|
|
118
|
-
* @returns The serialized value with sorted keys for objects
|
|
119
|
-
*/
|
|
120
|
-
private static deterministicReplacer;
|
|
121
|
-
}
|
|
122
|
-
/**
|
|
123
|
-
* Wrapper function to cache signature operations
|
|
124
|
-
*
|
|
125
|
-
* @param cache - The cache adapter to use for storage
|
|
126
|
-
* @param walletAddress - The wallet address signing the message
|
|
127
|
-
* @param typedData - The EIP-712 typed data being signed
|
|
128
|
-
* @param signFn - Function that performs the actual signing
|
|
129
|
-
* @param ttlHours - Cache TTL in hours (default 2)
|
|
130
|
-
* @returns The signature (cached or newly generated)
|
|
131
|
-
*/
|
|
132
|
-
declare function withSignatureCache(cache: VanaCacheAdapter, walletAddress: string, typedData: Record<string, unknown>, signFn: () => Promise<Hash>, ttlHours?: number): Promise<Hash>;
|
|
133
|
-
|
|
134
|
-
export { SignatureCache, withSignatureCache };
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { Hash } from 'viem';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Formats a signature for Ethereum smart contract compatibility by adjusting the v-value.
|
|
5
|
-
*
|
|
6
|
-
* @remarks
|
|
7
|
-
* This function ensures signature compatibility with Ethereum smart contracts by adjusting
|
|
8
|
-
* the v-value component of ECDSA signatures. Some wallet implementations and signing methods
|
|
9
|
-
* produce signatures with v-values in the range [0, 1], while Ethereum smart contracts
|
|
10
|
-
* expect v-values in the range [27, 28] for proper signature verification.
|
|
11
|
-
*
|
|
12
|
-
* The function automatically detects signatures with low v-values and applies the standard
|
|
13
|
-
* Ethereum offset (+27) to ensure compatibility. This is particularly important for gasless
|
|
14
|
-
* transactions and EIP-712 signature verification in smart contracts.
|
|
15
|
-
*
|
|
16
|
-
* **Technical Details:**
|
|
17
|
-
* - Ethereum signatures consist of r (32 bytes) + s (32 bytes) + v (1 byte) = 65 bytes total
|
|
18
|
-
* - Valid v-values for Ethereum are 27 or 28 (or 0/1 + chain-specific offset for EIP-155)
|
|
19
|
-
* - This function handles the common case where v ∈ [0, 1] needs adjustment to [27, 28]
|
|
20
|
-
*
|
|
21
|
-
* @param signature - The ECDSA signature hash to format (65 bytes as hex string)
|
|
22
|
-
* @returns The formatted signature with correct v-value for Ethereum contract verification
|
|
23
|
-
* @example
|
|
24
|
-
* ```typescript
|
|
25
|
-
* // Signature with v-value that needs adjustment
|
|
26
|
-
* const rawSignature = "0x1234...5600"; // v = 0 (last byte)
|
|
27
|
-
* const formatted = formatSignatureForContract(rawSignature);
|
|
28
|
-
* // Result: "0x1234...561b" // v = 27 (0x1b)
|
|
29
|
-
*
|
|
30
|
-
* // Already properly formatted signature remains unchanged
|
|
31
|
-
* const goodSignature = "0x1234...561b"; // v = 27
|
|
32
|
-
* const unchanged = formatSignatureForContract(goodSignature);
|
|
33
|
-
* // Result: "0x1234...561b" (no change needed)
|
|
34
|
-
* ```
|
|
35
|
-
* @category Cryptography
|
|
36
|
-
*/
|
|
37
|
-
declare function formatSignatureForContract(signature: Hash): Hash;
|
|
38
|
-
|
|
39
|
-
export { formatSignatureForContract };
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { Hash, Address } from 'viem';
|
|
2
|
-
import { TransactionResult } from '../types/operations.cjs';
|
|
3
|
-
import { Contract, Fn } from '../generated/event-types.cjs';
|
|
4
|
-
import '../generated/server/server-exports.cjs';
|
|
5
|
-
import '../generated/server/server.cjs';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Helper functions for creating typed transaction POJOs
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* Creates a strongly-typed TransactionResult POJO.
|
|
13
|
-
*
|
|
14
|
-
* @remarks
|
|
15
|
-
* This helper ensures all required fields are present and typed correctly,
|
|
16
|
-
* reducing boilerplate and preventing mistakes.
|
|
17
|
-
*
|
|
18
|
-
* @param input - Transaction details
|
|
19
|
-
* @param input.hash - Transaction hash
|
|
20
|
-
* @param input.from - Transaction sender address
|
|
21
|
-
* @param input.contract - Contract name
|
|
22
|
-
* @param input.fn - Function name
|
|
23
|
-
* @param input.chainId - Optional chain ID
|
|
24
|
-
* @param input.value - Optional transaction value
|
|
25
|
-
* @param input.nonce - Optional nonce
|
|
26
|
-
* @param input.to - Optional recipient address
|
|
27
|
-
* @returns Typed TransactionResult
|
|
28
|
-
*
|
|
29
|
-
* @example
|
|
30
|
-
* ```typescript
|
|
31
|
-
* return tx({
|
|
32
|
-
* hash,
|
|
33
|
-
* from: account.address,
|
|
34
|
-
* contract: "DataPortabilityPermissions",
|
|
35
|
-
* fn: "revokePermission",
|
|
36
|
-
* });
|
|
37
|
-
* ```
|
|
38
|
-
*/
|
|
39
|
-
declare function tx<C extends Contract, F extends Fn<C>>(input: {
|
|
40
|
-
hash: Hash;
|
|
41
|
-
from: Address;
|
|
42
|
-
contract: C;
|
|
43
|
-
fn: F;
|
|
44
|
-
chainId?: number;
|
|
45
|
-
value?: bigint;
|
|
46
|
-
nonce?: number;
|
|
47
|
-
to?: Address;
|
|
48
|
-
}): TransactionResult<C, F>;
|
|
49
|
-
/**
|
|
50
|
-
* Creates a transaction result with literal type inference.
|
|
51
|
-
* Use this when you need TypeScript to preserve exact string literals.
|
|
52
|
-
*
|
|
53
|
-
* @param input - Transaction details
|
|
54
|
-
* @param input.hash - Transaction hash
|
|
55
|
-
* @param input.from - Transaction sender address
|
|
56
|
-
* @param input.contract - Contract name
|
|
57
|
-
* @param input.fn - Function name
|
|
58
|
-
* @param input.chainId - Optional chain ID
|
|
59
|
-
* @param input.value - Optional transaction value
|
|
60
|
-
* @param input.nonce - Optional nonce
|
|
61
|
-
* @param input.to - Optional recipient address
|
|
62
|
-
* @returns Typed TransactionResult
|
|
63
|
-
*
|
|
64
|
-
* @example
|
|
65
|
-
* ```typescript
|
|
66
|
-
* const transaction = txLiteral({
|
|
67
|
-
* hash: '0x...',
|
|
68
|
-
* from: '0x...',
|
|
69
|
-
* contract: "DataPortabilityPermissions",
|
|
70
|
-
* fn: "revokePermission",
|
|
71
|
-
* });
|
|
72
|
-
* // TypeScript knows exactly: DataPortabilityPermissions + revokePermission
|
|
73
|
-
* ```
|
|
74
|
-
*/
|
|
75
|
-
declare function txLiteral<const C extends Contract, const F extends Fn<C>>(input: {
|
|
76
|
-
hash: Hash;
|
|
77
|
-
from: Address;
|
|
78
|
-
contract: C;
|
|
79
|
-
fn: F;
|
|
80
|
-
chainId?: number;
|
|
81
|
-
value?: bigint;
|
|
82
|
-
nonce?: number;
|
|
83
|
-
to?: Address;
|
|
84
|
-
}): TransactionResult<C, F>;
|
|
85
|
-
|
|
86
|
-
export { tx, txLiteral };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { TypedDataDefinition } from 'viem';
|
|
2
|
-
import { GenericTypedData } from '../types/permissions.cjs';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Converts a GenericTypedData object to a Viem-compatible TypedDataDefinition.
|
|
6
|
-
* This function ensures type safety when passing typed data to viem's signTypedData method.
|
|
7
|
-
*
|
|
8
|
-
* @param typedData - The typed data object to convert
|
|
9
|
-
* @returns A properly typed TypedDataDefinition for use with viem
|
|
10
|
-
*/
|
|
11
|
-
declare function toViemTypedDataDefinition(typedData: GenericTypedData): TypedDataDefinition;
|
|
12
|
-
|
|
13
|
-
export { toViemTypedDataDefinition };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Universal URL resolver for the Vana SDK
|
|
3
|
-
*
|
|
4
|
-
* Handles fetching data from various protocols (IPFS, HTTP, Arweave, etc.)
|
|
5
|
-
* in a consistent, reliable way.
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* Error thrown when URL resolution fails
|
|
9
|
-
*/
|
|
10
|
-
declare class UrlResolutionError extends Error {
|
|
11
|
-
readonly url: string;
|
|
12
|
-
readonly cause?: Error | undefined;
|
|
13
|
-
constructor(message: string, url: string, cause?: Error | undefined);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* Fetches and parses JSON data from any supported URL protocol
|
|
17
|
-
*
|
|
18
|
-
* @param url - The URL to fetch from (supports ipfs://, https://, http://, ar://)
|
|
19
|
-
* @param downloadRelayer - Optional download relayer for CORS bypass
|
|
20
|
-
* @param downloadRelayer.proxyDownload - Function to proxy downloads through application server
|
|
21
|
-
* @returns Promise resolving to the parsed JSON data
|
|
22
|
-
* @throws {UrlResolutionError} When the URL cannot be resolved or parsed
|
|
23
|
-
*
|
|
24
|
-
* @example
|
|
25
|
-
* ```typescript
|
|
26
|
-
* // Fetch from IPFS
|
|
27
|
-
* const data = await fetchFromUrl("ipfs://QmXxx...");
|
|
28
|
-
*
|
|
29
|
-
* // Fetch from HTTPS
|
|
30
|
-
* const data = await fetchFromUrl("https://example.com/data.json");
|
|
31
|
-
*
|
|
32
|
-
* // Handles protocol conversion internally
|
|
33
|
-
* const schema = await fetchFromUrl(schemaDefinitionUrl);
|
|
34
|
-
* ```
|
|
35
|
-
*/
|
|
36
|
-
declare function fetchFromUrl(url: string, downloadRelayer?: {
|
|
37
|
-
proxyDownload: (url: string) => Promise<Blob>;
|
|
38
|
-
}): Promise<unknown>;
|
|
39
|
-
|
|
40
|
-
export { UrlResolutionError, fetchFromUrl };
|