@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
package/dist/types/relayer.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { Hash } from
|
|
2
|
-
import { GrantFile, PermissionGrantTypedData } from
|
|
3
|
-
|
|
1
|
+
import type { Hash } from "viem";
|
|
2
|
+
import type { GrantFile, PermissionGrantTypedData } from "./permissions";
|
|
4
3
|
/**
|
|
5
4
|
* Response from the relayer service for grant file storage
|
|
6
5
|
*
|
|
7
6
|
* @category Advanced
|
|
8
7
|
*/
|
|
9
|
-
interface RelayerStorageResponse {
|
|
8
|
+
export interface RelayerStorageResponse {
|
|
10
9
|
/** The IPFS URL where the grant file is stored */
|
|
11
10
|
grantUrl: string;
|
|
12
11
|
/** Success status */
|
|
@@ -28,7 +27,7 @@ interface RelayerStorageResponse {
|
|
|
28
27
|
*
|
|
29
28
|
* @category Advanced
|
|
30
29
|
*/
|
|
31
|
-
interface RelayerTransactionResponse {
|
|
30
|
+
export interface RelayerTransactionResponse {
|
|
32
31
|
/** The transaction hash of the submitted transaction */
|
|
33
32
|
transactionHash: Hash;
|
|
34
33
|
/** Success status */
|
|
@@ -52,7 +51,7 @@ interface RelayerTransactionResponse {
|
|
|
52
51
|
*
|
|
53
52
|
* @category Advanced
|
|
54
53
|
*/
|
|
55
|
-
interface RelayerStoreParams {
|
|
54
|
+
export interface RelayerStoreParams {
|
|
56
55
|
/** The grant file to store */
|
|
57
56
|
grantFile: GrantFile;
|
|
58
57
|
/** Optional storage options */
|
|
@@ -70,7 +69,7 @@ interface RelayerStoreParams {
|
|
|
70
69
|
*
|
|
71
70
|
* @category Advanced
|
|
72
71
|
*/
|
|
73
|
-
interface RelayerSubmitParams {
|
|
72
|
+
export interface RelayerSubmitParams {
|
|
74
73
|
/** The signed typed data */
|
|
75
74
|
typedData: PermissionGrantTypedData;
|
|
76
75
|
/** The signature */
|
|
@@ -90,7 +89,7 @@ interface RelayerSubmitParams {
|
|
|
90
89
|
*
|
|
91
90
|
* @category Advanced
|
|
92
91
|
*/
|
|
93
|
-
interface RelayerStatus {
|
|
92
|
+
export interface RelayerStatus {
|
|
94
93
|
/** Whether the relayer is online */
|
|
95
94
|
online: boolean;
|
|
96
95
|
/** Service version */
|
|
@@ -123,7 +122,7 @@ interface RelayerStatus {
|
|
|
123
122
|
*
|
|
124
123
|
* @category Advanced
|
|
125
124
|
*/
|
|
126
|
-
interface RelayerConfig {
|
|
125
|
+
export interface RelayerConfig {
|
|
127
126
|
/** Relayer service URL */
|
|
128
127
|
url: string;
|
|
129
128
|
/** API key for authentication */
|
|
@@ -145,7 +144,7 @@ interface RelayerConfig {
|
|
|
145
144
|
*
|
|
146
145
|
* @category Advanced
|
|
147
146
|
*/
|
|
148
|
-
interface RelayerRequestOptions {
|
|
147
|
+
export interface RelayerRequestOptions {
|
|
149
148
|
/** Request timeout in milliseconds */
|
|
150
149
|
timeout?: number;
|
|
151
150
|
/** Whether to retry on failure */
|
|
@@ -160,7 +159,7 @@ interface RelayerRequestOptions {
|
|
|
160
159
|
*
|
|
161
160
|
* @category Advanced
|
|
162
161
|
*/
|
|
163
|
-
interface RelayerErrorResponse {
|
|
162
|
+
export interface RelayerErrorResponse {
|
|
164
163
|
/** Error code */
|
|
165
164
|
code: string;
|
|
166
165
|
/** Error message */
|
|
@@ -177,7 +176,7 @@ interface RelayerErrorResponse {
|
|
|
177
176
|
*
|
|
178
177
|
* @category Advanced
|
|
179
178
|
*/
|
|
180
|
-
interface RelayerQueueInfo {
|
|
179
|
+
export interface RelayerQueueInfo {
|
|
181
180
|
/** Current queue size */
|
|
182
181
|
size: number;
|
|
183
182
|
/** Estimated processing time in seconds */
|
|
@@ -199,7 +198,7 @@ interface RelayerQueueInfo {
|
|
|
199
198
|
*
|
|
200
199
|
* @category Advanced
|
|
201
200
|
*/
|
|
202
|
-
interface RelayerTransactionStatus {
|
|
201
|
+
export interface RelayerTransactionStatus {
|
|
203
202
|
/** Transaction hash */
|
|
204
203
|
transactionHash: Hash;
|
|
205
204
|
/** Current status */
|
|
@@ -225,7 +224,7 @@ interface RelayerTransactionStatus {
|
|
|
225
224
|
*
|
|
226
225
|
* @category Advanced
|
|
227
226
|
*/
|
|
228
|
-
interface RelayerMetrics {
|
|
227
|
+
export interface RelayerMetrics {
|
|
229
228
|
/** Total transactions processed */
|
|
230
229
|
totalTransactions: number;
|
|
231
230
|
/** Successful transactions */
|
|
@@ -253,7 +252,7 @@ interface RelayerMetrics {
|
|
|
253
252
|
*
|
|
254
253
|
* @category Advanced
|
|
255
254
|
*/
|
|
256
|
-
interface RelayerWebhookConfig {
|
|
255
|
+
export interface RelayerWebhookConfig {
|
|
257
256
|
/** Webhook URL */
|
|
258
257
|
url: string;
|
|
259
258
|
/** Events to subscribe to */
|
|
@@ -268,7 +267,7 @@ interface RelayerWebhookConfig {
|
|
|
268
267
|
*
|
|
269
268
|
* @category Advanced
|
|
270
269
|
*/
|
|
271
|
-
interface RelayerWebhookPayload {
|
|
270
|
+
export interface RelayerWebhookPayload {
|
|
272
271
|
/** Event type */
|
|
273
272
|
event: string;
|
|
274
273
|
/** Event data */
|
|
@@ -280,5 +279,3 @@ interface RelayerWebhookPayload {
|
|
|
280
279
|
/** Signature for verification */
|
|
281
280
|
signature: string;
|
|
282
281
|
}
|
|
283
|
-
|
|
284
|
-
export type { RelayerConfig, RelayerErrorResponse, RelayerMetrics, RelayerQueueInfo, RelayerRequestOptions, RelayerStatus, RelayerStorageResponse, RelayerStoreParams, RelayerSubmitParams, RelayerTransactionResponse, RelayerTransactionStatus, RelayerWebhookConfig, RelayerWebhookPayload };
|
package/dist/types/storage.d.ts
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
* }
|
|
33
33
|
* ```
|
|
34
34
|
*/
|
|
35
|
-
interface StorageProvider {
|
|
35
|
+
export interface StorageProvider {
|
|
36
36
|
/**
|
|
37
37
|
* Upload a file to the storage provider
|
|
38
38
|
*
|
|
@@ -69,7 +69,7 @@ interface StorageProvider {
|
|
|
69
69
|
*/
|
|
70
70
|
getConfig(): StorageProviderConfig;
|
|
71
71
|
}
|
|
72
|
-
interface StorageUploadResult {
|
|
72
|
+
export interface StorageUploadResult {
|
|
73
73
|
/** Public URL to access the file */
|
|
74
74
|
url: string;
|
|
75
75
|
/** File size in bytes */
|
|
@@ -79,7 +79,7 @@ interface StorageUploadResult {
|
|
|
79
79
|
/** Provider-specific metadata */
|
|
80
80
|
metadata?: Record<string, unknown>;
|
|
81
81
|
}
|
|
82
|
-
interface StorageFile {
|
|
82
|
+
export interface StorageFile {
|
|
83
83
|
/** File identifier */
|
|
84
84
|
id: string;
|
|
85
85
|
/** File name */
|
|
@@ -95,7 +95,7 @@ interface StorageFile {
|
|
|
95
95
|
/** Provider-specific metadata */
|
|
96
96
|
metadata?: Record<string, unknown>;
|
|
97
97
|
}
|
|
98
|
-
interface StorageListOptions {
|
|
98
|
+
export interface StorageListOptions {
|
|
99
99
|
/** Maximum number of files to return */
|
|
100
100
|
limit?: number;
|
|
101
101
|
/** Pagination cursor/offset */
|
|
@@ -105,7 +105,7 @@ interface StorageListOptions {
|
|
|
105
105
|
/** Filter by content type */
|
|
106
106
|
contentType?: string;
|
|
107
107
|
}
|
|
108
|
-
interface StorageProviderConfig {
|
|
108
|
+
export interface StorageProviderConfig {
|
|
109
109
|
/** Provider name */
|
|
110
110
|
name: string;
|
|
111
111
|
/** Provider type */
|
|
@@ -120,12 +120,10 @@ interface StorageProviderConfig {
|
|
|
120
120
|
delete: boolean;
|
|
121
121
|
};
|
|
122
122
|
}
|
|
123
|
-
declare class StorageError extends Error {
|
|
123
|
+
export declare class StorageError extends Error {
|
|
124
124
|
readonly code: string;
|
|
125
125
|
readonly provider: string;
|
|
126
126
|
constructor(message: string, code: string, provider: string, options?: {
|
|
127
127
|
cause?: Error;
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
|
-
|
|
131
|
-
export { StorageError, type StorageFile, type StorageListOptions, type StorageProvider, type StorageProviderConfig, type StorageUploadResult };
|
package/dist/types/storage.js
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
|
-
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
1
|
class StorageError extends Error {
|
|
2
|
+
code;
|
|
3
|
+
provider;
|
|
5
4
|
// The 'cause' property is now inherited from the base Error class
|
|
6
5
|
constructor(message, code, provider, options) {
|
|
7
6
|
super(message, options);
|
|
8
|
-
__publicField(this, "code");
|
|
9
|
-
__publicField(this, "provider");
|
|
10
7
|
this.name = "StorageError";
|
|
11
8
|
this.code = code;
|
|
12
9
|
this.provider = provider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/types/storage.ts"],"sourcesContent":["/**\n * Interface for storage providers that handle file upload, download, and management operations.\n *\n * Storage providers abstract different storage backends (IPFS, Google Drive, Pinata, etc.)\n * behind a common interface. The SDK uses these providers to store encrypted user data\n * and permission grants in a decentralized manner.\n *\n * @category Storage\n * @example\n * ```typescript\n * // Implement a custom storage provider\n * class MyStorageProvider implements StorageProvider {\n * async upload(file: Blob, filename?: string): Promise<StorageUploadResult> {\n * // Custom upload logic\n * return { url: 'https://my-storage.com/file.dat', size: file.size };\n * }\n *\n * async download(url: string): Promise<Blob> {\n * // Custom download logic\n * const response = await fetch(url);\n * return response.blob();\n * }\n *\n * async list(options?: StorageListOptions): Promise<StorageFile[]> {\n * // Return list of files\n * return [];\n * }\n *\n * async delete(url: string): Promise<void> {\n * // Delete file implementation\n * }\n * }\n * ```\n */\nexport interface StorageProvider {\n /**\n * Upload a file to the storage provider\n *\n * @param file - The file to upload\n * @param filename - Optional custom filename\n * @returns Promise with storage URL and metadata\n */\n upload(file: Blob, filename?: string): Promise<StorageUploadResult>;\n\n /**\n * Download a file from the storage provider\n *\n * @param url - The storage URL\n * @returns Promise with file blob\n */\n download(url: string): Promise<Blob>;\n\n /**\n * List files from the storage provider\n *\n * @param options - Optional filtering and pagination\n * @returns Promise with file list\n */\n list(options?: StorageListOptions): Promise<StorageFile[]>;\n\n /**\n * Delete a file from the storage provider\n *\n * @param url - The storage URL\n * @returns Promise with success status\n */\n delete(url: string): Promise<boolean>;\n\n /**\n * Get provider-specific configuration\n *\n * @returns Provider configuration object\n */\n getConfig(): StorageProviderConfig;\n}\n\nexport interface StorageUploadResult {\n /** Public URL to access the file */\n url: string;\n /** File size in bytes */\n size: number;\n /** Content type/MIME type */\n contentType: string;\n /** Provider-specific metadata */\n metadata?: Record<string, unknown>;\n}\n\nexport interface StorageFile {\n /** File identifier */\n id: string;\n /** File name */\n name: string;\n /** Public URL to access the file */\n url: string;\n /** File size in bytes */\n size: number;\n /** Content type/MIME type */\n contentType: string;\n /** Upload timestamp */\n createdAt: Date;\n /** Provider-specific metadata */\n metadata?: Record<string, unknown>;\n}\n\nexport interface StorageListOptions {\n /** Maximum number of files to return */\n limit?: number;\n /** Pagination cursor/offset */\n offset?: string | number;\n /** Filter by file name pattern */\n namePattern?: string;\n /** Filter by content type */\n contentType?: string;\n}\n\nexport interface StorageProviderConfig {\n /** Provider name */\n name: string;\n /** Provider type */\n type: string;\n /** Whether authentication is required */\n requiresAuth: boolean;\n /** Supported features */\n features: {\n upload: boolean;\n download: boolean;\n list: boolean;\n delete: boolean;\n };\n}\n\nexport class StorageError extends Error {\n public readonly code: string;\n public readonly provider: string;\n // The 'cause' property is now inherited from the base Error class\n\n constructor(\n message: string,\n code: string,\n provider: string,\n options?: { cause?: Error },\n ) {\n // Pass the options object with 'cause' to the super constructor\n super(message, options);\n this.name = \"StorageError\";\n this.code = code;\n this.provider = provider;\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/types/storage.ts"],"sourcesContent":["/**\n * Interface for storage providers that handle file upload, download, and management operations.\n *\n * Storage providers abstract different storage backends (IPFS, Google Drive, Pinata, etc.)\n * behind a common interface. The SDK uses these providers to store encrypted user data\n * and permission grants in a decentralized manner.\n *\n * @category Storage\n * @example\n * ```typescript\n * // Implement a custom storage provider\n * class MyStorageProvider implements StorageProvider {\n * async upload(file: Blob, filename?: string): Promise<StorageUploadResult> {\n * // Custom upload logic\n * return { url: 'https://my-storage.com/file.dat', size: file.size };\n * }\n *\n * async download(url: string): Promise<Blob> {\n * // Custom download logic\n * const response = await fetch(url);\n * return response.blob();\n * }\n *\n * async list(options?: StorageListOptions): Promise<StorageFile[]> {\n * // Return list of files\n * return [];\n * }\n *\n * async delete(url: string): Promise<void> {\n * // Delete file implementation\n * }\n * }\n * ```\n */\nexport interface StorageProvider {\n /**\n * Upload a file to the storage provider\n *\n * @param file - The file to upload\n * @param filename - Optional custom filename\n * @returns Promise with storage URL and metadata\n */\n upload(file: Blob, filename?: string): Promise<StorageUploadResult>;\n\n /**\n * Download a file from the storage provider\n *\n * @param url - The storage URL\n * @returns Promise with file blob\n */\n download(url: string): Promise<Blob>;\n\n /**\n * List files from the storage provider\n *\n * @param options - Optional filtering and pagination\n * @returns Promise with file list\n */\n list(options?: StorageListOptions): Promise<StorageFile[]>;\n\n /**\n * Delete a file from the storage provider\n *\n * @param url - The storage URL\n * @returns Promise with success status\n */\n delete(url: string): Promise<boolean>;\n\n /**\n * Get provider-specific configuration\n *\n * @returns Provider configuration object\n */\n getConfig(): StorageProviderConfig;\n}\n\nexport interface StorageUploadResult {\n /** Public URL to access the file */\n url: string;\n /** File size in bytes */\n size: number;\n /** Content type/MIME type */\n contentType: string;\n /** Provider-specific metadata */\n metadata?: Record<string, unknown>;\n}\n\nexport interface StorageFile {\n /** File identifier */\n id: string;\n /** File name */\n name: string;\n /** Public URL to access the file */\n url: string;\n /** File size in bytes */\n size: number;\n /** Content type/MIME type */\n contentType: string;\n /** Upload timestamp */\n createdAt: Date;\n /** Provider-specific metadata */\n metadata?: Record<string, unknown>;\n}\n\nexport interface StorageListOptions {\n /** Maximum number of files to return */\n limit?: number;\n /** Pagination cursor/offset */\n offset?: string | number;\n /** Filter by file name pattern */\n namePattern?: string;\n /** Filter by content type */\n contentType?: string;\n}\n\nexport interface StorageProviderConfig {\n /** Provider name */\n name: string;\n /** Provider type */\n type: string;\n /** Whether authentication is required */\n requiresAuth: boolean;\n /** Supported features */\n features: {\n upload: boolean;\n download: boolean;\n list: boolean;\n delete: boolean;\n };\n}\n\nexport class StorageError extends Error {\n public readonly code: string;\n public readonly provider: string;\n // The 'cause' property is now inherited from the base Error class\n\n constructor(\n message: string,\n code: string,\n provider: string,\n options?: { cause?: Error },\n ) {\n // Pass the options object with 'cause' to the super constructor\n super(message, options);\n this.name = \"StorageError\";\n this.code = code;\n this.provider = provider;\n }\n}\n"],"mappings":"AAmIO,MAAM,qBAAqB,MAAM;AAAA,EACtB;AAAA,EACA;AAAA;AAAA,EAGhB,YACE,SACA,MACA,UACA,SACA;AAEA,UAAM,SAAS,OAAO;AACtB,SAAK,OAAO;AACZ,SAAK,OAAO;AACZ,SAAK,WAAW;AAAA,EAClB;AACF;","names":[]}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { Address } from
|
|
2
|
-
|
|
1
|
+
import type { Address } from "viem";
|
|
3
2
|
interface BaseTransactionResult {
|
|
4
3
|
transactionHash: `0x${string}`;
|
|
5
4
|
blockNumber: bigint;
|
|
@@ -14,7 +13,7 @@ interface BaseTransactionResult {
|
|
|
14
13
|
* Result of a successful permission grant operation.
|
|
15
14
|
* Contains data from the PermissionAdded blockchain event.
|
|
16
15
|
*/
|
|
17
|
-
interface PermissionGrantResult extends BaseTransactionResult {
|
|
16
|
+
export interface PermissionGrantResult extends BaseTransactionResult {
|
|
18
17
|
/** Unique permission ID for this grant */
|
|
19
18
|
permissionId: bigint;
|
|
20
19
|
/** Address of the user who granted the permission */
|
|
@@ -28,7 +27,7 @@ interface PermissionGrantResult extends BaseTransactionResult {
|
|
|
28
27
|
* Result of a successful permission revocation operation.
|
|
29
28
|
* Contains data from the PermissionRevoked blockchain event.
|
|
30
29
|
*/
|
|
31
|
-
interface PermissionRevokeResult extends BaseTransactionResult {
|
|
30
|
+
export interface PermissionRevokeResult extends BaseTransactionResult {
|
|
32
31
|
/** ID of the permission that was revoked */
|
|
33
32
|
permissionId: bigint;
|
|
34
33
|
}
|
|
@@ -36,7 +35,7 @@ interface PermissionRevokeResult extends BaseTransactionResult {
|
|
|
36
35
|
* Result of a successful server trust operation.
|
|
37
36
|
* Contains data from the ServerTrusted blockchain event.
|
|
38
37
|
*/
|
|
39
|
-
interface ServerTrustResult extends BaseTransactionResult {
|
|
38
|
+
export interface ServerTrustResult extends BaseTransactionResult {
|
|
40
39
|
/** Address of the user who trusted the server (from event) */
|
|
41
40
|
user: Address;
|
|
42
41
|
/** Numeric ID of the trusted server (from event) */
|
|
@@ -50,7 +49,7 @@ interface ServerTrustResult extends BaseTransactionResult {
|
|
|
50
49
|
* Result of a successful server untrust operation.
|
|
51
50
|
* Contains data from the ServerUntrusted blockchain event.
|
|
52
51
|
*/
|
|
53
|
-
interface ServerUntrustResult extends BaseTransactionResult {
|
|
52
|
+
export interface ServerUntrustResult extends BaseTransactionResult {
|
|
54
53
|
/** Address of the user who untrusted the server */
|
|
55
54
|
user: Address;
|
|
56
55
|
/** Address/ID of the untrusted server */
|
|
@@ -60,7 +59,7 @@ interface ServerUntrustResult extends BaseTransactionResult {
|
|
|
60
59
|
* Result of a successful server registration operation.
|
|
61
60
|
* Contains data from the ServerRegistered blockchain event.
|
|
62
61
|
*/
|
|
63
|
-
interface ServerRegisterResult extends BaseTransactionResult {
|
|
62
|
+
export interface ServerRegisterResult extends BaseTransactionResult {
|
|
64
63
|
/** Unique server ID assigned by the registry */
|
|
65
64
|
serverId: bigint;
|
|
66
65
|
/** URL of the registered server */
|
|
@@ -72,7 +71,7 @@ interface ServerRegisterResult extends BaseTransactionResult {
|
|
|
72
71
|
* Result of a successful server update operation.
|
|
73
72
|
* Contains data from the ServerUpdated blockchain event.
|
|
74
73
|
*/
|
|
75
|
-
interface ServerUpdateResult extends BaseTransactionResult {
|
|
74
|
+
export interface ServerUpdateResult extends BaseTransactionResult {
|
|
76
75
|
/** ID of the server that was updated */
|
|
77
76
|
serverId: bigint;
|
|
78
77
|
/** New URL of the server */
|
|
@@ -82,7 +81,7 @@ interface ServerUpdateResult extends BaseTransactionResult {
|
|
|
82
81
|
* Result of a successful grantee registration operation.
|
|
83
82
|
* Contains data from the GranteeRegistered blockchain event.
|
|
84
83
|
*/
|
|
85
|
-
interface GranteeRegisterResult extends BaseTransactionResult {
|
|
84
|
+
export interface GranteeRegisterResult extends BaseTransactionResult {
|
|
86
85
|
/** Unique grantee ID assigned by the registry */
|
|
87
86
|
granteeId: bigint;
|
|
88
87
|
/** Address of the registered grantee */
|
|
@@ -94,7 +93,7 @@ interface GranteeRegisterResult extends BaseTransactionResult {
|
|
|
94
93
|
* Result of a successful file addition operation.
|
|
95
94
|
* Contains data from the FileAddedV2 blockchain event.
|
|
96
95
|
*/
|
|
97
|
-
interface FileAddedResult extends BaseTransactionResult {
|
|
96
|
+
export interface FileAddedResult extends BaseTransactionResult {
|
|
98
97
|
/** Unique file ID assigned by the registry */
|
|
99
98
|
fileId: bigint;
|
|
100
99
|
/** Address of the file owner */
|
|
@@ -108,7 +107,7 @@ interface FileAddedResult extends BaseTransactionResult {
|
|
|
108
107
|
* Result of a successful schema addition operation.
|
|
109
108
|
* Contains data from the SchemaAdded blockchain event.
|
|
110
109
|
*/
|
|
111
|
-
interface SchemaAddedResult extends BaseTransactionResult {
|
|
110
|
+
export interface SchemaAddedResult extends BaseTransactionResult {
|
|
112
111
|
/** Unique schema ID assigned by the registry */
|
|
113
112
|
schemaId: bigint;
|
|
114
113
|
/** Human-readable name of the schema */
|
|
@@ -122,7 +121,7 @@ interface SchemaAddedResult extends BaseTransactionResult {
|
|
|
122
121
|
* Result of a successful refiner addition operation.
|
|
123
122
|
* Contains data from the RefinerAdded blockchain event.
|
|
124
123
|
*/
|
|
125
|
-
interface RefinerAddedResult extends BaseTransactionResult {
|
|
124
|
+
export interface RefinerAddedResult extends BaseTransactionResult {
|
|
126
125
|
/** Unique refiner ID assigned by the registry */
|
|
127
126
|
refinerId: bigint;
|
|
128
127
|
/** DLP ID this refiner belongs to */
|
|
@@ -140,7 +139,7 @@ interface RefinerAddedResult extends BaseTransactionResult {
|
|
|
140
139
|
* Result of a successful schema ID update operation.
|
|
141
140
|
* Contains data from the RefinerSchemaUpdated blockchain event.
|
|
142
141
|
*/
|
|
143
|
-
interface SchemaUpdateResult extends BaseTransactionResult {
|
|
142
|
+
export interface SchemaUpdateResult extends BaseTransactionResult {
|
|
144
143
|
/** ID of the refiner that was updated */
|
|
145
144
|
refinerId: bigint;
|
|
146
145
|
/** New schema ID */
|
|
@@ -152,7 +151,7 @@ interface SchemaUpdateResult extends BaseTransactionResult {
|
|
|
152
151
|
* Result of a successful file permission addition operation.
|
|
153
152
|
* Contains data from the FilePermissionAdded blockchain event.
|
|
154
153
|
*/
|
|
155
|
-
interface FilePermissionResult extends BaseTransactionResult {
|
|
154
|
+
export interface FilePermissionResult extends BaseTransactionResult {
|
|
156
155
|
/** File ID the permission was added to */
|
|
157
156
|
fileId: bigint;
|
|
158
157
|
/** Account that was granted permission */
|
|
@@ -164,12 +163,12 @@ interface FilePermissionResult extends BaseTransactionResult {
|
|
|
164
163
|
* Union type of all possible transaction result types.
|
|
165
164
|
* Useful for generic functions that handle multiple operation types.
|
|
166
165
|
*/
|
|
167
|
-
type AnyTransactionResult = PermissionGrantResult | PermissionRevokeResult | ServerTrustResult | ServerUntrustResult | ServerRegisterResult | ServerUpdateResult | GranteeRegisterResult | FileAddedResult | SchemaAddedResult | RefinerAddedResult | SchemaUpdateResult | FilePermissionResult;
|
|
166
|
+
export type AnyTransactionResult = PermissionGrantResult | PermissionRevokeResult | ServerTrustResult | ServerUntrustResult | ServerRegisterResult | ServerUpdateResult | GranteeRegisterResult | FileAddedResult | SchemaAddedResult | RefinerAddedResult | SchemaUpdateResult | FilePermissionResult;
|
|
168
167
|
/**
|
|
169
168
|
* Maps transaction operation names to their result types.
|
|
170
169
|
* Used for type inference in generic transaction parsing functions.
|
|
171
170
|
*/
|
|
172
|
-
interface TransactionResultMap {
|
|
171
|
+
export interface TransactionResultMap {
|
|
173
172
|
grant: PermissionGrantResult;
|
|
174
173
|
revoke: PermissionRevokeResult;
|
|
175
174
|
revokePermission: PermissionRevokeResult;
|
|
@@ -191,5 +190,4 @@ interface TransactionResultMap {
|
|
|
191
190
|
updateRefinement: SchemaUpdateResult;
|
|
192
191
|
addFilePermission: FilePermissionResult;
|
|
193
192
|
}
|
|
194
|
-
|
|
195
|
-
export type { AnyTransactionResult, FileAddedResult, FilePermissionResult, GranteeRegisterResult, PermissionGrantResult, PermissionRevokeResult, RefinerAddedResult, SchemaAddedResult, SchemaUpdateResult, ServerRegisterResult, ServerTrustResult, ServerUntrustResult, ServerUpdateResult, TransactionResultMap };
|
|
193
|
+
export {};
|
package/dist/types/utils.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import type { Address, Hash } from "viem";
|
|
3
2
|
/**
|
|
4
3
|
* Makes all properties in T optional except for those in K
|
|
5
4
|
*
|
|
@@ -28,7 +27,7 @@ import { Hash, Address } from 'viem';
|
|
|
28
27
|
* ```
|
|
29
28
|
* @category Reference
|
|
30
29
|
*/
|
|
31
|
-
type PartialExcept<T, K extends keyof T> = Partial<T> & Pick<T, K>;
|
|
30
|
+
export type PartialExcept<T, K extends keyof T> = Partial<T> & Pick<T, K>;
|
|
32
31
|
/**
|
|
33
32
|
* Makes all properties in T required except for those in K
|
|
34
33
|
*
|
|
@@ -58,7 +57,7 @@ type PartialExcept<T, K extends keyof T> = Partial<T> & Pick<T, K>;
|
|
|
58
57
|
* ```
|
|
59
58
|
* @category Reference
|
|
60
59
|
*/
|
|
61
|
-
type RequiredExcept<T, K extends keyof T> = Required<T> & Partial<Pick<T, K>>;
|
|
60
|
+
export type RequiredExcept<T, K extends keyof T> = Required<T> & Partial<Pick<T, K>>;
|
|
62
61
|
/**
|
|
63
62
|
* Extracts the return type of a promise
|
|
64
63
|
*
|
|
@@ -87,7 +86,7 @@ type RequiredExcept<T, K extends keyof T> = Required<T> & Partial<Pick<T, K>>;
|
|
|
87
86
|
* ```
|
|
88
87
|
* @category Reference
|
|
89
88
|
*/
|
|
90
|
-
type Awaited<T> = T extends Promise<infer U> ? U : T;
|
|
89
|
+
export type Awaited<T> = T extends Promise<infer U> ? U : T;
|
|
91
90
|
/**
|
|
92
91
|
* Creates a type that accepts either T or a Promise<T>
|
|
93
92
|
*
|
|
@@ -117,7 +116,7 @@ type Awaited<T> = T extends Promise<infer U> ? U : T;
|
|
|
117
116
|
* ```
|
|
118
117
|
* @category Reference
|
|
119
118
|
*/
|
|
120
|
-
type MaybePromise<T> = T | Promise<T>;
|
|
119
|
+
export type MaybePromise<T> = T | Promise<T>;
|
|
121
120
|
/**
|
|
122
121
|
* Creates a type that accepts either T or an array of T
|
|
123
122
|
*
|
|
@@ -146,7 +145,7 @@ type MaybePromise<T> = T | Promise<T>;
|
|
|
146
145
|
* ```
|
|
147
146
|
* @category Reference
|
|
148
147
|
*/
|
|
149
|
-
type MaybeArray<T> = T | T[];
|
|
148
|
+
export type MaybeArray<T> = T | T[];
|
|
150
149
|
/**
|
|
151
150
|
* Pagination parameters for controlling result set size and navigation.
|
|
152
151
|
*
|
|
@@ -168,7 +167,7 @@ type MaybeArray<T> = T | T[];
|
|
|
168
167
|
* });
|
|
169
168
|
* ```
|
|
170
169
|
*/
|
|
171
|
-
interface PaginationParams {
|
|
170
|
+
export interface PaginationParams {
|
|
172
171
|
/** Maximum number of items to return */
|
|
173
172
|
limit?: number;
|
|
174
173
|
/** Number of items to skip */
|
|
@@ -208,7 +207,7 @@ interface PaginationParams {
|
|
|
208
207
|
* ```
|
|
209
208
|
* @category Reference
|
|
210
209
|
*/
|
|
211
|
-
interface PaginationResult<T> {
|
|
210
|
+
export interface PaginationResult<T> {
|
|
212
211
|
/** Array of items */
|
|
213
212
|
items: T[];
|
|
214
213
|
/** Total number of items available */
|
|
@@ -250,7 +249,7 @@ interface PaginationResult<T> {
|
|
|
250
249
|
* ```
|
|
251
250
|
* @category Reference
|
|
252
251
|
*/
|
|
253
|
-
interface BlockRange {
|
|
252
|
+
export interface BlockRange {
|
|
254
253
|
/** Starting block number */
|
|
255
254
|
fromBlock?: bigint;
|
|
256
255
|
/** Ending block number */
|
|
@@ -287,7 +286,7 @@ interface BlockRange {
|
|
|
287
286
|
* ```
|
|
288
287
|
* @category Reference
|
|
289
288
|
*/
|
|
290
|
-
interface TransactionOptions {
|
|
289
|
+
export interface TransactionOptions {
|
|
291
290
|
/** Gas limit */
|
|
292
291
|
gasLimit?: bigint;
|
|
293
292
|
/** Gas price */
|
|
@@ -335,7 +334,7 @@ interface TransactionOptions {
|
|
|
335
334
|
* ```
|
|
336
335
|
* @category Reference
|
|
337
336
|
*/
|
|
338
|
-
interface TransactionReceipt {
|
|
337
|
+
export interface TransactionReceipt {
|
|
339
338
|
/** Transaction hash */
|
|
340
339
|
transactionHash: Hash;
|
|
341
340
|
/** Block number */
|
|
@@ -397,7 +396,7 @@ interface TransactionReceipt {
|
|
|
397
396
|
* ```
|
|
398
397
|
* @category Reference
|
|
399
398
|
*/
|
|
400
|
-
interface ApiResponse<T> {
|
|
399
|
+
export interface ApiResponse<T> {
|
|
401
400
|
/** Response data */
|
|
402
401
|
data: T;
|
|
403
402
|
/** Success status */
|
|
@@ -444,7 +443,7 @@ interface ApiResponse<T> {
|
|
|
444
443
|
* ```
|
|
445
444
|
* @category Reference
|
|
446
445
|
*/
|
|
447
|
-
interface RetryConfig {
|
|
446
|
+
export interface RetryConfig {
|
|
448
447
|
/** Number of retry attempts */
|
|
449
448
|
attempts: number;
|
|
450
449
|
/** Delay between retries in milliseconds */
|
|
@@ -488,7 +487,7 @@ interface RetryConfig {
|
|
|
488
487
|
* ```
|
|
489
488
|
* @category Reference
|
|
490
489
|
*/
|
|
491
|
-
interface CacheConfig {
|
|
490
|
+
export interface CacheConfig {
|
|
492
491
|
/** Cache TTL in milliseconds */
|
|
493
492
|
ttl: number;
|
|
494
493
|
/** Maximum cache size */
|
|
@@ -544,7 +543,7 @@ interface CacheConfig {
|
|
|
544
543
|
* ```
|
|
545
544
|
* @category Reference
|
|
546
545
|
*/
|
|
547
|
-
interface ValidationResult {
|
|
546
|
+
export interface ValidationResult {
|
|
548
547
|
/** Whether validation passed */
|
|
549
548
|
valid: boolean;
|
|
550
549
|
/** Validation errors */
|
|
@@ -590,7 +589,7 @@ interface ValidationResult {
|
|
|
590
589
|
* ```
|
|
591
590
|
* @category Reference
|
|
592
591
|
*/
|
|
593
|
-
interface StatusInfo {
|
|
592
|
+
export interface StatusInfo {
|
|
594
593
|
/** Whether the service is healthy */
|
|
595
594
|
healthy: boolean;
|
|
596
595
|
/** Status message */
|
|
@@ -631,7 +630,7 @@ interface StatusInfo {
|
|
|
631
630
|
* ```
|
|
632
631
|
* @category Reference
|
|
633
632
|
*/
|
|
634
|
-
interface RateLimitInfo {
|
|
633
|
+
export interface RateLimitInfo {
|
|
635
634
|
/** Current request count */
|
|
636
635
|
requests: number;
|
|
637
636
|
/** Maximum requests allowed */
|
|
@@ -678,7 +677,7 @@ interface RateLimitInfo {
|
|
|
678
677
|
* ```
|
|
679
678
|
* @category Reference
|
|
680
679
|
*/
|
|
681
|
-
interface UploadProgress {
|
|
680
|
+
export interface UploadProgress {
|
|
682
681
|
/** Bytes uploaded */
|
|
683
682
|
loaded: number;
|
|
684
683
|
/** Total bytes to upload */
|
|
@@ -728,7 +727,7 @@ interface UploadProgress {
|
|
|
728
727
|
* ```
|
|
729
728
|
* @category Reference
|
|
730
729
|
*/
|
|
731
|
-
interface NetworkInfo {
|
|
730
|
+
export interface NetworkInfo {
|
|
732
731
|
/** Chain ID */
|
|
733
732
|
chainId: number;
|
|
734
733
|
/** Chain name */
|
|
@@ -778,7 +777,7 @@ interface NetworkInfo {
|
|
|
778
777
|
* ```
|
|
779
778
|
* @category Reference
|
|
780
779
|
*/
|
|
781
|
-
interface GasEstimate {
|
|
780
|
+
export interface GasEstimate {
|
|
782
781
|
/** Gas limit */
|
|
783
782
|
gasLimit: bigint;
|
|
784
783
|
/** Gas price */
|
|
@@ -809,11 +808,9 @@ interface GasEstimate {
|
|
|
809
808
|
* });
|
|
810
809
|
* ```
|
|
811
810
|
*/
|
|
812
|
-
interface TimeRange {
|
|
811
|
+
export interface TimeRange {
|
|
813
812
|
/** Start time (Unix timestamp) */
|
|
814
813
|
from?: number;
|
|
815
814
|
/** End time (Unix timestamp) */
|
|
816
815
|
to?: number;
|
|
817
816
|
}
|
|
818
|
-
|
|
819
|
-
export type { ApiResponse, Awaited, BlockRange, CacheConfig, GasEstimate, MaybeArray, MaybePromise, NetworkInfo, PaginationParams, PaginationResult, PartialExcept, RateLimitInfo, RequiredExcept, RetryConfig, StatusInfo, TimeRange, TransactionOptions, TransactionReceipt, UploadProgress, ValidationResult };
|
package/dist/types.d.ts
CHANGED
|
@@ -1,31 +1,9 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
export { ContractAddresses, ContractDeployment, ContractInfo, ContractMethodParams, ContractMethodReturnType, VanaContractInstance, VanaContractName } from './types/contracts.js';
|
|
4
|
-
export { StorageError, StorageFile, StorageListOptions, StorageProvider, StorageProviderConfig, StorageUploadResult } from './types/storage.js';
|
|
5
|
-
export { AddRefinerParams, AddRefinerResult, AddSchemaParams, AddSchemaResult, BatchUploadParams, BatchUploadResult, CompleteSchema, DeleteFileParams, DeleteFileResult, DownloadFileParams, DownloadFileResult, EncryptedUploadParams, EncryptionInfo, FileAccessPermissions, FileMetadata, FilePermissionParams, FileSharingConfig, GetFileParams, GetUserFilesParams, GetUserTrustedServersParams, LegacyPermissionParams, Refiner, Schema, SchemaMetadata, TrustedServer, UnencryptedUploadParams, UpdateSchemaIdParams, UpdateSchemaIdResult, UploadEncryptedFileResult, UploadFileParams, UploadFileResult, UploadParams, UploadResult } from './types/data.js';
|
|
6
|
-
export { CreateSchemaParams, CreateSchemaResult } from './controllers/schemas.js';
|
|
7
|
-
export { DataSchema, SchemaValidationError, SchemaValidator, fetchAndValidateSchema, validateDataAgainstSchema, validateDataSchemaAgainstMetaSchema } from './utils/schemaValidation.js';
|
|
8
|
-
export { AddAndTrustServerInput, AddAndTrustServerParams, AddAndTrustServerTypedData, BatchServerInfoResult, CheckPermissionParams, GenericTypedData, GetUserPermissionsOptions, GrantFile, GrantedPermission, Grantee, GranteeInfo, GranteeQueryOptions, OnChainPermissionGrant, PaginatedGrantees, PaginatedTrustedServers, Permission, PermissionAnalytics, PermissionCheckResult, PermissionEvent, PermissionGrantDomain, PermissionGrantMessage, PermissionGrantTypedData, PermissionInfo, PermissionInputMessage, PermissionOperation, PermissionQueryResult, PermissionStatus, QueryPermissionsParams, RegisterGranteeInput, RegisterGranteeParams, RegisterGranteeTypedData, RevokePermissionInput, RevokePermissionParams, RevokePermissionTypedData, Server, ServerFilesAndPermissionParams, ServerFilesAndPermissionTypedData, ServerInfo, ServerTrustStatus, SimplifiedPermissionMessage, SpecificTypedData, TrustServerInput, TrustServerParams, TrustServerTypedData, TrustedServerInfo, TrustedServerQueryOptions, TypedDataPrimaryType, UntrustServerInput, UntrustServerParams, UntrustServerTypedData } from './types/permissions.js';
|
|
9
|
-
export { CreateOperationParams, InitPersonalServerParams, PersonalServerIdentity, PostRequestParams } from './types/personal.js';
|
|
10
|
-
export { AuthenticationErrorResponse, BlockchainErrorResponse, ComputeErrorResponse, CreateOperationRequest, CreateOperationResponse, DecryptionErrorResponse, ErrorResponse, FileAccessErrorResponse, GetOperationResponse, GrantValidationErrorResponse, IdentityResponseModel, InternalServerErrorResponse, NotFoundErrorResponse, OperationErrorResponse, PersonalServerModel, ValidationErrorResponse } from './generated/server/server-exports.js';
|
|
11
|
-
export { APIResponse, PinataListResponse, PinataPin, PinataUploadResponse, ReplicateAPIResponse, ReplicateStatus, isAPIResponse, isReplicateAPIResponse, parseReplicateOutput, safeParseJSON } from './types/external-apis.js';
|
|
12
|
-
export { RelayerConfig, RelayerErrorResponse, RelayerMetrics, RelayerQueueInfo, RelayerRequestOptions, RelayerStatus, RelayerStorageResponse, RelayerStoreParams, RelayerSubmitParams, RelayerTransactionResponse, RelayerTransactionStatus, RelayerWebhookConfig, RelayerWebhookPayload } from './types/relayer.js';
|
|
13
|
-
export { ApiResponse, Awaited, BlockRange, CacheConfig, GasEstimate, MaybeArray, MaybePromise, NetworkInfo, PaginationParams, PaginationResult, PartialExcept, RateLimitInfo, RequiredExcept, StatusInfo, TimeRange, TransactionOptions, TransactionReceipt, UploadProgress, ValidationResult } from './types/utils.js';
|
|
14
|
-
export { AllKeys, AsyncResult, Brand, Cache, ConditionalOptional, ContractCall, Controller, ControllerContext, DeepPartial, DeepReadonly, EventFilter, EventLog, Factory, GenericRequest, GenericResponse, Middleware, Nominal, NonNullable, Observable, Observer, OmitByType, OptionalKeys, PickByType, Plugin, PromiseResult, RateLimiterConfig, Repository, RequireKeys, RetryConfig, Service, StateMachine, Transformer, Validator } from './types/generics.js';
|
|
15
|
-
import { Address } from 'viem';
|
|
16
|
-
export { Abi, Account, Address, Chain, GetContractReturnType, Hash, PublicClient, WalletClient } from 'viem';
|
|
17
|
-
export { $defs, components as ServerComponents, $defs as ServerDefs, operations as ServerOperations, paths as ServerPaths, webhooks as ServerWebhooks, components, operations, paths, webhooks } from './generated/server/server.js';
|
|
18
|
-
import './types/transactionResults.js';
|
|
19
|
-
import './types/controller-context.js';
|
|
20
|
-
import './platform/interface.js';
|
|
21
|
-
import './storage/manager.js';
|
|
22
|
-
import './types/operations.js';
|
|
23
|
-
import './generated/event-types.js';
|
|
24
|
-
|
|
1
|
+
export * from "./types/index";
|
|
2
|
+
import type { Address } from "viem";
|
|
25
3
|
/**
|
|
26
4
|
* Represents a user's registered data file.
|
|
27
5
|
*/
|
|
28
|
-
interface UserFile {
|
|
6
|
+
export interface UserFile {
|
|
29
7
|
/** Unique identifier for the file */
|
|
30
8
|
id: number;
|
|
31
9
|
/** URL where the file is stored */
|
|
@@ -38,7 +16,7 @@ interface UserFile {
|
|
|
38
16
|
/**
|
|
39
17
|
* Parameters for the `vana.permissions.grant` method.
|
|
40
18
|
*/
|
|
41
|
-
interface GrantPermissionParams {
|
|
19
|
+
export interface GrantPermissionParams {
|
|
42
20
|
/** The on-chain identity of the application */
|
|
43
21
|
grantee: Address;
|
|
44
22
|
/** The class of computation, e.g., "llm_inference" */
|
|
@@ -50,5 +28,3 @@ interface GrantPermissionParams {
|
|
|
50
28
|
/** Optional pre-stored grant URL to avoid duplicate IPFS storage */
|
|
51
29
|
grantUrl?: string;
|
|
52
30
|
}
|
|
53
|
-
|
|
54
|
-
export type { GrantPermissionParams, UserFile };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -26,7 +26,7 @@ var import_viem = require("viem");
|
|
|
26
26
|
var import_addresses = require("../../config/addresses");
|
|
27
27
|
var import_abi = require("../../generated/abi");
|
|
28
28
|
async function fetchSchemaFromChain(context, schemaId) {
|
|
29
|
-
const chainId = context.walletClient.chain?.id;
|
|
29
|
+
const chainId = context.walletClient?.chain?.id ?? context.publicClient.chain?.id;
|
|
30
30
|
if (!chainId) {
|
|
31
31
|
throw new Error("Chain ID not available");
|
|
32
32
|
}
|
|
@@ -56,7 +56,7 @@ async function fetchSchemaFromChain(context, schemaId) {
|
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
58
|
async function fetchSchemaCountFromChain(context) {
|
|
59
|
-
const chainId = context.walletClient.chain?.id;
|
|
59
|
+
const chainId = context.walletClient?.chain?.id ?? context.publicClient.chain?.id;
|
|
60
60
|
if (!chainId) {
|
|
61
61
|
throw new Error("Chain ID not available");
|
|
62
62
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/utils/blockchain/registry.ts"],"sourcesContent":["import { getContract } from \"viem\";\nimport { PublicClient, WalletClient } from \"viem\";\nimport { getContractAddress } from \"../../config/addresses\";\nimport { getAbi } from \"../../generated/abi\";\nimport { SchemaMetadata } from \"../../types/index\";\n\n/**\n * Shared context for blockchain operations.\n * Only includes the minimal required fields to avoid coupling.\n */\ninterface BlockchainContext {\n walletClient
|
|
1
|
+
{"version":3,"sources":["../../../src/utils/blockchain/registry.ts"],"sourcesContent":["import { getContract } from \"viem\";\nimport type { PublicClient, WalletClient } from \"viem\";\nimport { getContractAddress } from \"../../config/addresses\";\nimport { getAbi } from \"../../generated/abi\";\nimport type { SchemaMetadata } from \"../../types/index\";\n\n/**\n * Shared context for blockchain operations.\n * Only includes the minimal required fields to avoid coupling.\n */\ninterface BlockchainContext {\n walletClient?: WalletClient;\n publicClient: PublicClient;\n}\n\n/**\n * Contract data structure returned by the blockchain.\n *\n * @internal\n */\ninterface SchemaContractData {\n name: string;\n dialect: string;\n definitionUrl: string;\n}\n\n/**\n * Fetches schema metadata from the blockchain by its ID.\n *\n * @param context - The blockchain context containing wallet and public clients\n * @param schemaId - The ID of the schema to fetch\n * @returns The schema metadata with id, name, dialect, and definitionUrl\n * @throws Error if chain ID is not available, schema not found, or data is incomplete\n *\n * @internal\n */\nexport async function fetchSchemaFromChain(\n context: BlockchainContext,\n schemaId: number,\n): Promise<SchemaMetadata> {\n const chainId =\n context.walletClient?.chain?.id ?? context.publicClient.chain?.id;\n if (!chainId) {\n throw new Error(\"Chain ID not available\");\n }\n\n const dataRefinerRegistryAddress = getContractAddress(\n chainId,\n \"DataRefinerRegistry\",\n );\n const dataRefinerRegistryAbi = getAbi(\"DataRefinerRegistry\");\n\n const dataRefinerRegistry = getContract({\n address: dataRefinerRegistryAddress,\n abi: dataRefinerRegistryAbi,\n client: context.publicClient,\n });\n\n const schemaData = await dataRefinerRegistry.read.schemas([BigInt(schemaId)]);\n\n if (!schemaData) {\n throw new Error(`Schema with ID ${schemaId} not found`);\n }\n\n // TODO(TYPES): Contract read returns unknown type from viem library.\n // Future improvement: Create typed contract interface when viem adds support\n // or implement a contract type generator from ABI definitions.\n const schemaObj = schemaData as unknown as SchemaContractData;\n\n if (!schemaObj.name || !schemaObj.dialect || !schemaObj.definitionUrl) {\n throw new Error(\"Incomplete schema data\");\n }\n\n return {\n id: schemaId,\n name: schemaObj.name,\n dialect: schemaObj.dialect as \"json\" | \"sqlite\",\n definitionUrl: schemaObj.definitionUrl,\n };\n}\n\n/**\n * Fetches the total count of schemas from the blockchain.\n *\n * @param context - The blockchain context containing wallet and public clients\n * @returns The total number of schemas\n * @throws Error if chain ID is not available or operation fails\n *\n * @internal\n */\nexport async function fetchSchemaCountFromChain(\n context: BlockchainContext,\n): Promise<number> {\n const chainId =\n context.walletClient?.chain?.id ?? context.publicClient.chain?.id;\n if (!chainId) {\n throw new Error(\"Chain ID not available\");\n }\n\n const dataRefinerRegistryAddress = getContractAddress(\n chainId,\n \"DataRefinerRegistry\",\n );\n const dataRefinerRegistryAbi = getAbi(\"DataRefinerRegistry\");\n\n const dataRefinerRegistry = getContract({\n address: dataRefinerRegistryAddress,\n abi: dataRefinerRegistryAbi,\n client: context.publicClient,\n });\n\n const count = await dataRefinerRegistry.read.schemasCount();\n return Number(count);\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA4B;AAE5B,uBAAmC;AACnC,iBAAuB;AAiCvB,eAAsB,qBACpB,SACA,UACyB;AACzB,QAAM,UACJ,QAAQ,cAAc,OAAO,MAAM,QAAQ,aAAa,OAAO;AACjE,MAAI,CAAC,SAAS;AACZ,UAAM,IAAI,MAAM,wBAAwB;AAAA,EAC1C;AAEA,QAAM,iCAA6B;AAAA,IACjC;AAAA,IACA;AAAA,EACF;AACA,QAAM,6BAAyB,mBAAO,qBAAqB;AAE3D,QAAM,0BAAsB,yBAAY;AAAA,IACtC,SAAS;AAAA,IACT,KAAK;AAAA,IACL,QAAQ,QAAQ;AAAA,EAClB,CAAC;AAED,QAAM,aAAa,MAAM,oBAAoB,KAAK,QAAQ,CAAC,OAAO,QAAQ,CAAC,CAAC;AAE5E,MAAI,CAAC,YAAY;AACf,UAAM,IAAI,MAAM,kBAAkB,QAAQ,YAAY;AAAA,EACxD;AAKA,QAAM,YAAY;AAElB,MAAI,CAAC,UAAU,QAAQ,CAAC,UAAU,WAAW,CAAC,UAAU,eAAe;AACrE,UAAM,IAAI,MAAM,wBAAwB;AAAA,EAC1C;AAEA,SAAO;AAAA,IACL,IAAI;AAAA,IACJ,MAAM,UAAU;AAAA,IAChB,SAAS,UAAU;AAAA,IACnB,eAAe,UAAU;AAAA,EAC3B;AACF;AAWA,eAAsB,0BACpB,SACiB;AACjB,QAAM,UACJ,QAAQ,cAAc,OAAO,MAAM,QAAQ,aAAa,OAAO;AACjE,MAAI,CAAC,SAAS;AACZ,UAAM,IAAI,MAAM,wBAAwB;AAAA,EAC1C;AAEA,QAAM,iCAA6B;AAAA,IACjC;AAAA,IACA;AAAA,EACF;AACA,QAAM,6BAAyB,mBAAO,qBAAqB;AAE3D,QAAM,0BAAsB,yBAAY;AAAA,IACtC,SAAS;AAAA,IACT,KAAK;AAAA,IACL,QAAQ,QAAQ;AAAA,EAClB,CAAC;AAED,QAAM,QAAQ,MAAM,oBAAoB,KAAK,aAAa;AAC1D,SAAO,OAAO,KAAK;AACrB;","names":[]}
|