@arkade-os/sdk 0.4.26 → 0.4.28
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/README.md +36 -125
- package/dist/adapters/asyncStorage.cjs +48 -0
- package/dist/adapters/asyncStorage.cjs.map +1 -0
- package/dist/adapters/asyncStorage.d.cts +16 -0
- package/dist/{types/storage → adapters}/asyncStorage.d.ts +5 -2
- package/dist/adapters/asyncStorage.js +46 -0
- package/dist/adapters/asyncStorage.js.map +1 -0
- package/dist/adapters/expo.cjs +19 -0
- package/dist/adapters/expo.cjs.map +1 -0
- package/dist/adapters/expo.d.cts +48 -0
- package/dist/adapters/expo.d.ts +48 -0
- package/dist/adapters/expo.js +6 -0
- package/dist/adapters/expo.js.map +1 -0
- package/dist/adapters/fileSystem.cjs +116 -0
- package/dist/adapters/fileSystem.cjs.map +1 -0
- package/dist/adapters/fileSystem.d.cts +17 -0
- package/dist/{types/storage → adapters}/fileSystem.d.ts +5 -2
- package/dist/adapters/fileSystem.js +93 -0
- package/dist/adapters/fileSystem.js.map +1 -0
- package/dist/adapters/indexedDB.cjs +103 -0
- package/dist/adapters/indexedDB.cjs.map +1 -0
- package/dist/adapters/indexedDB.d.cts +18 -0
- package/dist/{types/storage → adapters}/indexedDB.d.ts +5 -2
- package/dist/adapters/indexedDB.js +101 -0
- package/dist/adapters/indexedDB.js.map +1 -0
- package/dist/adapters/localStorage.cjs +50 -0
- package/dist/adapters/localStorage.cjs.map +1 -0
- package/dist/{types/storage/inMemory.d.ts → adapters/localStorage.d.cts} +6 -3
- package/dist/{types/storage → adapters}/localStorage.d.ts +5 -2
- package/dist/adapters/localStorage.js +48 -0
- package/dist/adapters/localStorage.js.map +1 -0
- package/dist/ark-TZ1gXAXU.d.cts +3880 -0
- package/dist/ark-TZ1gXAXU.d.ts +3880 -0
- package/dist/{types/worker/expo/asyncStorageTaskQueue.d.ts → asyncStorageTaskQueue-Cb1F_Z9s.d.ts} +6 -3
- package/dist/asyncStorageTaskQueue-EFqSmYTg.d.cts +49 -0
- package/dist/chunk-5BLDMQED.cjs +18 -0
- package/dist/chunk-5BLDMQED.cjs.map +1 -0
- package/dist/chunk-5PG7DV7A.cjs +805 -0
- package/dist/chunk-5PG7DV7A.cjs.map +1 -0
- package/dist/chunk-A3EMF7RN.js +95 -0
- package/dist/chunk-A3EMF7RN.js.map +1 -0
- package/dist/chunk-ADV27S4N.cjs +2701 -0
- package/dist/chunk-ADV27S4N.cjs.map +1 -0
- package/dist/chunk-BQLHADL7.js +13805 -0
- package/dist/chunk-BQLHADL7.js.map +1 -0
- package/dist/chunk-CFZMTDWI.js +209 -0
- package/dist/chunk-CFZMTDWI.js.map +1 -0
- package/dist/chunk-FG5ACJJW.cjs +212 -0
- package/dist/chunk-FG5ACJJW.cjs.map +1 -0
- package/dist/chunk-HW3JJ323.js +768 -0
- package/dist/chunk-HW3JJ323.js.map +1 -0
- package/dist/chunk-I3DGUUCT.cjs +838 -0
- package/dist/chunk-I3DGUUCT.cjs.map +1 -0
- package/dist/chunk-IPX2R7FR.cjs +100 -0
- package/dist/chunk-IPX2R7FR.cjs.map +1 -0
- package/dist/chunk-NSBPE2FW.js +15 -0
- package/dist/chunk-NSBPE2FW.js.map +1 -0
- package/dist/chunk-T64LAI7L.js +829 -0
- package/dist/chunk-T64LAI7L.js.map +1 -0
- package/dist/chunk-ZBUDLTBO.js +2671 -0
- package/dist/chunk-ZBUDLTBO.js.map +1 -0
- package/dist/chunk-ZLO6NETT.cjs +13910 -0
- package/dist/chunk-ZLO6NETT.cjs.map +1 -0
- package/dist/contracts/handlers/index.cjs +26 -0
- package/dist/contracts/handlers/index.cjs.map +1 -0
- package/dist/contracts/handlers/index.d.cts +7 -0
- package/dist/contracts/handlers/index.d.ts +7 -0
- package/dist/contracts/handlers/index.js +5 -0
- package/dist/contracts/handlers/index.js.map +1 -0
- package/dist/delegate-BFZs69hp.d.cts +84 -0
- package/dist/delegate-aaVGfWsV.d.ts +84 -0
- package/dist/index-B22cA64m.d.cts +199 -0
- package/dist/{types/storage/index.d.ts → index-C0IanN1m.d.cts} +3 -1
- package/dist/index-C0IanN1m.d.ts +11 -0
- package/dist/index-NDla_UoJ.d.ts +199 -0
- package/dist/index.cjs +480 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +3343 -0
- package/dist/index.d.ts +3343 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/dist/repositories/realm/index.cjs +513 -0
- package/dist/repositories/realm/index.cjs.map +1 -0
- package/dist/repositories/realm/index.d.cts +217 -0
- package/dist/{types/repositories/realm/schemas.d.ts → repositories/realm/index.d.ts} +80 -112
- package/dist/repositories/realm/index.js +507 -0
- package/dist/repositories/realm/index.js.map +1 -0
- package/dist/repositories/sqlite/index.cjs +588 -0
- package/dist/repositories/sqlite/index.cjs.map +1 -0
- package/dist/repositories/sqlite/index.d.cts +118 -0
- package/dist/{types/repositories/sqlite/walletRepository.d.ts → repositories/sqlite/index.d.ts} +58 -5
- package/dist/repositories/sqlite/index.js +585 -0
- package/dist/repositories/sqlite/index.js.map +1 -0
- package/dist/taskRunner-C6Ff4OaU.d.cts +114 -0
- package/dist/taskRunner-yvPN8Z0K.d.ts +114 -0
- package/dist/wallet/expo/background.cjs +93 -0
- package/dist/wallet/expo/background.cjs.map +1 -0
- package/dist/wallet/expo/background.d.cts +84 -0
- package/dist/wallet/expo/background.d.ts +84 -0
- package/dist/wallet/expo/background.js +68 -0
- package/dist/wallet/expo/background.js.map +1 -0
- package/dist/wallet/expo/index.cjs +171 -0
- package/dist/wallet/expo/index.cjs.map +1 -0
- package/dist/wallet/expo/index.d.cts +122 -0
- package/dist/{types/wallet/expo/wallet.d.ts → wallet/expo/index.d.ts} +45 -22
- package/dist/wallet/expo/index.js +169 -0
- package/dist/wallet/expo/index.js.map +1 -0
- package/dist/wallet-AF-p-OWj.d.cts +774 -0
- package/dist/wallet-D9NBRqvC.d.ts +774 -0
- package/dist/worker/expo/index.cjs +140 -0
- package/dist/worker/expo/index.cjs.map +1 -0
- package/dist/worker/expo/index.d.cts +29 -0
- package/dist/worker/expo/index.d.ts +29 -0
- package/dist/worker/expo/index.js +121 -0
- package/dist/worker/expo/index.js.map +1 -0
- package/package.json +110 -76
- package/dist/cjs/adapters/asyncStorage.js +0 -5
- package/dist/cjs/adapters/expo.js +0 -8
- package/dist/cjs/adapters/fileSystem.js +0 -5
- package/dist/cjs/adapters/indexedDB.js +0 -5
- package/dist/cjs/adapters/localStorage.js +0 -5
- package/dist/cjs/arkfee/celenv.js +0 -43
- package/dist/cjs/arkfee/estimator.js +0 -143
- package/dist/cjs/arkfee/index.js +0 -5
- package/dist/cjs/arkfee/types.js +0 -26
- package/dist/cjs/arknote/index.js +0 -128
- package/dist/cjs/bip322/index.js +0 -270
- package/dist/cjs/contracts/arkcontract.js +0 -147
- package/dist/cjs/contracts/contractManager.js +0 -629
- package/dist/cjs/contracts/contractWatcher.js +0 -598
- package/dist/cjs/contracts/handlers/default.js +0 -93
- package/dist/cjs/contracts/handlers/delegate.js +0 -90
- package/dist/cjs/contracts/handlers/helpers.js +0 -115
- package/dist/cjs/contracts/handlers/index.js +0 -19
- package/dist/cjs/contracts/handlers/registry.js +0 -89
- package/dist/cjs/contracts/handlers/vhtlc.js +0 -194
- package/dist/cjs/contracts/index.js +0 -41
- package/dist/cjs/contracts/types.js +0 -2
- package/dist/cjs/contracts/vtxoOwnership.js +0 -78
- package/dist/cjs/extension/asset/assetGroup.js +0 -228
- package/dist/cjs/extension/asset/assetId.js +0 -152
- package/dist/cjs/extension/asset/assetInput.js +0 -222
- package/dist/cjs/extension/asset/assetOutput.js +0 -174
- package/dist/cjs/extension/asset/assetRef.js +0 -148
- package/dist/cjs/extension/asset/index.js +0 -23
- package/dist/cjs/extension/asset/metadata.js +0 -187
- package/dist/cjs/extension/asset/packet.js +0 -114
- package/dist/cjs/extension/asset/types.js +0 -22
- package/dist/cjs/extension/asset/utils.js +0 -105
- package/dist/cjs/extension/index.js +0 -254
- package/dist/cjs/extension/packet.js +0 -20
- package/dist/cjs/forfeit.js +0 -45
- package/dist/cjs/identity/descriptor.js +0 -169
- package/dist/cjs/identity/descriptorProvider.js +0 -2
- package/dist/cjs/identity/hdCapableIdentity.js +0 -2
- package/dist/cjs/identity/index.js +0 -38
- package/dist/cjs/identity/seedIdentity.js +0 -461
- package/dist/cjs/identity/serialize.js +0 -171
- package/dist/cjs/identity/singleKey.js +0 -126
- package/dist/cjs/identity/staticDescriptorProvider.js +0 -65
- package/dist/cjs/index.js +0 -200
- package/dist/cjs/intent/index.js +0 -259
- package/dist/cjs/musig2/index.js +0 -11
- package/dist/cjs/musig2/keys.js +0 -57
- package/dist/cjs/musig2/nonces.js +0 -48
- package/dist/cjs/musig2/sign.js +0 -102
- package/dist/cjs/networks.js +0 -26
- package/dist/cjs/package.json +0 -3
- package/dist/cjs/providers/ark.js +0 -577
- package/dist/cjs/providers/delegator.js +0 -85
- package/dist/cjs/providers/electrum.js +0 -869
- package/dist/cjs/providers/errors.js +0 -59
- package/dist/cjs/providers/expoArk.js +0 -82
- package/dist/cjs/providers/expoIndexer.js +0 -111
- package/dist/cjs/providers/expoUtils.js +0 -124
- package/dist/cjs/providers/indexer.js +0 -630
- package/dist/cjs/providers/onchain.js +0 -262
- package/dist/cjs/providers/utils.js +0 -121
- package/dist/cjs/repositories/contractRepository.js +0 -2
- package/dist/cjs/repositories/inMemory/contractRepository.js +0 -55
- package/dist/cjs/repositories/inMemory/walletRepository.js +0 -115
- package/dist/cjs/repositories/index.js +0 -34
- package/dist/cjs/repositories/indexedDB/contractRepository.js +0 -187
- package/dist/cjs/repositories/indexedDB/db.js +0 -19
- package/dist/cjs/repositories/indexedDB/manager.js +0 -100
- package/dist/cjs/repositories/indexedDB/schema.js +0 -204
- package/dist/cjs/repositories/indexedDB/walletRepository.js +0 -474
- package/dist/cjs/repositories/indexedDB/websqlAdapter.js +0 -144
- package/dist/cjs/repositories/migrations/contractRepositoryImpl.js +0 -127
- package/dist/cjs/repositories/migrations/fromStorageAdapter.js +0 -66
- package/dist/cjs/repositories/migrations/walletRepositoryImpl.js +0 -184
- package/dist/cjs/repositories/realm/contractRepository.js +0 -116
- package/dist/cjs/repositories/realm/index.js +0 -11
- package/dist/cjs/repositories/realm/schemas.js +0 -157
- package/dist/cjs/repositories/realm/types.js +0 -7
- package/dist/cjs/repositories/realm/walletRepository.js +0 -305
- package/dist/cjs/repositories/scriptFromAddress.js +0 -16
- package/dist/cjs/repositories/serialization.js +0 -82
- package/dist/cjs/repositories/sqlite/contractRepository.js +0 -135
- package/dist/cjs/repositories/sqlite/index.js +0 -7
- package/dist/cjs/repositories/sqlite/types.js +0 -2
- package/dist/cjs/repositories/sqlite/walletRepository.js +0 -441
- package/dist/cjs/repositories/walletRepository.js +0 -2
- package/dist/cjs/script/address.js +0 -108
- package/dist/cjs/script/base.js +0 -185
- package/dist/cjs/script/default.js +0 -57
- package/dist/cjs/script/delegate.js +0 -53
- package/dist/cjs/script/tapscript.js +0 -619
- package/dist/cjs/script/vhtlc.js +0 -170
- package/dist/cjs/storage/asyncStorage.js +0 -50
- package/dist/cjs/storage/fileSystem.js +0 -141
- package/dist/cjs/storage/inMemory.js +0 -24
- package/dist/cjs/storage/index.js +0 -2
- package/dist/cjs/storage/indexedDB.js +0 -101
- package/dist/cjs/storage/localStorage.js +0 -51
- package/dist/cjs/tree/signingSession.js +0 -229
- package/dist/cjs/tree/txTree.js +0 -192
- package/dist/cjs/tree/validation.js +0 -107
- package/dist/cjs/utils/anchor.js +0 -35
- package/dist/cjs/utils/arkTransaction.js +0 -271
- package/dist/cjs/utils/bip21.js +0 -127
- package/dist/cjs/utils/syncCursors.js +0 -128
- package/dist/cjs/utils/timelock.js +0 -59
- package/dist/cjs/utils/transaction.js +0 -28
- package/dist/cjs/utils/transactionHistory.js +0 -183
- package/dist/cjs/utils/txSizeEstimator.js +0 -132
- package/dist/cjs/utils/unknownFields.js +0 -174
- package/dist/cjs/wallet/asset-manager.js +0 -330
- package/dist/cjs/wallet/asset.js +0 -119
- package/dist/cjs/wallet/batch.js +0 -183
- package/dist/cjs/wallet/delegator.js +0 -302
- package/dist/cjs/wallet/expo/background.js +0 -116
- package/dist/cjs/wallet/expo/index.js +0 -9
- package/dist/cjs/wallet/expo/wallet.js +0 -230
- package/dist/cjs/wallet/hdDescriptorProvider.js +0 -159
- package/dist/cjs/wallet/index.js +0 -82
- package/dist/cjs/wallet/onchain.js +0 -290
- package/dist/cjs/wallet/ramps.js +0 -216
- package/dist/cjs/wallet/serviceWorker/wallet-message-handler.js +0 -953
- package/dist/cjs/wallet/serviceWorker/wallet.js +0 -1173
- package/dist/cjs/wallet/unroll.js +0 -289
- package/dist/cjs/wallet/utils.js +0 -111
- package/dist/cjs/wallet/validation.js +0 -154
- package/dist/cjs/wallet/vtxo-manager.js +0 -1142
- package/dist/cjs/wallet/wallet.js +0 -2049
- package/dist/cjs/worker/browser/service-worker-manager.js +0 -183
- package/dist/cjs/worker/browser/utils.js +0 -67
- package/dist/cjs/worker/errors.js +0 -16
- package/dist/cjs/worker/expo/asyncStorageTaskQueue.js +0 -78
- package/dist/cjs/worker/expo/index.js +0 -13
- package/dist/cjs/worker/expo/processors/contractPollProcessor.js +0 -62
- package/dist/cjs/worker/expo/processors/index.js +0 -6
- package/dist/cjs/worker/expo/taskQueue.js +0 -41
- package/dist/cjs/worker/expo/taskRunner.js +0 -73
- package/dist/cjs/worker/messageBus.js +0 -473
- package/dist/esm/adapters/asyncStorage.js +0 -1
- package/dist/esm/adapters/expo.js +0 -3
- package/dist/esm/adapters/fileSystem.js +0 -1
- package/dist/esm/adapters/indexedDB.js +0 -1
- package/dist/esm/adapters/localStorage.js +0 -1
- package/dist/esm/arkfee/celenv.js +0 -40
- package/dist/esm/arkfee/estimator.js +0 -139
- package/dist/esm/arkfee/index.js +0 -1
- package/dist/esm/arkfee/types.js +0 -22
- package/dist/esm/arknote/index.js +0 -124
- package/dist/esm/bip322/index.js +0 -267
- package/dist/esm/contracts/arkcontract.js +0 -140
- package/dist/esm/contracts/contractManager.js +0 -625
- package/dist/esm/contracts/contractWatcher.js +0 -594
- package/dist/esm/contracts/handlers/default.js +0 -90
- package/dist/esm/contracts/handlers/delegate.js +0 -87
- package/dist/esm/contracts/handlers/helpers.js +0 -110
- package/dist/esm/contracts/handlers/index.js +0 -12
- package/dist/esm/contracts/handlers/registry.js +0 -86
- package/dist/esm/contracts/handlers/vhtlc.js +0 -191
- package/dist/esm/contracts/index.js +0 -13
- package/dist/esm/contracts/types.js +0 -1
- package/dist/esm/contracts/vtxoOwnership.js +0 -69
- package/dist/esm/extension/asset/assetGroup.js +0 -224
- package/dist/esm/extension/asset/assetId.js +0 -148
- package/dist/esm/extension/asset/assetInput.js +0 -217
- package/dist/esm/extension/asset/assetOutput.js +0 -169
- package/dist/esm/extension/asset/assetRef.js +0 -144
- package/dist/esm/extension/asset/index.js +0 -8
- package/dist/esm/extension/asset/metadata.js +0 -182
- package/dist/esm/extension/asset/packet.js +0 -110
- package/dist/esm/extension/asset/types.js +0 -19
- package/dist/esm/extension/asset/utils.js +0 -99
- package/dist/esm/extension/index.js +0 -248
- package/dist/esm/extension/packet.js +0 -16
- package/dist/esm/forfeit.js +0 -41
- package/dist/esm/identity/descriptor.js +0 -161
- package/dist/esm/identity/descriptorProvider.js +0 -1
- package/dist/esm/identity/hdCapableIdentity.js +0 -1
- package/dist/esm/identity/index.js +0 -12
- package/dist/esm/identity/seedIdentity.js +0 -453
- package/dist/esm/identity/serialize.js +0 -164
- package/dist/esm/identity/singleKey.js +0 -121
- package/dist/esm/identity/staticDescriptorProvider.js +0 -61
- package/dist/esm/index.js +0 -87
- package/dist/esm/intent/index.js +0 -255
- package/dist/esm/musig2/index.js +0 -3
- package/dist/esm/musig2/keys.js +0 -21
- package/dist/esm/musig2/nonces.js +0 -11
- package/dist/esm/musig2/sign.js +0 -63
- package/dist/esm/networks.js +0 -22
- package/dist/esm/package.json +0 -3
- package/dist/esm/providers/ark.js +0 -572
- package/dist/esm/providers/delegator.js +0 -81
- package/dist/esm/providers/electrum.js +0 -864
- package/dist/esm/providers/errors.js +0 -54
- package/dist/esm/providers/expoArk.js +0 -78
- package/dist/esm/providers/expoIndexer.js +0 -107
- package/dist/esm/providers/expoUtils.js +0 -87
- package/dist/esm/providers/indexer.js +0 -626
- package/dist/esm/providers/onchain.js +0 -258
- package/dist/esm/providers/utils.js +0 -117
- package/dist/esm/repositories/contractRepository.js +0 -1
- package/dist/esm/repositories/inMemory/contractRepository.js +0 -51
- package/dist/esm/repositories/inMemory/walletRepository.js +0 -111
- package/dist/esm/repositories/index.js +0 -10
- package/dist/esm/repositories/indexedDB/contractRepository.js +0 -183
- package/dist/esm/repositories/indexedDB/db.js +0 -4
- package/dist/esm/repositories/indexedDB/manager.js +0 -95
- package/dist/esm/repositories/indexedDB/schema.js +0 -199
- package/dist/esm/repositories/indexedDB/walletRepository.js +0 -470
- package/dist/esm/repositories/indexedDB/websqlAdapter.js +0 -138
- package/dist/esm/repositories/migrations/contractRepositoryImpl.js +0 -121
- package/dist/esm/repositories/migrations/fromStorageAdapter.js +0 -58
- package/dist/esm/repositories/migrations/walletRepositoryImpl.js +0 -180
- package/dist/esm/repositories/realm/contractRepository.js +0 -112
- package/dist/esm/repositories/realm/index.js +0 -3
- package/dist/esm/repositories/realm/schemas.js +0 -153
- package/dist/esm/repositories/realm/types.js +0 -6
- package/dist/esm/repositories/realm/walletRepository.js +0 -301
- package/dist/esm/repositories/scriptFromAddress.js +0 -13
- package/dist/esm/repositories/serialization.js +0 -67
- package/dist/esm/repositories/sqlite/contractRepository.js +0 -131
- package/dist/esm/repositories/sqlite/index.js +0 -2
- package/dist/esm/repositories/sqlite/types.js +0 -1
- package/dist/esm/repositories/sqlite/walletRepository.js +0 -437
- package/dist/esm/repositories/walletRepository.js +0 -1
- package/dist/esm/script/address.js +0 -104
- package/dist/esm/script/base.js +0 -179
- package/dist/esm/script/default.js +0 -54
- package/dist/esm/script/delegate.js +0 -50
- package/dist/esm/script/tapscript.js +0 -615
- package/dist/esm/script/vhtlc.js +0 -167
- package/dist/esm/storage/asyncStorage.js +0 -46
- package/dist/esm/storage/fileSystem.js +0 -104
- package/dist/esm/storage/inMemory.js +0 -20
- package/dist/esm/storage/index.js +0 -1
- package/dist/esm/storage/indexedDB.js +0 -97
- package/dist/esm/storage/localStorage.js +0 -47
- package/dist/esm/tree/signingSession.js +0 -191
- package/dist/esm/tree/txTree.js +0 -188
- package/dist/esm/tree/validation.js +0 -101
- package/dist/esm/utils/anchor.js +0 -31
- package/dist/esm/utils/arkTransaction.js +0 -264
- package/dist/esm/utils/bip21.js +0 -123
- package/dist/esm/utils/syncCursors.js +0 -119
- package/dist/esm/utils/timelock.js +0 -22
- package/dist/esm/utils/transaction.js +0 -24
- package/dist/esm/utils/transactionHistory.js +0 -180
- package/dist/esm/utils/txSizeEstimator.js +0 -128
- package/dist/esm/utils/unknownFields.js +0 -169
- package/dist/esm/wallet/asset-manager.js +0 -325
- package/dist/esm/wallet/asset.js +0 -113
- package/dist/esm/wallet/batch.js +0 -180
- package/dist/esm/wallet/delegator.js +0 -297
- package/dist/esm/wallet/expo/background.js +0 -111
- package/dist/esm/wallet/expo/index.js +0 -2
- package/dist/esm/wallet/expo/wallet.js +0 -193
- package/dist/esm/wallet/hdDescriptorProvider.js +0 -155
- package/dist/esm/wallet/index.js +0 -75
- package/dist/esm/wallet/onchain.js +0 -285
- package/dist/esm/wallet/ramps.js +0 -212
- package/dist/esm/wallet/serviceWorker/wallet-message-handler.js +0 -946
- package/dist/esm/wallet/serviceWorker/wallet.js +0 -1168
- package/dist/esm/wallet/unroll.js +0 -285
- package/dist/esm/wallet/utils.js +0 -103
- package/dist/esm/wallet/validation.js +0 -142
- package/dist/esm/wallet/vtxo-manager.js +0 -1136
- package/dist/esm/wallet/wallet.js +0 -2041
- package/dist/esm/worker/browser/service-worker-manager.js +0 -177
- package/dist/esm/worker/browser/utils.js +0 -63
- package/dist/esm/worker/errors.js +0 -11
- package/dist/esm/worker/expo/asyncStorageTaskQueue.js +0 -74
- package/dist/esm/worker/expo/index.js +0 -4
- package/dist/esm/worker/expo/processors/contractPollProcessor.js +0 -59
- package/dist/esm/worker/expo/processors/index.js +0 -1
- package/dist/esm/worker/expo/taskQueue.js +0 -37
- package/dist/esm/worker/expo/taskRunner.js +0 -69
- package/dist/esm/worker/messageBus.js +0 -469
- package/dist/types/adapters/asyncStorage.d.ts +0 -2
- package/dist/types/adapters/expo.d.ts +0 -4
- package/dist/types/adapters/fileSystem.d.ts +0 -2
- package/dist/types/adapters/indexedDB.d.ts +0 -2
- package/dist/types/adapters/localStorage.d.ts +0 -2
- package/dist/types/arkfee/celenv.d.ts +0 -25
- package/dist/types/arkfee/estimator.d.ts +0 -49
- package/dist/types/arkfee/index.d.ts +0 -2
- package/dist/types/arkfee/types.d.ts +0 -38
- package/dist/types/arknote/index.d.ts +0 -84
- package/dist/types/bip322/index.d.ts +0 -55
- package/dist/types/contracts/arkcontract.d.ts +0 -99
- package/dist/types/contracts/contractManager.d.ts +0 -381
- package/dist/types/contracts/contractWatcher.d.ts +0 -217
- package/dist/types/contracts/handlers/default.d.ts +0 -19
- package/dist/types/contracts/handlers/delegate.d.ts +0 -21
- package/dist/types/contracts/handlers/helpers.d.ts +0 -19
- package/dist/types/contracts/handlers/index.d.ts +0 -7
- package/dist/types/contracts/handlers/registry.d.ts +0 -65
- package/dist/types/contracts/handlers/vhtlc.d.ts +0 -32
- package/dist/types/contracts/index.d.ts +0 -14
- package/dist/types/contracts/types.d.ts +0 -233
- package/dist/types/contracts/vtxoOwnership.d.ts +0 -33
- package/dist/types/extension/asset/assetGroup.d.ts +0 -119
- package/dist/types/extension/asset/assetId.d.ts +0 -83
- package/dist/types/extension/asset/assetInput.d.ts +0 -64
- package/dist/types/extension/asset/assetOutput.d.ts +0 -54
- package/dist/types/extension/asset/assetRef.d.ts +0 -91
- package/dist/types/extension/asset/index.d.ts +0 -8
- package/dist/types/extension/asset/metadata.d.ts +0 -52
- package/dist/types/extension/asset/packet.d.ts +0 -41
- package/dist/types/extension/asset/types.d.ts +0 -16
- package/dist/types/extension/asset/utils.d.ts +0 -21
- package/dist/types/extension/index.d.ts +0 -56
- package/dist/types/extension/packet.d.ts +0 -21
- package/dist/types/forfeit.d.ts +0 -18
- package/dist/types/identity/descriptor.d.ts +0 -61
- package/dist/types/identity/descriptorProvider.d.ts +0 -35
- package/dist/types/identity/hdCapableIdentity.d.ts +0 -44
- package/dist/types/identity/index.d.ts +0 -56
- package/dist/types/identity/seedIdentity.d.ts +0 -254
- package/dist/types/identity/serialize.d.ts +0 -96
- package/dist/types/identity/singleKey.d.ts +0 -62
- package/dist/types/identity/staticDescriptorProvider.d.ts +0 -18
- package/dist/types/index.d.ts +0 -59
- package/dist/types/intent/index.d.ts +0 -86
- package/dist/types/musig2/index.d.ts +0 -4
- package/dist/types/musig2/keys.d.ts +0 -9
- package/dist/types/musig2/nonces.d.ts +0 -14
- package/dist/types/musig2/sign.d.ts +0 -27
- package/dist/types/networks.d.ts +0 -16
- package/dist/types/providers/ark.d.ts +0 -369
- package/dist/types/providers/delegator.d.ts +0 -82
- package/dist/types/providers/electrum.d.ts +0 -312
- package/dist/types/providers/errors.d.ts +0 -13
- package/dist/types/providers/expoArk.d.ts +0 -22
- package/dist/types/providers/expoIndexer.d.ts +0 -18
- package/dist/types/providers/expoUtils.d.ts +0 -18
- package/dist/types/providers/indexer.d.ts +0 -301
- package/dist/types/providers/onchain.d.ts +0 -148
- package/dist/types/providers/utils.d.ts +0 -12
- package/dist/types/repositories/contractRepository.d.ts +0 -32
- package/dist/types/repositories/inMemory/contractRepository.d.ts +0 -17
- package/dist/types/repositories/inMemory/walletRepository.d.ts +0 -29
- package/dist/types/repositories/index.d.ts +0 -9
- package/dist/types/repositories/indexedDB/contractRepository.d.ts +0 -21
- package/dist/types/repositories/indexedDB/db.d.ts +0 -4
- package/dist/types/repositories/indexedDB/manager.d.ts +0 -25
- package/dist/types/repositories/indexedDB/schema.d.ts +0 -9
- package/dist/types/repositories/indexedDB/walletRepository.d.ts +0 -28
- package/dist/types/repositories/indexedDB/websqlAdapter.d.ts +0 -49
- package/dist/types/repositories/migrations/contractRepositoryImpl.d.ts +0 -24
- package/dist/types/repositories/migrations/fromStorageAdapter.d.ts +0 -19
- package/dist/types/repositories/migrations/walletRepositoryImpl.d.ts +0 -27
- package/dist/types/repositories/realm/contractRepository.d.ts +0 -24
- package/dist/types/repositories/realm/index.d.ts +0 -4
- package/dist/types/repositories/realm/types.d.ts +0 -16
- package/dist/types/repositories/realm/walletRepository.d.ts +0 -34
- package/dist/types/repositories/scriptFromAddress.d.ts +0 -9
- package/dist/types/repositories/serialization.d.ts +0 -65
- package/dist/types/repositories/sqlite/contractRepository.d.ts +0 -33
- package/dist/types/repositories/sqlite/index.d.ts +0 -3
- package/dist/types/repositories/sqlite/types.d.ts +0 -18
- package/dist/types/repositories/walletRepository.d.ts +0 -72
- package/dist/types/script/address.d.ts +0 -67
- package/dist/types/script/base.d.ts +0 -105
- package/dist/types/script/default.d.ts +0 -44
- package/dist/types/script/delegate.d.ts +0 -40
- package/dist/types/script/tapscript.d.ts +0 -169
- package/dist/types/script/vhtlc.d.ts +0 -66
- package/dist/types/tree/signingSession.d.ts +0 -37
- package/dist/types/tree/txTree.d.ts +0 -28
- package/dist/types/tree/validation.d.ts +0 -15
- package/dist/types/utils/anchor.d.ts +0 -19
- package/dist/types/utils/arkTransaction.d.ts +0 -49
- package/dist/types/utils/bip21.d.ts +0 -38
- package/dist/types/utils/syncCursors.d.ts +0 -60
- package/dist/types/utils/timelock.d.ts +0 -9
- package/dist/types/utils/transaction.d.ts +0 -13
- package/dist/types/utils/transactionHistory.d.ts +0 -15
- package/dist/types/utils/txSizeEstimator.d.ts +0 -40
- package/dist/types/utils/unknownFields.d.ts +0 -83
- package/dist/types/wallet/asset-manager.d.ts +0 -69
- package/dist/types/wallet/asset.d.ts +0 -21
- package/dist/types/wallet/batch.d.ts +0 -107
- package/dist/types/wallet/delegator.d.ts +0 -48
- package/dist/types/wallet/expo/background.d.ts +0 -66
- package/dist/types/wallet/expo/index.d.ts +0 -4
- package/dist/types/wallet/hdDescriptorProvider.d.ts +0 -93
- package/dist/types/wallet/index.d.ts +0 -755
- package/dist/types/wallet/onchain.d.ts +0 -109
- package/dist/types/wallet/ramps.d.ts +0 -64
- package/dist/types/wallet/serviceWorker/wallet-message-handler.d.ts +0 -543
- package/dist/types/wallet/serviceWorker/wallet.d.ts +0 -238
- package/dist/types/wallet/unroll.d.ts +0 -114
- package/dist/types/wallet/utils.d.ts +0 -36
- package/dist/types/wallet/validation.d.ts +0 -24
- package/dist/types/wallet/vtxo-manager.d.ts +0 -476
- package/dist/types/wallet/wallet.d.ts +0 -360
- package/dist/types/worker/browser/service-worker-manager.d.ts +0 -32
- package/dist/types/worker/browser/utils.d.ts +0 -17
- package/dist/types/worker/errors.d.ts +0 -7
- package/dist/types/worker/expo/index.d.ts +0 -7
- package/dist/types/worker/expo/processors/contractPollProcessor.d.ts +0 -19
- package/dist/types/worker/expo/processors/index.d.ts +0 -1
- package/dist/types/worker/expo/taskQueue.d.ts +0 -50
- package/dist/types/worker/expo/taskRunner.d.ts +0 -66
- package/dist/types/worker/messageBus.d.ts +0 -188
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { Contract } from "../../contracts/types.js";
|
|
2
|
-
import { ContractFilter, ContractRepository } from "../contractRepository.js";
|
|
3
|
-
import { SQLExecutor } from "./types.js";
|
|
4
|
-
interface SQLiteContractRepositoryOptions {
|
|
5
|
-
/** Table name prefix (default: "ark_") */
|
|
6
|
-
prefix?: string;
|
|
7
|
-
}
|
|
8
|
-
/**
|
|
9
|
-
* SQLite-based implementation of ContractRepository.
|
|
10
|
-
*
|
|
11
|
-
* Uses the SQLExecutor interface so consumers can plug in any SQLite driver
|
|
12
|
-
* (expo-sqlite, better-sqlite3, etc.).
|
|
13
|
-
*
|
|
14
|
-
* Tables are created lazily on first operation via `ensureInit()`.
|
|
15
|
-
* The consumer owns the SQLExecutor lifecycle — `[Symbol.asyncDispose]` is a no-op.
|
|
16
|
-
*/
|
|
17
|
-
export declare class SQLiteContractRepository implements ContractRepository {
|
|
18
|
-
private readonly db;
|
|
19
|
-
readonly version: 1;
|
|
20
|
-
private initPromise;
|
|
21
|
-
private readonly prefix;
|
|
22
|
-
private readonly table;
|
|
23
|
-
constructor(db: SQLExecutor, options?: SQLiteContractRepositoryOptions);
|
|
24
|
-
private ensureInit;
|
|
25
|
-
private init;
|
|
26
|
-
[Symbol.asyncDispose](): Promise<void>;
|
|
27
|
-
clear(): Promise<void>;
|
|
28
|
-
getContracts(filter?: ContractFilter): Promise<Contract[]>;
|
|
29
|
-
saveContract(contract: Contract): Promise<void>;
|
|
30
|
-
deleteContract(script: string): Promise<void>;
|
|
31
|
-
private addFilterCondition;
|
|
32
|
-
}
|
|
33
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Minimal SQL execution interface that consumers implement
|
|
3
|
-
* to connect their SQLite (or any SQL) database to the SDK.
|
|
4
|
-
*
|
|
5
|
-
* Example for expo-sqlite:
|
|
6
|
-
* ```
|
|
7
|
-
* const executor: SQLExecutor = {
|
|
8
|
-
* run: (sql, params) => db.runAsync(sql, params ?? []),
|
|
9
|
-
* get: (sql, params) => db.getFirstAsync(sql, params ?? []),
|
|
10
|
-
* all: (sql, params) => db.getAllAsync(sql, params ?? []),
|
|
11
|
-
* };
|
|
12
|
-
* ```
|
|
13
|
-
*/
|
|
14
|
-
export interface SQLExecutor {
|
|
15
|
-
run(sql: string, params?: unknown[]): Promise<void>;
|
|
16
|
-
get<T = Record<string, unknown>>(sql: string, params?: unknown[]): Promise<T | undefined>;
|
|
17
|
-
all<T = Record<string, unknown>>(sql: string, params?: unknown[]): Promise<T[]>;
|
|
18
|
-
}
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { ArkTransaction, ExtendedCoin, ExtendedVirtualCoin } from "../wallet/index.js";
|
|
2
|
-
export interface WalletState {
|
|
3
|
-
/** Arbitrary stored wallet settings. */
|
|
4
|
-
settings?: Record<string, any>;
|
|
5
|
-
/**
|
|
6
|
-
* High-water mark for VTXO indexer syncs, in milliseconds.
|
|
7
|
-
*
|
|
8
|
-
* Reused the legacy `lastSyncTime` column name to avoid an
|
|
9
|
-
* `ALTER TABLE` migration; the value is interpreted as the new
|
|
10
|
-
* "max indexer `updatedAt`" cursor only after `settings.vtxoCursorMigrated`
|
|
11
|
-
* is set, so pre-existing values written by the buggy pre-PR sync
|
|
12
|
-
* are ignored and force a one-shot re-bootstrap on upgrade.
|
|
13
|
-
*/
|
|
14
|
-
lastSyncTime?: number;
|
|
15
|
-
}
|
|
16
|
-
/** Stored commitment transaction metadata. */
|
|
17
|
-
export type CommitmentTxRecord = {
|
|
18
|
-
/** Commitment transaction id. */
|
|
19
|
-
txid: string;
|
|
20
|
-
/** Creation timestamp in milliseconds. */
|
|
21
|
-
createdAt: number;
|
|
22
|
-
};
|
|
23
|
-
export interface VtxoRepositoryKey {
|
|
24
|
-
/** Authoritative ownership key. */
|
|
25
|
-
script: string;
|
|
26
|
-
/** Legacy storage bucket. Required by all current backends; throw if absent. */
|
|
27
|
-
address?: string;
|
|
28
|
-
}
|
|
29
|
-
export interface WalletRepository extends AsyncDisposable {
|
|
30
|
-
readonly version: 1;
|
|
31
|
-
/**
|
|
32
|
-
* Clear all data from storage.
|
|
33
|
-
*/
|
|
34
|
-
clear(): Promise<void>;
|
|
35
|
-
/** Fetch stored virtual outputs for an address. */
|
|
36
|
-
getVtxos(address: string): Promise<ExtendedVirtualCoin[]>;
|
|
37
|
-
/** Save virtual outputs for an address. */
|
|
38
|
-
saveVtxos(address: string, vtxos: ExtendedVirtualCoin[]): Promise<void>;
|
|
39
|
-
/** Delete stored virtual outputs for an address. */
|
|
40
|
-
deleteVtxos(address: string): Promise<void>;
|
|
41
|
-
/**
|
|
42
|
-
* Fetch stored virtual outputs for a script.
|
|
43
|
-
* @optional SDK backends implement this; custom backends fall back to Tier 1.
|
|
44
|
-
*/
|
|
45
|
-
getVtxosForScript?(script: string): Promise<ExtendedVirtualCoin[]>;
|
|
46
|
-
/**
|
|
47
|
-
* Save virtual outputs for a script.
|
|
48
|
-
* @optional SDK backends implement this; custom backends fall back to Tier 1.
|
|
49
|
-
*/
|
|
50
|
-
saveVtxosForScript?(key: VtxoRepositoryKey, vtxos: ExtendedVirtualCoin[]): Promise<void>;
|
|
51
|
-
/**
|
|
52
|
-
* Delete stored virtual outputs for a script.
|
|
53
|
-
* @optional SDK backends implement this; custom backends fall back to Tier 1.
|
|
54
|
-
*/
|
|
55
|
-
deleteVtxosForScript?(script: string): Promise<void>;
|
|
56
|
-
/** Fetch stored boarding inputs for an address. */
|
|
57
|
-
getUtxos(address: string): Promise<ExtendedCoin[]>;
|
|
58
|
-
/** Save boarding inputs for an address. */
|
|
59
|
-
saveUtxos(address: string, utxos: ExtendedCoin[]): Promise<void>;
|
|
60
|
-
/** Delete stored boarding inputs for an address. */
|
|
61
|
-
deleteUtxos(address: string): Promise<void>;
|
|
62
|
-
/** Fetch stored transaction history for an address. */
|
|
63
|
-
getTransactionHistory(address: string): Promise<ArkTransaction[]>;
|
|
64
|
-
/** Save transaction history for an address. */
|
|
65
|
-
saveTransactions(address: string, txs: ArkTransaction[]): Promise<void>;
|
|
66
|
-
/** Delete stored transaction history for an address. */
|
|
67
|
-
deleteTransactions(address: string): Promise<void>;
|
|
68
|
-
/** Fetch stored wallet state. */
|
|
69
|
-
getWalletState(): Promise<WalletState | null>;
|
|
70
|
-
/** Save wallet state. */
|
|
71
|
-
saveWalletState(state: WalletState): Promise<void>;
|
|
72
|
-
}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { Bytes } from "@scure/btc-signer/utils.js";
|
|
2
|
-
/**
|
|
3
|
-
* ArkAddress allows creating and decoding bech32m-encoded Arkade addresses.
|
|
4
|
-
*
|
|
5
|
-
* An Arkade address is composed of:
|
|
6
|
-
* - a human readable prefix (hrp)
|
|
7
|
-
* - a version byte (1 byte)
|
|
8
|
-
* - a server public key (32 bytes)
|
|
9
|
-
* - a vtxo taproot public key (32 bytes)
|
|
10
|
-
*
|
|
11
|
-
* @remarks
|
|
12
|
-
* This is an Arkade-specific address format.
|
|
13
|
-
* It is distinct from the Taproot onchain address returned by `VtxoScript.onchainAddress`.
|
|
14
|
-
*
|
|
15
|
-
* @see VtxoScript
|
|
16
|
-
*
|
|
17
|
-
* @example
|
|
18
|
-
* ```typescript
|
|
19
|
-
* const address = new ArkAddress(
|
|
20
|
-
* new Uint8Array(32), // server public key
|
|
21
|
-
* new Uint8Array(32), // vtxo taproot public key
|
|
22
|
-
* "ark"
|
|
23
|
-
* );
|
|
24
|
-
*
|
|
25
|
-
* const encoded = address.encode();
|
|
26
|
-
* console.log("address: ", encoded);
|
|
27
|
-
*
|
|
28
|
-
* const decoded = ArkAddress.decode(encoded);
|
|
29
|
-
* ```
|
|
30
|
-
*/
|
|
31
|
-
export declare class ArkAddress {
|
|
32
|
-
readonly serverPubKey: Bytes;
|
|
33
|
-
readonly vtxoTaprootKey: Bytes;
|
|
34
|
-
readonly hrp: string;
|
|
35
|
-
readonly version: number;
|
|
36
|
-
/**
|
|
37
|
-
* Create an Arkade address from its server public key, Taproot output key, and prefix.
|
|
38
|
-
*
|
|
39
|
-
* @param serverPubKey - 32-byte Arkade server public key
|
|
40
|
-
* @param vtxoTaprootKey - 32-byte Taproot output key (a.k.a. tweaked public key)
|
|
41
|
-
* @param hrp - Bech32 human-readable prefix
|
|
42
|
-
* @param version - Address version byte
|
|
43
|
-
* @defaultValue `version = 0`
|
|
44
|
-
* @throws Error if either public key is not 32 bytes long
|
|
45
|
-
*/
|
|
46
|
-
constructor(serverPubKey: Bytes, vtxoTaprootKey: Bytes, hrp?: string, version?: number);
|
|
47
|
-
/**
|
|
48
|
-
* Decode an Arkade address from its bech32m string form.
|
|
49
|
-
*
|
|
50
|
-
* @param address - Bech32m-encoded Arkade address
|
|
51
|
-
* @returns Decoded Arkade address
|
|
52
|
-
* @throws Error if the address is malformed or has an invalid payload length
|
|
53
|
-
* @see encode
|
|
54
|
-
*/
|
|
55
|
-
static decode(address: string): ArkAddress;
|
|
56
|
-
/**
|
|
57
|
-
* Encode the address to its bech32m string form.
|
|
58
|
-
*
|
|
59
|
-
* @returns Bech32m-encoded Arkade address
|
|
60
|
-
* @see decode
|
|
61
|
-
*/
|
|
62
|
-
encode(): string;
|
|
63
|
-
/** ScriptPubKey used to send non-dust funds to the address. */
|
|
64
|
-
get pkScript(): Bytes;
|
|
65
|
-
/** ScriptPubKey used to send sub-dust funds to the address. */
|
|
66
|
-
get subdustPkScript(): Bytes;
|
|
67
|
-
}
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import { NETWORK } from "@scure/btc-signer";
|
|
2
|
-
import { PSBTOutput } from "@scure/btc-signer/psbt.js";
|
|
3
|
-
import { Bytes } from "@scure/btc-signer/utils.js";
|
|
4
|
-
import { ArkAddress } from "./address.js";
|
|
5
|
-
import { ConditionCSVMultisigTapscript, CSVMultisigTapscript } from "./tapscript.js";
|
|
6
|
-
export type TapLeafScript = [
|
|
7
|
-
{
|
|
8
|
-
version: number;
|
|
9
|
-
internalKey: Bytes;
|
|
10
|
-
merklePath: Bytes[];
|
|
11
|
-
},
|
|
12
|
-
Bytes
|
|
13
|
-
];
|
|
14
|
-
export declare const TapTreeCoder: (typeof PSBTOutput.tapTree)[2];
|
|
15
|
-
export declare function scriptFromTapLeafScript(leaf: TapLeafScript): Bytes;
|
|
16
|
-
/**
|
|
17
|
-
* VtxoScript is a script that contains a list of tapleaf scripts.
|
|
18
|
-
* It is used to create virtual output scripts.
|
|
19
|
-
*
|
|
20
|
-
* @see ArkAddress
|
|
21
|
-
*
|
|
22
|
-
* @example
|
|
23
|
-
* ```typescript
|
|
24
|
-
* const vtxoScript = new VtxoScript([new Uint8Array(32), new Uint8Array(32)]);
|
|
25
|
-
* ```
|
|
26
|
-
*/
|
|
27
|
-
export declare class VtxoScript {
|
|
28
|
-
readonly scripts: Bytes[];
|
|
29
|
-
readonly leaves: TapLeafScript[];
|
|
30
|
-
readonly tweakedPublicKey: Bytes;
|
|
31
|
-
/**
|
|
32
|
-
* Decode a virtual output script from an encoded TapTree.
|
|
33
|
-
*
|
|
34
|
-
* @param tapTree - Encoded TapTree bytes
|
|
35
|
-
* @returns Decoded virtual output script
|
|
36
|
-
* @throws Error if the TapTree cannot be decoded into a valid script set
|
|
37
|
-
* @see encode
|
|
38
|
-
*/
|
|
39
|
-
static decode(tapTree: Bytes): VtxoScript;
|
|
40
|
-
/**
|
|
41
|
-
* Create a virtual output script from its tapleaf scripts.
|
|
42
|
-
*
|
|
43
|
-
* @param scripts - Raw tapscript bytes for each leaf
|
|
44
|
-
* @throws Error if the provided leaves cannot produce a valid Taproot tree
|
|
45
|
-
*/
|
|
46
|
-
constructor(scripts: Bytes[]);
|
|
47
|
-
/**
|
|
48
|
-
* Encode the virtual output script to a TapTree byte representation.
|
|
49
|
-
*
|
|
50
|
-
* @returns Encoded TapTree bytes
|
|
51
|
-
* @see decode
|
|
52
|
-
*/
|
|
53
|
-
encode(): Bytes;
|
|
54
|
-
/**
|
|
55
|
-
* Build the Arkade address corresponding to this virtual output script.
|
|
56
|
-
*
|
|
57
|
-
* @param prefix - Bech32 human-readable prefix
|
|
58
|
-
* @param serverPubKey - 32-byte Arkade server public key
|
|
59
|
-
* @returns Arkade address for this script
|
|
60
|
-
* @see ArkAddress
|
|
61
|
-
*/
|
|
62
|
-
address(prefix: string, serverPubKey: Bytes): ArkAddress;
|
|
63
|
-
get pkScript(): Bytes;
|
|
64
|
-
/**
|
|
65
|
-
* Build the Taproot onchain address corresponding to this virtual output script.
|
|
66
|
-
*
|
|
67
|
-
* @param network - Bitcoin network descriptor
|
|
68
|
-
* @returns Taproot onchain address
|
|
69
|
-
* @see address
|
|
70
|
-
*/
|
|
71
|
-
onchainAddress(network: typeof NETWORK): string;
|
|
72
|
-
/**
|
|
73
|
-
* Look up a tapleaf script by its hex-encoded tapscript body.
|
|
74
|
-
*
|
|
75
|
-
* @param scriptHex - Hex-encoded tapscript body without the leaf version byte
|
|
76
|
-
* @returns Matching tapleaf script
|
|
77
|
-
* @throws Error if no matching leaf exists
|
|
78
|
-
*/
|
|
79
|
-
findLeaf(scriptHex: string): TapLeafScript;
|
|
80
|
-
/**
|
|
81
|
-
* Return all unilateral exit paths embedded in the virtual output script.
|
|
82
|
-
*
|
|
83
|
-
* @returns CSV-based exit paths found in the leaves
|
|
84
|
-
* @see getSequence
|
|
85
|
-
*/
|
|
86
|
-
exitPaths(): Array<CSVMultisigTapscript.Type | ConditionCSVMultisigTapscript.Type>;
|
|
87
|
-
}
|
|
88
|
-
export type EncodedVtxoScript = {
|
|
89
|
-
tapTree: Bytes;
|
|
90
|
-
};
|
|
91
|
-
/**
|
|
92
|
-
* Extract the timelock value encoded in a timelocked tapleaf, if any.
|
|
93
|
-
*
|
|
94
|
-
* The return value is unit-ambiguous: for a CSV leaf it is a BIP-68
|
|
95
|
-
* nSequence (relative timelock); for a CLTV leaf it is an absolute
|
|
96
|
-
* nLockTime. Callers must know which leaf shape they are inspecting to
|
|
97
|
-
* interpret the number correctly, and must not copy a CSV result into
|
|
98
|
-
* `Transaction.lockTime` (or vice versa).
|
|
99
|
-
*
|
|
100
|
-
* @param tapLeafScript - Tapleaf script to inspect
|
|
101
|
-
* @returns The encoded timelock value, or `undefined` when neither a CSV
|
|
102
|
-
* nor CLTV path is present
|
|
103
|
-
* @see VtxoScript.exitPaths
|
|
104
|
-
*/
|
|
105
|
-
export declare function getSequence(tapLeafScript: TapLeafScript): number | undefined;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { Bytes } from "@scure/btc-signer/utils.js";
|
|
2
|
-
import { TapLeafScript, VtxoScript } from "./base.js";
|
|
3
|
-
import { RelativeTimelock } from "./tapscript.js";
|
|
4
|
-
/**
|
|
5
|
-
* DefaultVtxo is the default implementation of a VtxoScript.
|
|
6
|
-
* It contains 1 forfeit path and 1 exit path.
|
|
7
|
-
* - forfeit = (Alice + Server)
|
|
8
|
-
* - exit = (Alice) after csvTimelock
|
|
9
|
-
*/
|
|
10
|
-
export declare namespace DefaultVtxo {
|
|
11
|
-
/**
|
|
12
|
-
* Options is the options for the DefaultVtxo.Script class.
|
|
13
|
-
* csvTimelock is the exit path timelock, default is 144 blocks (1 day).
|
|
14
|
-
*/
|
|
15
|
-
interface Options {
|
|
16
|
-
pubKey: Bytes;
|
|
17
|
-
serverPubKey: Bytes;
|
|
18
|
-
csvTimelock?: RelativeTimelock;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* DefaultVtxo.Script is the class letting to create the vtxo script.
|
|
22
|
-
* @example
|
|
23
|
-
* ```typescript
|
|
24
|
-
* const vtxoScript = new DefaultVtxo.Script({
|
|
25
|
-
* pubKey: new Uint8Array(32),
|
|
26
|
-
* serverPubKey: new Uint8Array(32),
|
|
27
|
-
* });
|
|
28
|
-
*
|
|
29
|
-
* console.log("script pub key:", vtxoScript.pkScript)
|
|
30
|
-
* ```
|
|
31
|
-
*/
|
|
32
|
-
class Script extends VtxoScript {
|
|
33
|
-
readonly options: Options;
|
|
34
|
-
static readonly DEFAULT_TIMELOCK: RelativeTimelock;
|
|
35
|
-
readonly forfeitScript: string;
|
|
36
|
-
readonly exitScript: string;
|
|
37
|
-
/** Create the default virtual output script with one forfeit path and one exit path. */
|
|
38
|
-
constructor(options: Options);
|
|
39
|
-
/** Return the forfeit tapleaf script. */
|
|
40
|
-
forfeit(): TapLeafScript;
|
|
41
|
-
/** Return the unilateral exit tapleaf script. */
|
|
42
|
-
exit(): TapLeafScript;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { Bytes } from "@scure/btc-signer/utils.js";
|
|
2
|
-
import { DefaultVtxo } from "./default.js";
|
|
3
|
-
import { TapLeafScript, VtxoScript } from "./base.js";
|
|
4
|
-
/**
|
|
5
|
-
* DelegateVtxo extends DefaultVtxo with an extra delegator path
|
|
6
|
-
*/
|
|
7
|
-
export declare namespace DelegateVtxo {
|
|
8
|
-
/**
|
|
9
|
-
* Options extends DefaultVtxo.Options and adds a delegatePubKey
|
|
10
|
-
*/
|
|
11
|
-
interface Options extends DefaultVtxo.Options {
|
|
12
|
-
delegatePubKey: Bytes;
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* DelegateVtxo.Script extends DefaultVtxo.Script and adds a delegate path.
|
|
16
|
-
* @example
|
|
17
|
-
* ```typescript
|
|
18
|
-
* const vtxoScript = new DelegateVtxo.Script({
|
|
19
|
-
* pubKey: new Uint8Array(32),
|
|
20
|
-
* serverPubKey: new Uint8Array(32),
|
|
21
|
-
* delegatePubKey: new Uint8Array(32),
|
|
22
|
-
* });
|
|
23
|
-
*
|
|
24
|
-
* console.log("script pub key:", vtxoScript.pkScript)
|
|
25
|
-
* ```
|
|
26
|
-
*/
|
|
27
|
-
class Script extends VtxoScript {
|
|
28
|
-
readonly options: Options;
|
|
29
|
-
readonly defaultVtxo: DefaultVtxo.Script;
|
|
30
|
-
readonly delegateScript: string;
|
|
31
|
-
/** Create a delegated virtual output script with forfeit, exit, and delegate paths. */
|
|
32
|
-
constructor(options: Options);
|
|
33
|
-
/** Return the forfeit tapleaf script. */
|
|
34
|
-
forfeit(): TapLeafScript;
|
|
35
|
-
/** Return the unilateral exit tapleaf script. */
|
|
36
|
-
exit(): TapLeafScript;
|
|
37
|
-
/** Return the delegate tapleaf script. */
|
|
38
|
-
delegate(): TapLeafScript;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
import { Bytes } from "@scure/btc-signer/utils.js";
|
|
2
|
-
/**
|
|
3
|
-
* RelativeTimelock lets to create timelocked with CHECKSEQUENCEVERIFY script.
|
|
4
|
-
*
|
|
5
|
-
* @example
|
|
6
|
-
* ```typescript
|
|
7
|
-
* const timelock = { value: 144n, type: "blocks" }; // 1 day in blocks
|
|
8
|
-
* const timelock = { value: 512n, type: "seconds" }; // 8 minutes in seconds
|
|
9
|
-
* ```
|
|
10
|
-
*/
|
|
11
|
-
export type RelativeTimelock = {
|
|
12
|
-
value: bigint;
|
|
13
|
-
type: "seconds" | "blocks";
|
|
14
|
-
};
|
|
15
|
-
export declare enum TapscriptType {
|
|
16
|
-
Multisig = "multisig",
|
|
17
|
-
CSVMultisig = "csv-multisig",
|
|
18
|
-
ConditionCSVMultisig = "condition-csv-multisig",
|
|
19
|
-
ConditionMultisig = "condition-multisig",
|
|
20
|
-
CLTVMultisig = "cltv-multisig"
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* ArkTapscript is the base element of vtxo scripts.
|
|
24
|
-
* It is used to encode and decode the different types of vtxo scripts.
|
|
25
|
-
*/
|
|
26
|
-
export interface ArkTapscript<T extends TapscriptType, Params> {
|
|
27
|
-
type: T;
|
|
28
|
-
params: Params;
|
|
29
|
-
script: Uint8Array;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* decodeTapscript is a function that decodes an Arkade tapscript from a raw script.
|
|
33
|
-
*
|
|
34
|
-
* @throws {Error} if the script is not a valid Arkade tapscript
|
|
35
|
-
* @example
|
|
36
|
-
* ```typescript
|
|
37
|
-
* const arkTapscript = decodeTapscript(new Uint8Array(32));
|
|
38
|
-
* console.log("type:", arkTapscript.type);
|
|
39
|
-
* ```
|
|
40
|
-
*/
|
|
41
|
-
export declare function decodeTapscript(script: Uint8Array): ArkTapscript<TapscriptType, any>;
|
|
42
|
-
/**
|
|
43
|
-
* Implements a multi-signature tapscript.
|
|
44
|
-
*
|
|
45
|
-
* <pubkey> CHECKSIGVERIFY <pubkey> CHECKSIG
|
|
46
|
-
*
|
|
47
|
-
* @example
|
|
48
|
-
* ```typescript
|
|
49
|
-
* const multisigTapscript = MultisigTapscript.encode({ pubkeys: [new Uint8Array(32), new Uint8Array(32)] });
|
|
50
|
-
* ```
|
|
51
|
-
*/
|
|
52
|
-
export declare namespace MultisigTapscript {
|
|
53
|
-
type Type = ArkTapscript<TapscriptType.Multisig, Params>;
|
|
54
|
-
enum MultisigType {
|
|
55
|
-
CHECKSIG = 0,
|
|
56
|
-
CHECKSIGADD = 1
|
|
57
|
-
}
|
|
58
|
-
type Params = {
|
|
59
|
-
pubkeys: Bytes[];
|
|
60
|
-
type?: MultisigType;
|
|
61
|
-
};
|
|
62
|
-
/** Encode a plain multisig tapscript. */
|
|
63
|
-
function encode(params: Params): Type;
|
|
64
|
-
/** Decode a plain multisig tapscript from raw script bytes. */
|
|
65
|
-
function decode(script: Uint8Array): Type;
|
|
66
|
-
/** Return true when the tapscript is a plain multisig tapscript. */
|
|
67
|
-
function is(tapscript: ArkTapscript<any, any>): tapscript is Type;
|
|
68
|
-
}
|
|
69
|
-
/**
|
|
70
|
-
* Implements a relative timelock script that requires all specified pubkeys to sign
|
|
71
|
-
* after the relative timelock has expired. The timelock can be specified in blocks or seconds.
|
|
72
|
-
*
|
|
73
|
-
* This is the standard exit closure and it is also used for the sweep closure in vtxo trees.
|
|
74
|
-
*
|
|
75
|
-
* <sequence> CHECKSEQUENCEVERIFY DROP <pubkey> CHECKSIG
|
|
76
|
-
*
|
|
77
|
-
* @example
|
|
78
|
-
* ```typescript
|
|
79
|
-
* const csvMultisigTapscript = CSVMultisigTapscript.encode({ timelock: { type: "blocks", value: 144 }, pubkeys: [new Uint8Array(32), new Uint8Array(32)] });
|
|
80
|
-
* ```
|
|
81
|
-
*/
|
|
82
|
-
export declare namespace CSVMultisigTapscript {
|
|
83
|
-
type Type = ArkTapscript<TapscriptType.CSVMultisig, Params>;
|
|
84
|
-
type Params = {
|
|
85
|
-
timelock: RelativeTimelock;
|
|
86
|
-
} & MultisigTapscript.Params;
|
|
87
|
-
/** Encode a CSV multisig tapscript. */
|
|
88
|
-
function encode(params: Params): Type;
|
|
89
|
-
/** Decode a CSV multisig tapscript from raw script bytes. */
|
|
90
|
-
function decode(script: Uint8Array): Type;
|
|
91
|
-
/** Return true when the tapscript is a CSV multisig tapscript. */
|
|
92
|
-
function is(tapscript: ArkTapscript<any, any>): tapscript is Type;
|
|
93
|
-
function isScriptValid(script: Uint8Array): true | Error;
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* Combines a condition script with an exit closure. The resulting script requires
|
|
97
|
-
* the condition to be met, followed by the standard exit closure requirements
|
|
98
|
-
* (timelock and signatures).
|
|
99
|
-
*
|
|
100
|
-
* <conditionScript> VERIFY <sequence> CHECKSEQUENCEVERIFY DROP <pubkey> CHECKSIGVERIFY <pubkey> CHECKSIG
|
|
101
|
-
*
|
|
102
|
-
* @example
|
|
103
|
-
* ```typescript
|
|
104
|
-
* const conditionCSVMultisigTapscript = ConditionCSVMultisigTapscript.encode({ conditionScript: new Uint8Array(32), pubkeys: [new Uint8Array(32), new Uint8Array(32)] });
|
|
105
|
-
* ```
|
|
106
|
-
*/
|
|
107
|
-
export declare namespace ConditionCSVMultisigTapscript {
|
|
108
|
-
type Type = ArkTapscript<TapscriptType.ConditionCSVMultisig, Params>;
|
|
109
|
-
type Params = {
|
|
110
|
-
conditionScript: Bytes;
|
|
111
|
-
} & CSVMultisigTapscript.Params;
|
|
112
|
-
/** Encode a condition + CSV multisig tapscript. */
|
|
113
|
-
function encode(params: Params): Type;
|
|
114
|
-
/** Decode a condition + CSV multisig tapscript from raw script bytes. */
|
|
115
|
-
function decode(script: Uint8Array): Type;
|
|
116
|
-
/** Return true when the tapscript is a condition + CSV multisig tapscript. */
|
|
117
|
-
function is(tapscript: ArkTapscript<any, any>): tapscript is Type;
|
|
118
|
-
function isScriptValid(script: Uint8Array): true | Error;
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* Combines a condition script with a forfeit closure. The resulting script requires
|
|
122
|
-
* the condition to be met, followed by the standard forfeit closure requirements
|
|
123
|
-
* (multi-signature).
|
|
124
|
-
*
|
|
125
|
-
* <conditionScript> VERIFY <pubkey> CHECKSIGVERIFY <pubkey> CHECKSIG
|
|
126
|
-
*
|
|
127
|
-
* @example
|
|
128
|
-
* ```typescript
|
|
129
|
-
* const conditionMultisigTapscript = ConditionMultisigTapscript.encode({ conditionScript: new Uint8Array(32), pubkeys: [new Uint8Array(32), new Uint8Array(32)] });
|
|
130
|
-
* ```
|
|
131
|
-
*/
|
|
132
|
-
export declare namespace ConditionMultisigTapscript {
|
|
133
|
-
type Type = ArkTapscript<TapscriptType.ConditionMultisig, Params>;
|
|
134
|
-
type Params = {
|
|
135
|
-
conditionScript: Bytes;
|
|
136
|
-
} & MultisigTapscript.Params;
|
|
137
|
-
/** Encode a condition + multisig tapscript. */
|
|
138
|
-
function encode(params: Params): Type;
|
|
139
|
-
/** Decode a condition + multisig tapscript from raw script bytes. */
|
|
140
|
-
function decode(script: Uint8Array): Type;
|
|
141
|
-
/** Return true when the tapscript is a condition + multisig tapscript. */
|
|
142
|
-
function is(tapscript: ArkTapscript<any, any>): tapscript is Type;
|
|
143
|
-
function isScriptValid(script: Uint8Array): true | Error;
|
|
144
|
-
}
|
|
145
|
-
/**
|
|
146
|
-
* Implements an absolute timelock (CLTV) script combined with a forfeit closure.
|
|
147
|
-
* The script requires waiting until a specific block height/timestamp before the
|
|
148
|
-
* forfeit closure conditions can be met.
|
|
149
|
-
*
|
|
150
|
-
* <locktime> CHECKLOCKTIMEVERIFY DROP <pubkey> CHECKSIGVERIFY <pubkey> CHECKSIG
|
|
151
|
-
*
|
|
152
|
-
* @example
|
|
153
|
-
* ```typescript
|
|
154
|
-
* const cltvMultisigTapscript = CLTVMultisigTapscript.encode({ absoluteTimelock: 144, pubkeys: [new Uint8Array(32), new Uint8Array(32)] });
|
|
155
|
-
* ```
|
|
156
|
-
*/
|
|
157
|
-
export declare namespace CLTVMultisigTapscript {
|
|
158
|
-
type Type = ArkTapscript<TapscriptType.CLTVMultisig, Params>;
|
|
159
|
-
type Params = {
|
|
160
|
-
absoluteTimelock: bigint;
|
|
161
|
-
} & MultisigTapscript.Params;
|
|
162
|
-
/** Encode a CLTV multisig tapscript. */
|
|
163
|
-
function encode(params: Params): Type;
|
|
164
|
-
/** Decode a CLTV multisig tapscript from raw script bytes. */
|
|
165
|
-
function decode(script: Uint8Array): Type;
|
|
166
|
-
/** Return true when the tapscript is a CLTV multisig tapscript. */
|
|
167
|
-
function is(tapscript: ArkTapscript<any, any>): tapscript is Type;
|
|
168
|
-
function isScriptValid(script: Uint8Array): true | Error;
|
|
169
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { Bytes } from "@scure/btc-signer/utils.js";
|
|
2
|
-
import { RelativeTimelock } from "./tapscript.js";
|
|
3
|
-
import { TapLeafScript, VtxoScript } from "./base.js";
|
|
4
|
-
/** Virtual Hash Time Lock Contract (VHTLC) namespace. */
|
|
5
|
-
export declare namespace VHTLC {
|
|
6
|
-
interface Options {
|
|
7
|
-
sender: Bytes;
|
|
8
|
-
receiver: Bytes;
|
|
9
|
-
server: Bytes;
|
|
10
|
-
preimageHash: Bytes;
|
|
11
|
-
refundLocktime: bigint;
|
|
12
|
-
unilateralClaimDelay: RelativeTimelock;
|
|
13
|
-
unilateralRefundDelay: RelativeTimelock;
|
|
14
|
-
unilateralRefundWithoutReceiverDelay: RelativeTimelock;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Virtual Hash Time Lock Contract (VHTLC) script implementation.
|
|
18
|
-
*
|
|
19
|
-
* VHTLC enables atomic swaps and conditional payments in the Arkade protocol.
|
|
20
|
-
* It provides multiple spending paths:
|
|
21
|
-
*
|
|
22
|
-
* - **claim**: Receiver can claim funds by revealing the preimage
|
|
23
|
-
* - **refund**: Sender and receiver can collaboratively refund
|
|
24
|
-
* - **refundWithoutReceiver**: Sender can refund after locktime expires
|
|
25
|
-
* - **unilateralClaim**: Receiver can claim unilaterally after delay
|
|
26
|
-
* - **unilateralRefund**: Sender and receiver can refund unilaterally after delay
|
|
27
|
-
* - **unilateralRefundWithoutReceiver**: Sender can refund unilaterally after delay
|
|
28
|
-
*
|
|
29
|
-
* @example
|
|
30
|
-
* ```typescript
|
|
31
|
-
* const vhtlc = new VHTLC.Script({
|
|
32
|
-
* sender: alicePubKey,
|
|
33
|
-
* receiver: bobPubKey,
|
|
34
|
-
* server: serverPubKey,
|
|
35
|
-
* preimageHash: hash160(secret),
|
|
36
|
-
* refundLocktime: BigInt(chainTip + 10),
|
|
37
|
-
* unilateralClaimDelay: { type: 'blocks', value: 100n },
|
|
38
|
-
* unilateralRefundDelay: { type: 'blocks', value: 102n },
|
|
39
|
-
* unilateralRefundWithoutReceiverDelay: { type: 'blocks', value: 103n }
|
|
40
|
-
* });
|
|
41
|
-
* ```
|
|
42
|
-
*/
|
|
43
|
-
class Script extends VtxoScript {
|
|
44
|
-
readonly options: Options;
|
|
45
|
-
readonly claimScript: string;
|
|
46
|
-
readonly refundScript: string;
|
|
47
|
-
readonly refundWithoutReceiverScript: string;
|
|
48
|
-
readonly unilateralClaimScript: string;
|
|
49
|
-
readonly unilateralRefundScript: string;
|
|
50
|
-
readonly unilateralRefundWithoutReceiverScript: string;
|
|
51
|
-
/** Create a VHTLC script from the supplied participant keys, hash, and timelocks. */
|
|
52
|
-
constructor(options: Options);
|
|
53
|
-
/** Return the collaborative claim tapleaf script. */
|
|
54
|
-
claim(): TapLeafScript;
|
|
55
|
-
/** Return the collaborative refund tapleaf script. */
|
|
56
|
-
refund(): TapLeafScript;
|
|
57
|
-
/** Return the refund-without-receiver tapleaf script. */
|
|
58
|
-
refundWithoutReceiver(): TapLeafScript;
|
|
59
|
-
/** Return the unilateral claim tapleaf script. */
|
|
60
|
-
unilateralClaim(): TapLeafScript;
|
|
61
|
-
/** Return the unilateral refund tapleaf script. */
|
|
62
|
-
unilateralRefund(): TapLeafScript;
|
|
63
|
-
/** Return the unilateral refund-without-receiver tapleaf script. */
|
|
64
|
-
unilateralRefundWithoutReceiver(): TapLeafScript;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import * as musig2 from "../musig2/index.js";
|
|
2
|
-
import { TxTree } from "./txTree.js";
|
|
3
|
-
export declare const ErrMissingVtxoGraph: Error;
|
|
4
|
-
export declare const ErrMissingAggregateKey: Error;
|
|
5
|
-
export type Musig2PublicNonce = Pick<musig2.Nonces, "pubNonce">;
|
|
6
|
-
export type TreeNonces = Map<string, Musig2PublicNonce>;
|
|
7
|
-
export type TreePartialSigs = Map<string, musig2.PartialSig>;
|
|
8
|
-
export interface SignerSession {
|
|
9
|
-
getPublicKey(): Promise<Uint8Array>;
|
|
10
|
-
init(tree: TxTree, scriptRoot: Uint8Array, rootInputAmount: bigint): Promise<void>;
|
|
11
|
-
getNonces(): Promise<TreeNonces>;
|
|
12
|
-
aggregatedNonces(txid: string, noncesByPubkey: TreeNonces): Promise<{
|
|
13
|
-
hasAllNonces: boolean;
|
|
14
|
-
}>;
|
|
15
|
-
sign(): Promise<TreePartialSigs>;
|
|
16
|
-
}
|
|
17
|
-
export declare class TreeSignerSession implements SignerSession {
|
|
18
|
-
private secretKey;
|
|
19
|
-
static NOT_INITIALIZED: Error;
|
|
20
|
-
private myNonces;
|
|
21
|
-
private aggregateNonces;
|
|
22
|
-
private graph;
|
|
23
|
-
private scriptRoot;
|
|
24
|
-
private rootSharedOutputAmount;
|
|
25
|
-
constructor(secretKey: Uint8Array);
|
|
26
|
-
static random(): TreeSignerSession;
|
|
27
|
-
init(tree: TxTree, scriptRoot: Uint8Array, rootInputAmount: bigint): Promise<void>;
|
|
28
|
-
getPublicKey(): Promise<Uint8Array>;
|
|
29
|
-
getNonces(): Promise<TreeNonces>;
|
|
30
|
-
aggregatedNonces(txid: string, noncesByPubkey: TreeNonces): Promise<{
|
|
31
|
-
hasAllNonces: boolean;
|
|
32
|
-
}>;
|
|
33
|
-
sign(): Promise<TreePartialSigs>;
|
|
34
|
-
private generateNonces;
|
|
35
|
-
private signPartial;
|
|
36
|
-
}
|
|
37
|
-
export declare function validateTreeSigs(finalAggregatedKey: Uint8Array, sharedOutputAmount: bigint, vtxoTree: TxTree): Promise<void>;
|