@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,156 +0,0 @@
|
|
|
1
|
-
import { StorageProvider, StorageUploadResult, StorageListOptions, StorageFile, StorageProviderConfig } from '../../types/storage.cjs';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Google Drive Storage Provider for Vana SDK
|
|
5
|
-
*
|
|
6
|
-
* Implements storage interface for Google Drive using OAuth2 authentication.
|
|
7
|
-
* Based on patterns from dlp-ui-template with NextAuth integration.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
interface GoogleDriveConfig {
|
|
11
|
-
/** OAuth2 access token */
|
|
12
|
-
accessToken: string;
|
|
13
|
-
/** Optional refresh token for token renewal */
|
|
14
|
-
refreshToken?: string;
|
|
15
|
-
/** OAuth2 client ID */
|
|
16
|
-
clientId?: string;
|
|
17
|
-
/** OAuth2 client secret */
|
|
18
|
-
clientSecret?: string;
|
|
19
|
-
/** Parent folder ID to upload files to */
|
|
20
|
-
folderId?: string;
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* Google Drive Storage Provider with folder management capabilities
|
|
24
|
-
*
|
|
25
|
-
* @remarks
|
|
26
|
-
* Implements storage interface for Google Drive using OAuth2 authentication.
|
|
27
|
-
* Provides file upload/download operations and advanced folder management
|
|
28
|
-
* including search, creation, and nested folder structures. Requires the
|
|
29
|
-
* `https://www.googleapis.com/auth/drive.file` OAuth scope for full functionality.
|
|
30
|
-
*
|
|
31
|
-
* @category Storage
|
|
32
|
-
*
|
|
33
|
-
* @example
|
|
34
|
-
* ```typescript
|
|
35
|
-
* const googleDriveStorage = new GoogleDriveStorage({
|
|
36
|
-
* accessToken: "your-oauth-access-token",
|
|
37
|
-
* refreshToken: "your-oauth-refresh-token",
|
|
38
|
-
* clientId: "your-oauth-client-id",
|
|
39
|
-
* clientSecret: "your-oauth-client-secret",
|
|
40
|
-
* });
|
|
41
|
-
*
|
|
42
|
-
* // Create folder structure and upload file
|
|
43
|
-
* const folderId = await googleDriveStorage.findOrCreateFolder("screenshots");
|
|
44
|
-
* const result = await googleDriveStorage.upload(fileBlob, "image.png");
|
|
45
|
-
* ```
|
|
46
|
-
*/
|
|
47
|
-
declare class GoogleDriveStorage implements StorageProvider {
|
|
48
|
-
private config;
|
|
49
|
-
private readonly baseUrl;
|
|
50
|
-
private readonly uploadUrl;
|
|
51
|
-
constructor(config: GoogleDriveConfig);
|
|
52
|
-
upload(file: Blob, filename?: string): Promise<StorageUploadResult>;
|
|
53
|
-
download(url: string): Promise<Blob>;
|
|
54
|
-
list(options?: StorageListOptions): Promise<StorageFile[]>;
|
|
55
|
-
delete(url: string): Promise<boolean>;
|
|
56
|
-
getConfig(): StorageProviderConfig;
|
|
57
|
-
/**
|
|
58
|
-
* Make a Google Drive file publicly readable
|
|
59
|
-
*
|
|
60
|
-
* @param fileId - Google Drive file ID
|
|
61
|
-
*/
|
|
62
|
-
private makeFilePublic;
|
|
63
|
-
/**
|
|
64
|
-
* Extract file ID from various Google Drive URL formats
|
|
65
|
-
*
|
|
66
|
-
* @param url - Google Drive URL
|
|
67
|
-
* @returns File ID or null if not found
|
|
68
|
-
*/
|
|
69
|
-
private extractFileId;
|
|
70
|
-
/**
|
|
71
|
-
* Searches for an existing folder by name within a specified parent folder
|
|
72
|
-
*
|
|
73
|
-
* @remarks
|
|
74
|
-
* This method queries the Google Drive API to find a folder with the exact name
|
|
75
|
-
* within the specified parent directory. Only searches for folders (not files)
|
|
76
|
-
* and excludes trashed items.
|
|
77
|
-
*
|
|
78
|
-
* @param name - The exact name of the folder to search for
|
|
79
|
-
* @param parentId - The ID of the parent folder to search within (defaults to 'root')
|
|
80
|
-
* @returns Promise that resolves to the folder ID if found, or `null` if not found
|
|
81
|
-
* @throws {StorageError} When the Google Drive API request fails
|
|
82
|
-
*
|
|
83
|
-
* @example
|
|
84
|
-
* ```typescript
|
|
85
|
-
* // Search for a folder in the root directory
|
|
86
|
-
* const folderId = await googleDriveStorage.findFolder("screenshots");
|
|
87
|
-
* if (folderId) {
|
|
88
|
-
* console.log("Found folder:", folderId);
|
|
89
|
-
* } else {
|
|
90
|
-
* console.log("Folder not found");
|
|
91
|
-
* }
|
|
92
|
-
*
|
|
93
|
-
* // Search for a subfolder within another folder
|
|
94
|
-
* const subFolderId = await googleDriveStorage.findFolder("roasts", parentFolderId);
|
|
95
|
-
* ```
|
|
96
|
-
*/
|
|
97
|
-
findFolder(name: string, parentId?: string): Promise<string | null>;
|
|
98
|
-
/**
|
|
99
|
-
* Creates a new folder within a specified parent folder
|
|
100
|
-
*
|
|
101
|
-
* @remarks
|
|
102
|
-
* This method creates a new folder using the Google Drive API. The folder will be
|
|
103
|
-
* created with the specified name as a child of the parent folder. Requires the
|
|
104
|
-
* `https://www.googleapis.com/auth/drive.file` OAuth scope.
|
|
105
|
-
*
|
|
106
|
-
* @param name - The name for the new folder
|
|
107
|
-
* @param parentId - The ID of the parent folder where the new folder will be created (defaults to 'root')
|
|
108
|
-
* @returns Promise that resolves to the ID of the newly created folder
|
|
109
|
-
* @throws {StorageError} When the Google Drive API request fails or folder creation is denied
|
|
110
|
-
*
|
|
111
|
-
* @example
|
|
112
|
-
* ```typescript
|
|
113
|
-
* // Create a folder in the root directory
|
|
114
|
-
* const folderId = await googleDriveStorage.createFolder("my-documents");
|
|
115
|
-
* console.log("Created folder:", folderId);
|
|
116
|
-
*
|
|
117
|
-
* // Create a subfolder within another folder
|
|
118
|
-
* const subFolderId = await googleDriveStorage.createFolder("reports", parentFolderId);
|
|
119
|
-
* ```
|
|
120
|
-
*/
|
|
121
|
-
createFolder(name: string, parentId?: string): Promise<string>;
|
|
122
|
-
/**
|
|
123
|
-
* Finds an existing folder by name, or creates it if it doesn't exist
|
|
124
|
-
*
|
|
125
|
-
* @remarks
|
|
126
|
-
* This is a convenience method that combines `findFolder` and `createFolder`.
|
|
127
|
-
* It first searches for an existing folder with the specified name. If found,
|
|
128
|
-
* it returns the existing folder's ID. If not found, it creates a new folder
|
|
129
|
-
* and returns the new folder's ID.
|
|
130
|
-
*
|
|
131
|
-
* @param name - The name of the folder to find or create
|
|
132
|
-
* @param parentId - The ID of the parent folder to search within or create the folder in (defaults to 'root')
|
|
133
|
-
* @returns Promise that resolves to the folder ID (either existing or newly created)
|
|
134
|
-
* @throws {StorageError} When the Google Drive API request fails
|
|
135
|
-
*
|
|
136
|
-
* @example
|
|
137
|
-
* ```typescript
|
|
138
|
-
* // Ensure a folder exists, creating it if necessary
|
|
139
|
-
* const folderId = await googleDriveStorage.findOrCreateFolder("screenshots");
|
|
140
|
-
* console.log("Folder ID:", folderId); // Will be same ID if folder already existed
|
|
141
|
-
*
|
|
142
|
-
* // Create nested folder structure
|
|
143
|
-
* const parentId = await googleDriveStorage.findOrCreateFolder("projects");
|
|
144
|
-
* const childId = await googleDriveStorage.findOrCreateFolder("vana-app", parentId);
|
|
145
|
-
* ```
|
|
146
|
-
*/
|
|
147
|
-
findOrCreateFolder(name: string, parentId?: string): Promise<string>;
|
|
148
|
-
/**
|
|
149
|
-
* Refresh the access token using refresh token
|
|
150
|
-
*
|
|
151
|
-
* @returns Promise with new access token
|
|
152
|
-
*/
|
|
153
|
-
refreshAccessToken(): Promise<string>;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
export { type GoogleDriveConfig, GoogleDriveStorage };
|
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
import { StorageProvider, StorageUploadResult, StorageListOptions, StorageFile, StorageProviderConfig } from '../../types/storage.cjs';
|
|
2
|
-
|
|
3
|
-
interface IpfsConfig {
|
|
4
|
-
/** IPFS API endpoint for uploads */
|
|
5
|
-
apiEndpoint: string;
|
|
6
|
-
/** Gateway URL for downloads (optional, defaults to public gateway) */
|
|
7
|
-
gatewayUrl?: string;
|
|
8
|
-
/** Additional headers for API requests */
|
|
9
|
-
headers?: Record<string, string>;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Connects to any standard IPFS node or service provider
|
|
13
|
-
*
|
|
14
|
-
* @remarks
|
|
15
|
-
* This provider implements the standard IPFS HTTP API (`/api/v0/add`) and works
|
|
16
|
-
* with any IPFS-compatible service. It provides the essential IPFS operations
|
|
17
|
-
* (upload/download) while maintaining the immutable, content-addressed nature
|
|
18
|
-
* of IPFS. Use static factory methods for common providers like Infura or local nodes.
|
|
19
|
-
*
|
|
20
|
-
* @category Storage
|
|
21
|
-
*
|
|
22
|
-
* @example
|
|
23
|
-
* ```typescript
|
|
24
|
-
* // Use with Infura (recommended for production)
|
|
25
|
-
* const ipfsStorage = IpfsStorage.forInfura({
|
|
26
|
-
* projectId: "your-project-id",
|
|
27
|
-
* projectSecret: "your-project-secret"
|
|
28
|
-
* });
|
|
29
|
-
*
|
|
30
|
-
* // Use with local IPFS node
|
|
31
|
-
* const localStorage = IpfsStorage.forLocalNode();
|
|
32
|
-
*
|
|
33
|
-
* // Upload file and get CID
|
|
34
|
-
* const result = await ipfsStorage.upload(fileBlob, "document.pdf");
|
|
35
|
-
* console.log("Uploaded to IPFS:", result.url);
|
|
36
|
-
* ```
|
|
37
|
-
*/
|
|
38
|
-
declare class IpfsStorage implements StorageProvider {
|
|
39
|
-
private config;
|
|
40
|
-
private readonly gatewayUrl;
|
|
41
|
-
private readonly hasAuth;
|
|
42
|
-
constructor(config: IpfsConfig);
|
|
43
|
-
/**
|
|
44
|
-
* Creates an IPFS storage instance configured for Infura
|
|
45
|
-
*
|
|
46
|
-
* @remarks
|
|
47
|
-
* Infura provides reliable, scalable IPFS infrastructure with global availability.
|
|
48
|
-
* This factory method automatically configures the correct endpoints and authentication
|
|
49
|
-
* for Infura's IPFS service.
|
|
50
|
-
*
|
|
51
|
-
* @param credentials - Infura project credentials
|
|
52
|
-
* @param credentials.projectId - Your Infura project ID
|
|
53
|
-
* @param credentials.projectSecret - Your Infura project secret
|
|
54
|
-
* @returns Configured IpfsStorage instance for Infura
|
|
55
|
-
*
|
|
56
|
-
* @example
|
|
57
|
-
* ```typescript
|
|
58
|
-
* const ipfsStorage = IpfsStorage.forInfura({
|
|
59
|
-
* projectId: "2FVGj8UJP5v8ZcnX9K5L7M8c",
|
|
60
|
-
* projectSecret: "a7f2c1e5b8d9f3a6e4c8b2d7f9e1a4c3"
|
|
61
|
-
* });
|
|
62
|
-
*
|
|
63
|
-
* const result = await ipfsStorage.upload(fileBlob);
|
|
64
|
-
* ```
|
|
65
|
-
*/
|
|
66
|
-
static forInfura(credentials: {
|
|
67
|
-
projectId: string;
|
|
68
|
-
projectSecret: string;
|
|
69
|
-
}): IpfsStorage;
|
|
70
|
-
/**
|
|
71
|
-
* Creates an IPFS storage instance configured for a local IPFS node
|
|
72
|
-
*
|
|
73
|
-
* @remarks
|
|
74
|
-
* This factory method configures the storage provider to connect to a local IPFS node,
|
|
75
|
-
* typically running on your development machine or server. Assumes standard ports
|
|
76
|
-
* (5001 for API, 8080 for gateway) unless otherwise specified.
|
|
77
|
-
*
|
|
78
|
-
* @param options - Local node configuration options
|
|
79
|
-
* @param options.url - Base URL of the local IPFS node (defaults to http://localhost:5001)
|
|
80
|
-
* @returns Configured IpfsStorage instance for local node
|
|
81
|
-
*
|
|
82
|
-
* @example
|
|
83
|
-
* ```typescript
|
|
84
|
-
* // Use default localhost configuration
|
|
85
|
-
* const localStorage = IpfsStorage.forLocalNode();
|
|
86
|
-
*
|
|
87
|
-
* // Use custom local node URL
|
|
88
|
-
* const customStorage = IpfsStorage.forLocalNode({
|
|
89
|
-
* url: "http://192.168.1.100:5001"
|
|
90
|
-
* });
|
|
91
|
-
*
|
|
92
|
-
* const result = await localStorage.upload(fileBlob, "local-file.txt");
|
|
93
|
-
* ```
|
|
94
|
-
*/
|
|
95
|
-
static forLocalNode(options?: {
|
|
96
|
-
url?: string;
|
|
97
|
-
}): IpfsStorage;
|
|
98
|
-
/**
|
|
99
|
-
* Uploads a file to IPFS and returns the content identifier (CID)
|
|
100
|
-
*
|
|
101
|
-
* @remarks
|
|
102
|
-
* This method uploads the file to the configured IPFS endpoint using the standard
|
|
103
|
-
* `/api/v0/add` API. The file is content-addressed, meaning the same file will
|
|
104
|
-
* always produce the same CID regardless of when or where it's uploaded.
|
|
105
|
-
*
|
|
106
|
-
* @param file - The file to upload to IPFS
|
|
107
|
-
* @param filename - Optional filename (for metadata purposes only)
|
|
108
|
-
* @returns Promise that resolves to StorageUploadResult with IPFS gateway URL
|
|
109
|
-
* @throws {StorageError} When the upload fails or no CID is returned
|
|
110
|
-
*
|
|
111
|
-
* @example
|
|
112
|
-
* ```typescript
|
|
113
|
-
* const result = await ipfsStorage.upload(fileBlob, "report.pdf");
|
|
114
|
-
* console.log("File uploaded to IPFS:", result.url);
|
|
115
|
-
* // Example URL: "https://gateway.pinata.cloud/ipfs/QmTzQ1JRkWErjk39mryYw2WVrgBMe2B36gRq8GCL8qCACj"
|
|
116
|
-
* ```
|
|
117
|
-
*/
|
|
118
|
-
upload(file: Blob, filename?: string): Promise<StorageUploadResult>;
|
|
119
|
-
/**
|
|
120
|
-
* Downloads a file from IPFS using its content identifier (CID)
|
|
121
|
-
*
|
|
122
|
-
* @remarks
|
|
123
|
-
* This method retrieves the file from IPFS using the configured gateway.
|
|
124
|
-
* It accepts various formats including raw CIDs, ipfs:// URLs, and gateway URLs.
|
|
125
|
-
* The file is downloaded from the globally distributed IPFS network.
|
|
126
|
-
*
|
|
127
|
-
* @param cid - The IPFS content identifier, ipfs:// URL, or gateway URL
|
|
128
|
-
* @returns Promise that resolves to the downloaded file content
|
|
129
|
-
* @throws {StorageError} When the download fails or CID format is invalid
|
|
130
|
-
*
|
|
131
|
-
* @example
|
|
132
|
-
* ```typescript
|
|
133
|
-
* // Download using raw CID
|
|
134
|
-
* const file = await ipfsStorage.download("QmTzQ1JRkWErjk39mryYw2WVrgBMe2B36gRq8GCL8qCACj");
|
|
135
|
-
*
|
|
136
|
-
* // Download using ipfs:// URL
|
|
137
|
-
* const file2 = await ipfsStorage.download("ipfs://QmTzQ1JRkWErjk39mryYw2WVrgBMe2B36gRq8GCL8qCACj");
|
|
138
|
-
*
|
|
139
|
-
* // Create download link
|
|
140
|
-
* const url = URL.createObjectURL(file);
|
|
141
|
-
* ```
|
|
142
|
-
*/
|
|
143
|
-
download(cid: string): Promise<Blob>;
|
|
144
|
-
list(_options?: StorageListOptions): Promise<StorageFile[]>;
|
|
145
|
-
delete(_url: string): Promise<boolean>;
|
|
146
|
-
getConfig(): StorageProviderConfig;
|
|
147
|
-
/**
|
|
148
|
-
* Build download URL from CID or existing URL
|
|
149
|
-
*
|
|
150
|
-
* @param cid - IPFS CID or URL
|
|
151
|
-
* @returns Gateway URL for download
|
|
152
|
-
*/
|
|
153
|
-
private buildDownloadUrl;
|
|
154
|
-
/**
|
|
155
|
-
* Basic CID validation
|
|
156
|
-
*
|
|
157
|
-
* @param cid - Content identifier to validate
|
|
158
|
-
* @returns True if CID appears valid
|
|
159
|
-
*/
|
|
160
|
-
private isValidCID;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
export { type IpfsConfig, IpfsStorage };
|
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
import { StorageProvider, StorageUploadResult, StorageListOptions, StorageFile, StorageProviderConfig } from '../../types/storage.cjs';
|
|
2
|
-
|
|
3
|
-
interface PinataConfig {
|
|
4
|
-
/** Pinata JWT token for authentication */
|
|
5
|
-
jwt: string;
|
|
6
|
-
/** Optional custom gateway URL (defaults to https://gateway.pinata.cloud) */
|
|
7
|
-
gatewayUrl?: string;
|
|
8
|
-
}
|
|
9
|
-
interface PinataListQuery {
|
|
10
|
-
/** Maximum number of results to return */
|
|
11
|
-
limit?: number;
|
|
12
|
-
/** Offset for pagination */
|
|
13
|
-
offset?: number;
|
|
14
|
-
/** Filter by name pattern */
|
|
15
|
-
namePattern?: string;
|
|
16
|
-
}
|
|
17
|
-
interface PinataFile {
|
|
18
|
-
/** Pin identifier */
|
|
19
|
-
id: string;
|
|
20
|
-
/** File name */
|
|
21
|
-
name: string;
|
|
22
|
-
/** IPFS CID */
|
|
23
|
-
cid: string;
|
|
24
|
-
/** File size in bytes */
|
|
25
|
-
size: number;
|
|
26
|
-
/** Creation timestamp */
|
|
27
|
-
createdAt: Date;
|
|
28
|
-
/** Optional metadata */
|
|
29
|
-
metadata?: object;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Provides managed IPFS storage with full-featured API via Pinata
|
|
33
|
-
*
|
|
34
|
-
* @remarks
|
|
35
|
-
* This provider uses Pinata's enhanced IPFS service, which extends standard IPFS
|
|
36
|
-
* with additional features like file listing, deletion (unpinning), and rich metadata.
|
|
37
|
-
* It's the "it just works" solution for developers who want full CRUD operations
|
|
38
|
-
* on IPFS without managing infrastructure.
|
|
39
|
-
*
|
|
40
|
-
* @category Storage
|
|
41
|
-
*
|
|
42
|
-
* @example
|
|
43
|
-
* ```typescript
|
|
44
|
-
* const pinataStorage = new PinataStorage({
|
|
45
|
-
* jwt: "your-pinata-jwt-token"
|
|
46
|
-
* });
|
|
47
|
-
*
|
|
48
|
-
* // Upload with metadata
|
|
49
|
-
* const cid = await pinataStorage.upload(fileBlob, {
|
|
50
|
-
* name: "user-avatar.png",
|
|
51
|
-
* metadata: { userId: "123", category: "avatar" }
|
|
52
|
-
* });
|
|
53
|
-
*
|
|
54
|
-
* // List files with query
|
|
55
|
-
* const files = await pinataStorage.list({ limit: 10 });
|
|
56
|
-
*
|
|
57
|
-
* // Delete file
|
|
58
|
-
* await pinataStorage.delete(cid);
|
|
59
|
-
* ```
|
|
60
|
-
*/
|
|
61
|
-
declare class PinataStorage implements StorageProvider {
|
|
62
|
-
private config;
|
|
63
|
-
private readonly apiUrl;
|
|
64
|
-
private readonly gatewayUrl;
|
|
65
|
-
constructor(config: PinataConfig);
|
|
66
|
-
/**
|
|
67
|
-
* Uploads a file to IPFS via Pinata and returns the CID
|
|
68
|
-
*
|
|
69
|
-
* @remarks
|
|
70
|
-
* This method uploads the file to Pinata's IPFS service with enhanced metadata support.
|
|
71
|
-
* The file is pinned to ensure availability and can include custom metadata for
|
|
72
|
-
* organization and querying. The metadata is stored alongside the file for later retrieval.
|
|
73
|
-
*
|
|
74
|
-
* @param file - The file to upload to IPFS
|
|
75
|
-
* @param filename - Optional custom filename
|
|
76
|
-
* @returns Promise that resolves to the IPFS CID (content identifier)
|
|
77
|
-
* @throws {StorageError} When the upload fails or no CID is returned
|
|
78
|
-
*
|
|
79
|
-
* @example
|
|
80
|
-
* ```typescript
|
|
81
|
-
* const cid = await pinataStorage.upload(fileBlob, {
|
|
82
|
-
* name: "user-document.pdf",
|
|
83
|
-
* metadata: {
|
|
84
|
-
* userId: "user-123",
|
|
85
|
-
* category: "documents",
|
|
86
|
-
* uploadDate: new Date().toISOString()
|
|
87
|
-
* }
|
|
88
|
-
* });
|
|
89
|
-
* console.log("File pinned to IPFS:", cid);
|
|
90
|
-
* ```
|
|
91
|
-
*/
|
|
92
|
-
upload(file: Blob, filename?: string): Promise<StorageUploadResult>;
|
|
93
|
-
download(cid: string): Promise<Blob>;
|
|
94
|
-
/**
|
|
95
|
-
* Lists files uploaded to Pinata with optional filtering
|
|
96
|
-
*
|
|
97
|
-
* @remarks
|
|
98
|
-
* This method retrieves a list of files that have been uploaded to Pinata,
|
|
99
|
-
* filtered to only include files uploaded by the Vana SDK. You can further
|
|
100
|
-
* filter results by name pattern, limit results, or paginate through them.
|
|
101
|
-
*
|
|
102
|
-
* @param options - Optional query parameters for filtering and pagination
|
|
103
|
-
* @param options.limit - Maximum number of results to return (default: 10)
|
|
104
|
-
* @param options.offset - Number of results to skip for pagination
|
|
105
|
-
* @param options.namePattern - Filter files by name pattern
|
|
106
|
-
* @returns Promise that resolves to an array of PinataFile objects
|
|
107
|
-
* @throws {StorageError} When the list operation fails
|
|
108
|
-
*
|
|
109
|
-
* @example
|
|
110
|
-
* ```typescript
|
|
111
|
-
* // List all files
|
|
112
|
-
* const allFiles = await pinataStorage.list();
|
|
113
|
-
*
|
|
114
|
-
* // List with pagination and filtering
|
|
115
|
-
* const filteredFiles = await pinataStorage.list({
|
|
116
|
-
* limit: 20,
|
|
117
|
-
* offset: 10,
|
|
118
|
-
* namePattern: "document"
|
|
119
|
-
* });
|
|
120
|
-
*
|
|
121
|
-
* filteredFiles.forEach(file => {
|
|
122
|
-
* console.log(`${file.name} (${file.size} bytes): ${file.cid}`);
|
|
123
|
-
* });
|
|
124
|
-
* ```
|
|
125
|
-
*/
|
|
126
|
-
list(options?: StorageListOptions): Promise<StorageFile[]>;
|
|
127
|
-
/**
|
|
128
|
-
* Deletes a file from Pinata by unpinning it from IPFS
|
|
129
|
-
*
|
|
130
|
-
* @remarks
|
|
131
|
-
* This method removes the file from your Pinata account by unpinning it,
|
|
132
|
-
* which means it will no longer be guaranteed to be available on the IPFS network.
|
|
133
|
-
* Note that if the file is pinned elsewhere or cached by other nodes, it may still
|
|
134
|
-
* be accessible for some time.
|
|
135
|
-
*
|
|
136
|
-
* @param url - The IPFS URL or content identifier of the file to delete
|
|
137
|
-
* @returns Promise that resolves when the file is successfully unpinned
|
|
138
|
-
* @throws {StorageError} When the deletion fails or CID format is invalid
|
|
139
|
-
*
|
|
140
|
-
* @example
|
|
141
|
-
* ```typescript
|
|
142
|
-
* // Delete a file by CID
|
|
143
|
-
* await pinataStorage.delete("QmTzQ1JRkWErjk39mryYw2WVrgBMe2B36gRq8GCL8qCACj");
|
|
144
|
-
* console.log("File unpinned from Pinata");
|
|
145
|
-
*
|
|
146
|
-
* // Delete after listing
|
|
147
|
-
* const files = await pinataStorage.list();
|
|
148
|
-
* for (const file of files) {
|
|
149
|
-
* if (file.name.includes("temp")) {
|
|
150
|
-
* await pinataStorage.delete(file.cid);
|
|
151
|
-
* }
|
|
152
|
-
* }
|
|
153
|
-
* ```
|
|
154
|
-
*/
|
|
155
|
-
delete(url: string): Promise<boolean>;
|
|
156
|
-
getConfig(): StorageProviderConfig;
|
|
157
|
-
/**
|
|
158
|
-
* Extract CID from URL or return as-is
|
|
159
|
-
*
|
|
160
|
-
* @param url - URL or CID string
|
|
161
|
-
* @returns CID string
|
|
162
|
-
*/
|
|
163
|
-
private extractCidFromUrl;
|
|
164
|
-
/**
|
|
165
|
-
* Basic CID validation
|
|
166
|
-
*
|
|
167
|
-
* @param cid - Content identifier to validate
|
|
168
|
-
* @returns True if CID appears valid
|
|
169
|
-
*/
|
|
170
|
-
private isValidCID;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
export { type PinataConfig, type PinataFile, type PinataListQuery, PinataStorage };
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { Hash, Address } from 'viem';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Core blockchain types for the Vana SDK
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Represents a transaction that has been submitted to the blockchain
|
|
9
|
-
* This is what contract calls return before confirmation
|
|
10
|
-
*/
|
|
11
|
-
interface TransactionRequest {
|
|
12
|
-
/** Transaction hash */
|
|
13
|
-
hash: Hash;
|
|
14
|
-
/** Account that initiated the transaction */
|
|
15
|
-
from: Address;
|
|
16
|
-
/** Contract that was called */
|
|
17
|
-
contractName: string;
|
|
18
|
-
/** Function that was called */
|
|
19
|
-
functionName: string;
|
|
20
|
-
/** Function arguments (for debugging/logging) */
|
|
21
|
-
args?: readonly unknown[];
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Options for waiting for transaction confirmation
|
|
25
|
-
*/
|
|
26
|
-
interface TransactionWaitOptions {
|
|
27
|
-
/** Number of confirmations to wait for (default: 1) */
|
|
28
|
-
confirmations?: number;
|
|
29
|
-
/** Timeout in milliseconds (default: 30000) */
|
|
30
|
-
timeout?: number;
|
|
31
|
-
/** Polling interval in milliseconds (default: 4000) */
|
|
32
|
-
pollingInterval?: number;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* Base result for all confirmed transactions
|
|
36
|
-
*/
|
|
37
|
-
interface TransactionResult {
|
|
38
|
-
/** Transaction hash */
|
|
39
|
-
transactionHash: Hash;
|
|
40
|
-
/** Block number where transaction was included */
|
|
41
|
-
blockNumber: bigint;
|
|
42
|
-
/** Gas used by the transaction */
|
|
43
|
-
gasUsed: bigint;
|
|
44
|
-
/** Account that initiated the transaction */
|
|
45
|
-
from: Address;
|
|
46
|
-
/** Contract that was called */
|
|
47
|
-
contractName: string;
|
|
48
|
-
/** Function that was called */
|
|
49
|
-
functionName: string;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export type { TransactionRequest, TransactionResult, TransactionWaitOptions };
|
package/dist/types/chains.d.cts
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Chain } from 'viem';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Supported Vana chain IDs
|
|
5
|
-
*/
|
|
6
|
-
type VanaChainId = 14800 | 1480;
|
|
7
|
-
/**
|
|
8
|
-
* Supported Vana chains
|
|
9
|
-
*/
|
|
10
|
-
type VanaChain = Chain & {
|
|
11
|
-
id: VanaChainId;
|
|
12
|
-
};
|
|
13
|
-
/**
|
|
14
|
-
* Chain configuration mapping
|
|
15
|
-
*/
|
|
16
|
-
type ChainConfig = {
|
|
17
|
-
[K in VanaChainId]: VanaChain;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* Type guard to check if a chain ID is supported
|
|
21
|
-
*
|
|
22
|
-
* @param chainId - The chain ID to validate
|
|
23
|
-
* @returns True if the chain ID is a supported Vana chain ID
|
|
24
|
-
*/
|
|
25
|
-
declare function isVanaChainId(chainId: number): chainId is VanaChainId;
|
|
26
|
-
/**
|
|
27
|
-
* Type guard to check if a chain is a Vana chain
|
|
28
|
-
*
|
|
29
|
-
* @param chain - The chain object to validate
|
|
30
|
-
* @returns True if the chain is a supported Vana chain
|
|
31
|
-
*/
|
|
32
|
-
declare function isVanaChain(chain: Chain): chain is VanaChain;
|
|
33
|
-
|
|
34
|
-
export { type ChainConfig, type VanaChain, type VanaChainId, isVanaChain, isVanaChainId };
|