@onetokenfe/hd-core 1.1.23
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/.eslintrc +6 -0
- package/README.md +32 -0
- package/__tests__/benfen.test.ts +68 -0
- package/__tests__/checkBootloaderReleast.test.ts +115 -0
- package/__tests__/evmSignTransaction.test.ts +419 -0
- package/jest.config.js +6 -0
- package/package.json +48 -0
- package/src/api/BaseMethod.ts +275 -0
- package/src/api/CheckAllFirmwareRelease.ts +73 -0
- package/src/api/CheckBLEFirmwareRelease.ts +23 -0
- package/src/api/CheckBootloaderRelease.ts +32 -0
- package/src/api/CheckBridgeRelease.ts +28 -0
- package/src/api/CheckBridgeStatus.ts +32 -0
- package/src/api/CheckFirmwareRelease.ts +31 -0
- package/src/api/CheckFirmwareTypeAvailable.tsx +30 -0
- package/src/api/CipherKeyValue.ts +68 -0
- package/src/api/FirmwareUpdate.ts +219 -0
- package/src/api/FirmwareUpdateV2.ts +408 -0
- package/src/api/FirmwareUpdateV3.ts +560 -0
- package/src/api/GetFeatures.ts +23 -0
- package/src/api/GetLogs.ts +40 -0
- package/src/api/GetOnetokenFeatures.ts +25 -0
- package/src/api/GetPassphraseState.ts +28 -0
- package/src/api/PromptWebDeviceAccess.ts +77 -0
- package/src/api/SearchDevices.ts +50 -0
- package/src/api/alephium/AlephiumGetAddress.ts +84 -0
- package/src/api/alephium/AlephiumSignMessage.ts +51 -0
- package/src/api/alephium/AlephiumSignTransaction.ts +135 -0
- package/src/api/algo/AlgoGetAddress.ts +73 -0
- package/src/api/algo/AlgoSignTransaction.ts +52 -0
- package/src/api/allnetwork/AllNetworkGetAddress.ts +88 -0
- package/src/api/allnetwork/AllNetworkGetAddressBase.ts +529 -0
- package/src/api/allnetwork/AllNetworkGetAddressByLoop.ts +162 -0
- package/src/api/aptos/AptosGetAddress.ts +129 -0
- package/src/api/aptos/AptosGetPublicKey.ts +64 -0
- package/src/api/aptos/AptosSignInMessage.ts +55 -0
- package/src/api/aptos/AptosSignMessage.ts +79 -0
- package/src/api/aptos/AptosSignTransaction.ts +72 -0
- package/src/api/benfen/BenfenGetAddress.ts +122 -0
- package/src/api/benfen/BenfenGetPublicKey.ts +68 -0
- package/src/api/benfen/BenfenSignMessage.ts +50 -0
- package/src/api/benfen/BenfenSignTransaction.ts +105 -0
- package/src/api/benfen/normalize.ts +51 -0
- package/src/api/btc/BTCGetAddress.ts +91 -0
- package/src/api/btc/BTCGetPublicKey.ts +174 -0
- package/src/api/btc/BTCSignMessage.ts +73 -0
- package/src/api/btc/BTCSignPsbt.ts +65 -0
- package/src/api/btc/BTCSignTransaction.ts +148 -0
- package/src/api/btc/BTCVerifyMessage.ts +46 -0
- package/src/api/btc/helpers/btcParamsUtils.ts +64 -0
- package/src/api/btc/helpers/signtx.ts +251 -0
- package/src/api/btc/helpers/signtxLegacy.ts +227 -0
- package/src/api/btc/helpers/versionLimit.ts +25 -0
- package/src/api/btc/helpers/xpubUtils.ts +132 -0
- package/src/api/cardano/CardanoGetAddress.ts +139 -0
- package/src/api/cardano/CardanoGetPublicKey.ts +72 -0
- package/src/api/cardano/CardanoSignMessage.ts +73 -0
- package/src/api/cardano/CardanoSignTransaction.ts +404 -0
- package/src/api/cardano/helper/addressParameters.ts +120 -0
- package/src/api/cardano/helper/auxiliaryData.ts +133 -0
- package/src/api/cardano/helper/cardanoInputs.ts +55 -0
- package/src/api/cardano/helper/cardanoOutputs.ts +89 -0
- package/src/api/cardano/helper/certificate.ts +246 -0
- package/src/api/cardano/helper/token.ts +44 -0
- package/src/api/cardano/helper/utils.ts +17 -0
- package/src/api/cardano/helper/witnesses.ts +62 -0
- package/src/api/conflux/ConfluxGetAddress.ts +78 -0
- package/src/api/conflux/ConfluxSignMessage.ts +49 -0
- package/src/api/conflux/ConfluxSignMessageCIP23.ts +49 -0
- package/src/api/conflux/ConfluxSignTransaction.ts +135 -0
- package/src/api/cosmos/CosmosGetAddress.ts +80 -0
- package/src/api/cosmos/CosmosGetPublicKey.ts +77 -0
- package/src/api/cosmos/CosmosSignTransaction.ts +68 -0
- package/src/api/device/DeviceBackup.ts +15 -0
- package/src/api/device/DeviceCancel.ts +15 -0
- package/src/api/device/DeviceChangePin.ts +25 -0
- package/src/api/device/DeviceFlags.ts +26 -0
- package/src/api/device/DeviceFullyUploadResource.ts +80 -0
- package/src/api/device/DeviceLock.ts +15 -0
- package/src/api/device/DeviceRebootToBoardloader.ts +30 -0
- package/src/api/device/DeviceRebootToBootloader.ts +28 -0
- package/src/api/device/DeviceRecovery.ts +44 -0
- package/src/api/device/DeviceReset.ts +46 -0
- package/src/api/device/DeviceSettings.ts +96 -0
- package/src/api/device/DeviceSupportFeatures.ts +29 -0
- package/src/api/device/DeviceUnlock.ts +13 -0
- package/src/api/device/DeviceUpdateBootloader.ts +111 -0
- package/src/api/device/DeviceUpdateReboot.ts +17 -0
- package/src/api/device/DeviceUploadResource.ts +204 -0
- package/src/api/device/DeviceVerify.ts +65 -0
- package/src/api/device/DeviceWipe.ts +15 -0
- package/src/api/dynex/DnxGetAddress.ts +75 -0
- package/src/api/dynex/DnxSignTransaction.ts +126 -0
- package/src/api/evm/EVMGetAddress.ts +88 -0
- package/src/api/evm/EVMGetPublicKey.ts +116 -0
- package/src/api/evm/EVMSignMessage.ts +49 -0
- package/src/api/evm/EVMSignMessageEIP712.ts +56 -0
- package/src/api/evm/EVMSignTransaction.ts +141 -0
- package/src/api/evm/EVMSignTypedData.ts +477 -0
- package/src/api/evm/EVMVerifyMessage.ts +46 -0
- package/src/api/evm/latest/getAddress.ts +13 -0
- package/src/api/evm/latest/getPublicKey.ts +17 -0
- package/src/api/evm/latest/signMessage.ts +19 -0
- package/src/api/evm/latest/signTransaction.ts +303 -0
- package/src/api/evm/latest/signTypedData.ts +34 -0
- package/src/api/evm/latest/signTypedHash.ts +46 -0
- package/src/api/evm/latest/verifyMessage.ts +15 -0
- package/src/api/evm/legacyV1/getAddress.ts +16 -0
- package/src/api/evm/legacyV1/getPublicKey.ts +20 -0
- package/src/api/evm/legacyV1/signMessage.ts +22 -0
- package/src/api/evm/legacyV1/signTransaction.ts +37 -0
- package/src/api/evm/legacyV1/signTypedData.ts +37 -0
- package/src/api/evm/legacyV1/signTypedHash.ts +50 -0
- package/src/api/evm/legacyV1/verifyMessage.ts +19 -0
- package/src/api/filecoin/FilecoinGetAddress.ts +80 -0
- package/src/api/filecoin/FilecoinSignTransaction.ts +57 -0
- package/src/api/firmware/FirmwareUpdateBaseMethod.ts +476 -0
- package/src/api/firmware/bootloaderHelper.ts +46 -0
- package/src/api/firmware/getBinary.ts +99 -0
- package/src/api/firmware/releaseHelper.ts +78 -0
- package/src/api/firmware/updateBootloader.ts +82 -0
- package/src/api/firmware/uploadFirmware.ts +541 -0
- package/src/api/helpers/batchGetPublickeys.ts +84 -0
- package/src/api/helpers/bigNumberUtils.ts +58 -0
- package/src/api/helpers/hexUtils.ts +111 -0
- package/src/api/helpers/paramsValidator.ts +165 -0
- package/src/api/helpers/pathUtils.ts +145 -0
- package/src/api/helpers/stringUtils.ts +11 -0
- package/src/api/helpers/typeNameUtils.ts +137 -0
- package/src/api/index.ts +161 -0
- package/src/api/kaspa/KaspaGetAddress.ts +103 -0
- package/src/api/kaspa/KaspaSignTransaction.ts +182 -0
- package/src/api/kaspa/helpers/BufferWriter.ts +177 -0
- package/src/api/kaspa/helpers/HashWriter.ts +74 -0
- package/src/api/kaspa/helpers/SignatureType.ts +7 -0
- package/src/api/kaspa/helpers/TransferSerialize.ts +144 -0
- package/src/api/lightning/LnurlAuth.ts +52 -0
- package/src/api/near/NearGetAddress.ts +75 -0
- package/src/api/near/NearSignTransaction.ts +46 -0
- package/src/api/nem/NEMGetAddress.ts +72 -0
- package/src/api/nem/NEMSignTransaction.ts +251 -0
- package/src/api/neo/NeoGetAddress.ts +80 -0
- package/src/api/neo/NeoSignTransaction.ts +59 -0
- package/src/api/nervos/NervosGetAddress.ts +80 -0
- package/src/api/nervos/NervosSignTransaction.ts +116 -0
- package/src/api/nexa/NexaGetAddress.ts +88 -0
- package/src/api/nexa/NexaSignTransaction.ts +107 -0
- package/src/api/nostr/NostrDecryptMessage.ts +57 -0
- package/src/api/nostr/NostrEncryptMessage.ts +57 -0
- package/src/api/nostr/NostrGetPublicKey.ts +74 -0
- package/src/api/nostr/NostrSignEvent.ts +65 -0
- package/src/api/nostr/NostrSignSchnorr.ts +52 -0
- package/src/api/nostr/helper/index.ts +28 -0
- package/src/api/polkadot/PolkadotGetAddress.ts +83 -0
- package/src/api/polkadot/PolkadotSignTransaction.ts +53 -0
- package/src/api/polkadot/networks.ts +72 -0
- package/src/api/scdo/ScdoGetAddress.ts +76 -0
- package/src/api/scdo/ScdoSignMessage.ts +45 -0
- package/src/api/scdo/ScdoSignTransaction.ts +106 -0
- package/src/api/solana/SolGetAddress.ts +68 -0
- package/src/api/solana/SolSignMessage.ts +61 -0
- package/src/api/solana/SolSignOffchainMessage.ts +61 -0
- package/src/api/solana/SolSignTransaction.ts +108 -0
- package/src/api/starcoin/StarcoinGetAddress.ts +69 -0
- package/src/api/starcoin/StarcoinGetPublicKey.ts +70 -0
- package/src/api/starcoin/StarcoinSignMessage.ts +42 -0
- package/src/api/starcoin/StarcoinSignTransaction.ts +38 -0
- package/src/api/starcoin/StarcoinVerifyMessage.ts +35 -0
- package/src/api/stellar/StellarGetAddress.ts +68 -0
- package/src/api/stellar/StellarSignTransaction.ts +220 -0
- package/src/api/sui/SuiGetAddress.ts +117 -0
- package/src/api/sui/SuiGetPublicKey.ts +66 -0
- package/src/api/sui/SuiSignMessage.ts +48 -0
- package/src/api/sui/SuiSignTransaction.ts +126 -0
- package/src/api/sui/normalize.ts +28 -0
- package/src/api/test/TestInitializeDeviceDuration.ts +22 -0
- package/src/api/ton/TonGetAddress.ts +96 -0
- package/src/api/ton/TonSignMessage.ts +217 -0
- package/src/api/ton/TonSignProof.ts +62 -0
- package/src/api/tron/TronGetAddress.ts +75 -0
- package/src/api/tron/TronSignMessage.ts +89 -0
- package/src/api/tron/TronSignTransaction.ts +214 -0
- package/src/api/u2f/GetNextU2FCounter.ts +15 -0
- package/src/api/u2f/SetU2FCounter.ts +19 -0
- package/src/api/utils.ts +23 -0
- package/src/api/xrp/XrpGetAddress.ts +96 -0
- package/src/api/xrp/XrpSignTransaction.ts +71 -0
- package/src/constants/errors.ts +15 -0
- package/src/constants/index.ts +2 -0
- package/src/constants/ui-request.ts +3 -0
- package/src/core/RequestQueue.ts +134 -0
- package/src/core/index.ts +1320 -0
- package/src/data/coins/bitcoin.json +44 -0
- package/src/data/config.ts +25 -0
- package/src/data/messages/messages.json +13167 -0
- package/src/data/messages/messages_legacy_v1.json +10282 -0
- package/src/data-manager/CoinManager.ts +31 -0
- package/src/data-manager/DataManager.ts +499 -0
- package/src/data-manager/MessagesConfig.ts +28 -0
- package/src/data-manager/TransportManager.ts +140 -0
- package/src/data-manager/connectSettings.ts +121 -0
- package/src/data-manager/index.ts +3 -0
- package/src/device/Device.ts +884 -0
- package/src/device/DeviceCommands.ts +631 -0
- package/src/device/DeviceConnector.ts +124 -0
- package/src/device/DeviceList.ts +39 -0
- package/src/device/DevicePool.ts +266 -0
- package/src/events/call.ts +95 -0
- package/src/events/core.ts +65 -0
- package/src/events/device.ts +92 -0
- package/src/events/firmware.ts +43 -0
- package/src/events/iframe.ts +55 -0
- package/src/events/index.ts +10 -0
- package/src/events/log.ts +23 -0
- package/src/events/logBlockEvent.ts +6 -0
- package/src/events/ui-promise.ts +14 -0
- package/src/events/ui-request.ts +216 -0
- package/src/events/ui-response.ts +59 -0
- package/src/events/utils.ts +19 -0
- package/src/index.ts +70 -0
- package/src/inject.ts +408 -0
- package/src/lowLevelInject.ts +61 -0
- package/src/topLevelInject.ts +62 -0
- package/src/types/api/alephiumGetAddress.ts +31 -0
- package/src/types/api/alephiumSignMessage.ts +14 -0
- package/src/types/api/alephiumSignTransaction.ts +18 -0
- package/src/types/api/algoGetAddress.ts +23 -0
- package/src/types/api/algoSignTransaction.ts +17 -0
- package/src/types/api/allNetworkGetAddress.ts +130 -0
- package/src/types/api/aptosGetAddress.ts +28 -0
- package/src/types/api/aptosGetPublicKey.ts +27 -0
- package/src/types/api/aptosSignInMessage.ts +17 -0
- package/src/types/api/aptosSignMessage.ts +26 -0
- package/src/types/api/aptosSignTransaction.ts +18 -0
- package/src/types/api/benfenGetAddress.ts +24 -0
- package/src/types/api/benfenGetPublicKey.ts +23 -0
- package/src/types/api/benfenSignMessage.ts +13 -0
- package/src/types/api/benfenSignTransaction.ts +19 -0
- package/src/types/api/btcGetAddress.ts +26 -0
- package/src/types/api/btcGetPublicKey.ts +26 -0
- package/src/types/api/btcSignMessage.ts +16 -0
- package/src/types/api/btcSignPsbt.ts +13 -0
- package/src/types/api/btcSignTransaction.ts +98 -0
- package/src/types/api/btcVerifyMessage.ts +15 -0
- package/src/types/api/cardano.ts +212 -0
- package/src/types/api/cardanoGetAddress.ts +49 -0
- package/src/types/api/cardanoGetPublicKey.ts +33 -0
- package/src/types/api/cardanoSignMessage.ts +31 -0
- package/src/types/api/cardanoSignTransaction.ts +8 -0
- package/src/types/api/checkAllFirmwareRelease.ts +34 -0
- package/src/types/api/checkBLEFirmwareRelease.ts +15 -0
- package/src/types/api/checkBootloaderRelease.ts +19 -0
- package/src/types/api/checkBridgeRelease.ts +14 -0
- package/src/types/api/checkBridgeStatus.ts +3 -0
- package/src/types/api/checkFirmwareRelease.ts +23 -0
- package/src/types/api/checkFirmwareTypeAvailable.ts +12 -0
- package/src/types/api/cipherKeyValue.ts +28 -0
- package/src/types/api/confluxGetAddress.ts +24 -0
- package/src/types/api/confluxSignMessage.ts +13 -0
- package/src/types/api/confluxSignMessageCIP23.ts +14 -0
- package/src/types/api/confluxSignTransaction.ts +32 -0
- package/src/types/api/cosmosGetAddress.ts +24 -0
- package/src/types/api/cosmosGetPublicKey.ts +28 -0
- package/src/types/api/cosmosSignTransaction.ts +17 -0
- package/src/types/api/deviceBackup.ts +4 -0
- package/src/types/api/deviceCancel.ts +4 -0
- package/src/types/api/deviceChangePin.ts +11 -0
- package/src/types/api/deviceFlags.ts +11 -0
- package/src/types/api/deviceFullyUploadResource.ts +15 -0
- package/src/types/api/deviceLock.ts +4 -0
- package/src/types/api/deviceRebootToBoardloader.ts +6 -0
- package/src/types/api/deviceRebootToBootloader.ts +4 -0
- package/src/types/api/deviceRecovery.ts +19 -0
- package/src/types/api/deviceReset.ts +20 -0
- package/src/types/api/deviceSettings.ts +23 -0
- package/src/types/api/deviceSupportFeatures.ts +6 -0
- package/src/types/api/deviceUnlock.ts +4 -0
- package/src/types/api/deviceUpdateBootloader.ts +13 -0
- package/src/types/api/deviceUpdateReboot.ts +3 -0
- package/src/types/api/deviceUploadResource.ts +21 -0
- package/src/types/api/deviceVerify.ts +15 -0
- package/src/types/api/deviceWipe.ts +4 -0
- package/src/types/api/dnxGetAddress.ts +23 -0
- package/src/types/api/dnxSignTransaction.ts +36 -0
- package/src/types/api/event.ts +8 -0
- package/src/types/api/evmGetAddress.ts +24 -0
- package/src/types/api/evmGetPublicKey.ts +36 -0
- package/src/types/api/evmSignMessage.ts +14 -0
- package/src/types/api/evmSignMessageEIP712.ts +14 -0
- package/src/types/api/evmSignTransaction.ts +80 -0
- package/src/types/api/evmSignTypedData.ts +42 -0
- package/src/types/api/evmVerifyMessage.ts +15 -0
- package/src/types/api/export.ts +194 -0
- package/src/types/api/filecoinGetAddress.ts +24 -0
- package/src/types/api/filecoinSignTransaction.ts +24 -0
- package/src/types/api/firmwareUpdate.ts +66 -0
- package/src/types/api/getFeatures.ts +4 -0
- package/src/types/api/getLogs.ts +3 -0
- package/src/types/api/getNextU2FCounter.ts +7 -0
- package/src/types/api/getOnetokenFeatures.ts +7 -0
- package/src/types/api/getPassphraseState.ts +6 -0
- package/src/types/api/index.ts +404 -0
- package/src/types/api/init.ts +11 -0
- package/src/types/api/kaspaGetAddress.ts +26 -0
- package/src/types/api/kaspaSignTransaction.ts +44 -0
- package/src/types/api/lnurlAuth.ts +22 -0
- package/src/types/api/nearGetAddress.ts +23 -0
- package/src/types/api/nearSignTransaction.ts +13 -0
- package/src/types/api/nemGetAddress.ts +24 -0
- package/src/types/api/nemSignTransaction.ts +118 -0
- package/src/types/api/neoGetAddress.ts +24 -0
- package/src/types/api/neoSignTransaction.ts +18 -0
- package/src/types/api/nervosGetAddress.ts +24 -0
- package/src/types/api/nervosSignTransaction.ts +19 -0
- package/src/types/api/nexaGetAddress.ts +26 -0
- package/src/types/api/nexaSignTransaction.ts +28 -0
- package/src/types/api/nostrDecryptMessage.ts +25 -0
- package/src/types/api/nostrEncryptMessage.ts +25 -0
- package/src/types/api/nostrGetPublicKey.ts +28 -0
- package/src/types/api/nostrSignEvent.ts +52 -0
- package/src/types/api/nostrSignSchnorr.ts +22 -0
- package/src/types/api/polkadotGetAddress.ts +30 -0
- package/src/types/api/polkadotSignTransaction.ts +19 -0
- package/src/types/api/promptWebDeviceAccess.ts +6 -0
- package/src/types/api/scdoGetAddress.ts +23 -0
- package/src/types/api/scdoSignMessage.ts +13 -0
- package/src/types/api/scdoSignTransaction.ts +24 -0
- package/src/types/api/searchDevices.ts +4 -0
- package/src/types/api/setU2FCounter.ts +7 -0
- package/src/types/api/solGetAddress.ts +23 -0
- package/src/types/api/solSignMessage.ts +17 -0
- package/src/types/api/solSignOffchainMessage.ts +24 -0
- package/src/types/api/solSignTransaction.ts +27 -0
- package/src/types/api/starcoinGetAddress.ts +23 -0
- package/src/types/api/starcoinGetPublicKey.ts +23 -0
- package/src/types/api/starcoinSignMessage.ts +13 -0
- package/src/types/api/starcoinSignTransaction.ts +13 -0
- package/src/types/api/starcoinVerifyMessage.ts +14 -0
- package/src/types/api/stellarGetAddress.ts +23 -0
- package/src/types/api/stellarSignTransaction.ts +154 -0
- package/src/types/api/suiGetAddress.ts +28 -0
- package/src/types/api/suiGetPublicKey.ts +27 -0
- package/src/types/api/suiSignMessage.ts +13 -0
- package/src/types/api/suiSignTransaction.ts +17 -0
- package/src/types/api/testInitializeDeviceDuration.ts +6 -0
- package/src/types/api/tonGetAddress.ts +34 -0
- package/src/types/api/tonSignMessage.ts +42 -0
- package/src/types/api/tonSignProof.ts +25 -0
- package/src/types/api/tronGetAddress.ts +23 -0
- package/src/types/api/tronSignMessage.ts +14 -0
- package/src/types/api/tronSignTransaction.ts +89 -0
- package/src/types/api/uiResponse.ts +3 -0
- package/src/types/api/xrpGetAddress.ts +28 -0
- package/src/types/api/xrpSignTransaction.ts +29 -0
- package/src/types/device.ts +194 -0
- package/src/types/firmware.ts +41 -0
- package/src/types/global.d.ts +3 -0
- package/src/types/index.ts +5 -0
- package/src/types/params.ts +64 -0
- package/src/types/settings.ts +144 -0
- package/src/utils/arrayUtils.ts +7 -0
- package/src/utils/assets.ts +5 -0
- package/src/utils/bridgeUpdate.ts +80 -0
- package/src/utils/capabilitieUtils.ts +12 -0
- package/src/utils/deviceFeaturesUtils.ts +352 -0
- package/src/utils/deviceInfoUtils.ts +167 -0
- package/src/utils/deviceSettings.ts +109 -0
- package/src/utils/deviceVersionUtils.ts +79 -0
- package/src/utils/findDefectiveBatchDevice.ts +39 -0
- package/src/utils/getMutex.ts +41 -0
- package/src/utils/getSynchronize.ts +25 -0
- package/src/utils/homescreen.ts +345 -0
- package/src/utils/index.ts +44 -0
- package/src/utils/logger.ts +190 -0
- package/src/utils/networkUtils.ts +25 -0
- package/src/utils/patch.ts +14 -0
- package/src/utils/promiseUtils.ts +4 -0
- package/src/utils/release.ts +42 -0
- package/src/utils/semver.test.js +53 -0
- package/src/utils/tracing.ts +238 -0
- package/src/utils/versionUtils.ts +120 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import type { StellarSignedTx } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type StellarAsset = {
|
|
5
|
+
type: 0 | 1 | 2; // 0: native, 1: credit_alphanum4, 2: credit_alphanum12
|
|
6
|
+
code: string;
|
|
7
|
+
issuer?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
type StellarCreateAccountOperation = {
|
|
11
|
+
type: 'createAccount';
|
|
12
|
+
source?: string;
|
|
13
|
+
destination: string;
|
|
14
|
+
startingBalance: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
type StellarPaymentOperation = {
|
|
18
|
+
type: 'payment';
|
|
19
|
+
source?: string;
|
|
20
|
+
destination: string;
|
|
21
|
+
asset?: StellarAsset | typeof undefined;
|
|
22
|
+
amount: string;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
type StellarPathPaymentOperation = {
|
|
26
|
+
type: 'pathPayment';
|
|
27
|
+
source?: string;
|
|
28
|
+
sendAsset: StellarAsset;
|
|
29
|
+
sendMax: string;
|
|
30
|
+
destination: string;
|
|
31
|
+
destAsset: StellarAsset;
|
|
32
|
+
destAmount: string;
|
|
33
|
+
path?: StellarAsset[];
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
type StellarPassiveOfferOperation = {
|
|
37
|
+
type: 'createPassiveOffer';
|
|
38
|
+
source?: string;
|
|
39
|
+
buying: StellarAsset;
|
|
40
|
+
selling: StellarAsset;
|
|
41
|
+
amount: string;
|
|
42
|
+
price: { n: number; d: number };
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
type StellarManageOfferOperation = {
|
|
46
|
+
type: 'manageOffer';
|
|
47
|
+
source?: string;
|
|
48
|
+
buying: StellarAsset;
|
|
49
|
+
selling: StellarAsset;
|
|
50
|
+
amount: string;
|
|
51
|
+
offerId?: string;
|
|
52
|
+
price: { n: number; d: number };
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
type StellarSetOptionsOperation = {
|
|
56
|
+
type: 'setOptions';
|
|
57
|
+
source?: string;
|
|
58
|
+
signer?: {
|
|
59
|
+
type: 0 | 1 | 2;
|
|
60
|
+
key: string | Buffer;
|
|
61
|
+
weight?: number;
|
|
62
|
+
};
|
|
63
|
+
inflationDest?: string;
|
|
64
|
+
clearFlags?: number;
|
|
65
|
+
setFlags?: number;
|
|
66
|
+
masterWeight?: number | string;
|
|
67
|
+
lowThreshold?: number | string;
|
|
68
|
+
medThreshold?: number | string;
|
|
69
|
+
highThreshold?: number | string;
|
|
70
|
+
homeDomain?: string;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
type StellarChangeTrustOperation = {
|
|
74
|
+
type: 'changeTrust';
|
|
75
|
+
source?: string;
|
|
76
|
+
line: StellarAsset;
|
|
77
|
+
limit?: string;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
type StellarAllowTrustOperation = {
|
|
81
|
+
type: 'allowTrust';
|
|
82
|
+
source?: string;
|
|
83
|
+
trustor: string;
|
|
84
|
+
assetCode: string;
|
|
85
|
+
assetType: number;
|
|
86
|
+
authorize?: boolean | typeof undefined;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
type StellarAccountMergeOperation = {
|
|
90
|
+
type: 'accountMerge';
|
|
91
|
+
source?: string;
|
|
92
|
+
destination: string;
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
type StellarManageDataOperation = {
|
|
96
|
+
type: 'manageData';
|
|
97
|
+
source?: string;
|
|
98
|
+
name: string;
|
|
99
|
+
value?: Buffer | string;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
type StellarBumpSequenceOperation = {
|
|
103
|
+
type: 'bumpSequence';
|
|
104
|
+
source?: string;
|
|
105
|
+
bumpTo: string;
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
type StellarInflationOperation = {
|
|
109
|
+
type: 'inflation';
|
|
110
|
+
source?: string;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export type StellarOperation =
|
|
114
|
+
| StellarCreateAccountOperation
|
|
115
|
+
| StellarPaymentOperation
|
|
116
|
+
| StellarPathPaymentOperation
|
|
117
|
+
| StellarPassiveOfferOperation
|
|
118
|
+
| StellarManageOfferOperation
|
|
119
|
+
| StellarSetOptionsOperation
|
|
120
|
+
| StellarChangeTrustOperation
|
|
121
|
+
| StellarAllowTrustOperation
|
|
122
|
+
| StellarAccountMergeOperation
|
|
123
|
+
| StellarInflationOperation
|
|
124
|
+
| StellarManageDataOperation
|
|
125
|
+
| StellarBumpSequenceOperation;
|
|
126
|
+
|
|
127
|
+
export type StellarTransaction = {
|
|
128
|
+
source: string;
|
|
129
|
+
fee: number;
|
|
130
|
+
sequence: string | number;
|
|
131
|
+
timebounds?: {
|
|
132
|
+
minTime: number;
|
|
133
|
+
maxTime: number;
|
|
134
|
+
};
|
|
135
|
+
memo?: {
|
|
136
|
+
type: 0 | 1 | 2 | 3 | 4;
|
|
137
|
+
id?: string;
|
|
138
|
+
text?: string;
|
|
139
|
+
hash?: string | Buffer;
|
|
140
|
+
};
|
|
141
|
+
operations: StellarOperation[];
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
export type StellarSignTransactionParams = {
|
|
145
|
+
path: string | number[];
|
|
146
|
+
networkPassphrase: string;
|
|
147
|
+
transaction: StellarTransaction;
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
export declare function stellarSignTransaction(
|
|
151
|
+
connectId: string,
|
|
152
|
+
deviceId: string,
|
|
153
|
+
params: CommonParams & StellarSignTransactionParams
|
|
154
|
+
): Response<StellarSignedTx>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { SuiAddress as HardwareSuiAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type SuiAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
pub?: string;
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated Use `pub` instead.
|
|
9
|
+
*/
|
|
10
|
+
publicKey?: string;
|
|
11
|
+
} & HardwareSuiAddress;
|
|
12
|
+
|
|
13
|
+
export type SuiGetAddressParams = {
|
|
14
|
+
path: string | number[];
|
|
15
|
+
showOnOneToken?: boolean;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export declare function suiGetAddress(
|
|
19
|
+
connectId: string,
|
|
20
|
+
deviceId: string,
|
|
21
|
+
params: CommonParams & SuiGetAddressParams
|
|
22
|
+
): Response<SuiAddress>;
|
|
23
|
+
|
|
24
|
+
export declare function suiGetAddress(
|
|
25
|
+
connectId: string,
|
|
26
|
+
deviceId: string,
|
|
27
|
+
params: CommonParams & { bundle?: SuiGetAddressParams[] }
|
|
28
|
+
): Response<Array<SuiAddress>>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CommonParams, Response } from '../params';
|
|
2
|
+
|
|
3
|
+
export type SuiPublicKey = {
|
|
4
|
+
path: string;
|
|
5
|
+
pub: string;
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use `pub` instead.
|
|
8
|
+
*/
|
|
9
|
+
publicKey?: string;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export type SuiGetPublicKeyParams = {
|
|
13
|
+
path: string | number[];
|
|
14
|
+
showOnOneToken?: boolean;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export declare function suiGetPublicKey(
|
|
18
|
+
connectId: string,
|
|
19
|
+
deviceId: string,
|
|
20
|
+
params: CommonParams & SuiGetPublicKeyParams
|
|
21
|
+
): Response<SuiPublicKey>;
|
|
22
|
+
|
|
23
|
+
export declare function suiGetPublicKey(
|
|
24
|
+
connectId: string,
|
|
25
|
+
deviceId: string,
|
|
26
|
+
params: CommonParams & { bundle?: SuiGetPublicKeyParams[] }
|
|
27
|
+
): Response<Array<SuiPublicKey>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { SuiMessageSignature } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type SuiSignMessageParams = {
|
|
5
|
+
path: string | number[];
|
|
6
|
+
messageHex: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export declare function suiSignMessage(
|
|
10
|
+
connectId: string,
|
|
11
|
+
deviceId: string,
|
|
12
|
+
params: CommonParams & SuiSignMessageParams
|
|
13
|
+
): Response<SuiMessageSignature>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { AptosSignedTx as HardwareAptosSignedTx } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type SuiSignedTx = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareAptosSignedTx;
|
|
7
|
+
|
|
8
|
+
export type SuiSignTransactionParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
rawTx?: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export declare function suiSignTransaction(
|
|
14
|
+
connectId: string,
|
|
15
|
+
deviceId: string,
|
|
16
|
+
params: CommonParams & SuiSignTransactionParams
|
|
17
|
+
): Response<SuiSignedTx>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { TonWalletVersion, TonWorkChain } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type TonAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
pub: string;
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated Use `pub` instead.
|
|
9
|
+
*/
|
|
10
|
+
publicKey?: string;
|
|
11
|
+
address: string;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export type TonGetAddressParams = {
|
|
15
|
+
path: string | number[];
|
|
16
|
+
showOnOneToken?: boolean;
|
|
17
|
+
walletVersion?: TonWalletVersion;
|
|
18
|
+
isBounceable?: boolean;
|
|
19
|
+
isTestnetOnly?: boolean;
|
|
20
|
+
workchain?: TonWorkChain;
|
|
21
|
+
walletId?: number;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export declare function tonGetAddress(
|
|
25
|
+
connectId: string,
|
|
26
|
+
deviceId: string,
|
|
27
|
+
params: CommonParams & TonGetAddressParams
|
|
28
|
+
): Response<TonAddress>;
|
|
29
|
+
|
|
30
|
+
export declare function tonGetAddress(
|
|
31
|
+
connectId: string,
|
|
32
|
+
deviceId: string,
|
|
33
|
+
params: CommonParams & { bundle?: TonGetAddressParams[] }
|
|
34
|
+
): Response<Array<TonAddress>>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
TonSignedMessage,
|
|
3
|
+
TonWalletVersion,
|
|
4
|
+
TonWorkChain,
|
|
5
|
+
UintType,
|
|
6
|
+
} from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { CommonParams, Response } from '../params';
|
|
8
|
+
|
|
9
|
+
export type TonSignMessageParams = {
|
|
10
|
+
path: string | number[];
|
|
11
|
+
destination: string;
|
|
12
|
+
jettonMasterAddress?: string;
|
|
13
|
+
jettonWalletAddress?: string;
|
|
14
|
+
tonAmount: UintType;
|
|
15
|
+
jettonAmount?: UintType;
|
|
16
|
+
fwdFee?: UintType;
|
|
17
|
+
comment?: string;
|
|
18
|
+
isRawData?: boolean;
|
|
19
|
+
mode?: number;
|
|
20
|
+
seqno: number;
|
|
21
|
+
expireAt: UintType;
|
|
22
|
+
walletVersion?: TonWalletVersion;
|
|
23
|
+
walletId?: number;
|
|
24
|
+
workchain?: TonWorkChain;
|
|
25
|
+
isBounceable?: boolean;
|
|
26
|
+
isTestnetOnly?: boolean;
|
|
27
|
+
extDestination?: string[];
|
|
28
|
+
extTonAmount?: UintType[];
|
|
29
|
+
extPayload?: string[];
|
|
30
|
+
initState?: string;
|
|
31
|
+
signingMessageRepr?: string;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export type TonSignedMessageResponse = {
|
|
35
|
+
skip_validate: boolean;
|
|
36
|
+
} & TonSignedMessage;
|
|
37
|
+
|
|
38
|
+
export declare function tonSignMessage(
|
|
39
|
+
connectId: string,
|
|
40
|
+
deviceId: string,
|
|
41
|
+
params: CommonParams & TonSignMessageParams
|
|
42
|
+
): Response<TonSignedMessageResponse>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
TonSignedProof,
|
|
3
|
+
TonWalletVersion,
|
|
4
|
+
TonWorkChain,
|
|
5
|
+
UintType,
|
|
6
|
+
} from '@onetokenfe/hd-transport';
|
|
7
|
+
import type { CommonParams, Response } from '../params';
|
|
8
|
+
|
|
9
|
+
export type TonSignProofParams = {
|
|
10
|
+
path: string | number[];
|
|
11
|
+
appdomain: string;
|
|
12
|
+
comment?: string;
|
|
13
|
+
expireAt: UintType;
|
|
14
|
+
walletVersion?: TonWalletVersion;
|
|
15
|
+
walletId?: number;
|
|
16
|
+
workchain?: TonWorkChain;
|
|
17
|
+
isBounceable?: boolean;
|
|
18
|
+
isTestnetOnly?: boolean;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export declare function tonSignProof(
|
|
22
|
+
connectId: string,
|
|
23
|
+
deviceId: string,
|
|
24
|
+
params: CommonParams & TonSignProofParams
|
|
25
|
+
): Response<TonSignedProof>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { TronAddress as HardwareTronAddress } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type TronAddress = {
|
|
5
|
+
path: string;
|
|
6
|
+
} & HardwareTronAddress;
|
|
7
|
+
|
|
8
|
+
export type TronGetAddressParams = {
|
|
9
|
+
path: string | number[];
|
|
10
|
+
showOnOneToken?: boolean;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export declare function tronGetAddress(
|
|
14
|
+
connectId: string,
|
|
15
|
+
deviceId: string,
|
|
16
|
+
params: CommonParams & TronGetAddressParams
|
|
17
|
+
): Response<TronAddress>;
|
|
18
|
+
|
|
19
|
+
export declare function tronGetAddress(
|
|
20
|
+
connectId: string,
|
|
21
|
+
deviceId: string,
|
|
22
|
+
params: CommonParams & { bundle?: TronGetAddressParams[] }
|
|
23
|
+
): Response<Array<TronAddress>>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { TronMessageSignature } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type TronSignMessageParams = {
|
|
5
|
+
path: string | number[];
|
|
6
|
+
messageHex: string;
|
|
7
|
+
messageType?: 'V1' | 'V2';
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export declare function tronSignMessage(
|
|
11
|
+
connectId: string,
|
|
12
|
+
deviceId: string,
|
|
13
|
+
params: CommonParams & TronSignMessageParams
|
|
14
|
+
): Response<TronMessageSignature>;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import type { TronResourceCode, TronSignedTx, UintType } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type TronTransferContract = {
|
|
5
|
+
toAddress?: string;
|
|
6
|
+
amount?: UintType;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export type TronTriggerSmartContract = {
|
|
10
|
+
contractAddress?: string;
|
|
11
|
+
callValue?: number;
|
|
12
|
+
data?: string;
|
|
13
|
+
callTokenValue?: number;
|
|
14
|
+
assetId?: number;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export type TronFreezeBalanceV2Contract = {
|
|
18
|
+
frozenBalance?: number;
|
|
19
|
+
resource?: TronResourceCode;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export type TronUnfreezeBalanceV2Contract = {
|
|
23
|
+
resource?: TronResourceCode;
|
|
24
|
+
unfreezeBalance?: number;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export type TronDelegateResourceContract = {
|
|
28
|
+
resource?: TronResourceCode;
|
|
29
|
+
balance?: number;
|
|
30
|
+
receiverAddress?: string;
|
|
31
|
+
lock?: boolean;
|
|
32
|
+
lockPeriod?: number;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export type TronUnDelegateResourceContract = {
|
|
36
|
+
resource?: TronResourceCode;
|
|
37
|
+
balance?: number;
|
|
38
|
+
receiverAddress?: string;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
export type TronWithdrawBalanceContract = {
|
|
42
|
+
ownerAddress?: string;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
export type TronWithdrawExpireUnfreezeContract = undefined;
|
|
46
|
+
|
|
47
|
+
export type TronVoteWitnessContract = {
|
|
48
|
+
votes?: {
|
|
49
|
+
voteAddress?: string;
|
|
50
|
+
voteCount?: number;
|
|
51
|
+
}[];
|
|
52
|
+
support?: boolean;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export type TronCancelAllUnfreezeV2Contract = undefined;
|
|
56
|
+
|
|
57
|
+
export type TronTransactionContract = {
|
|
58
|
+
transferContract?: TronTransferContract;
|
|
59
|
+
triggerSmartContract?: TronTriggerSmartContract;
|
|
60
|
+
freezeBalanceV2Contract?: TronFreezeBalanceV2Contract;
|
|
61
|
+
unfreezeBalanceV2Contract?: TronUnfreezeBalanceV2Contract;
|
|
62
|
+
cancelAllUnfreezeV2Contract?: TronCancelAllUnfreezeV2Contract;
|
|
63
|
+
delegateResourceContract?: TronDelegateResourceContract;
|
|
64
|
+
unDelegateResourceContract?: TronUnDelegateResourceContract;
|
|
65
|
+
withdrawBalanceContract?: TronWithdrawBalanceContract;
|
|
66
|
+
withdrawExpireUnfreezeContract?: TronWithdrawExpireUnfreezeContract;
|
|
67
|
+
voteWitnessContract?: TronVoteWitnessContract;
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export type TronTransaction = {
|
|
71
|
+
refBlockBytes: string;
|
|
72
|
+
refBlockHash: string;
|
|
73
|
+
expiration: number;
|
|
74
|
+
data?: string;
|
|
75
|
+
contract: TronTransactionContract;
|
|
76
|
+
timestamp: number;
|
|
77
|
+
feeLimit?: number;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export type TronSignTransactionParams = {
|
|
81
|
+
path: string | number[];
|
|
82
|
+
transaction: TronTransaction;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export declare function tronSignTransaction(
|
|
86
|
+
connectId: string,
|
|
87
|
+
deviceId: string,
|
|
88
|
+
params: CommonParams & TronSignTransactionParams
|
|
89
|
+
): Response<TronSignedTx>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { CommonParams, Response } from '../params';
|
|
2
|
+
|
|
3
|
+
export type XrpAddress = {
|
|
4
|
+
path: string;
|
|
5
|
+
pub?: string;
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use `pub` instead.
|
|
8
|
+
*/
|
|
9
|
+
publicKey?: string;
|
|
10
|
+
address: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export type XrpGetAddressParams = {
|
|
14
|
+
path: string | number[];
|
|
15
|
+
showOnOneToken?: boolean;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export declare function xrpGetAddress(
|
|
19
|
+
connectId: string,
|
|
20
|
+
deviceId: string,
|
|
21
|
+
params: CommonParams & XrpGetAddressParams
|
|
22
|
+
): Response<XrpAddress>;
|
|
23
|
+
|
|
24
|
+
export declare function xrpGetAddress(
|
|
25
|
+
connectId: string,
|
|
26
|
+
deviceId: string,
|
|
27
|
+
params: CommonParams & { bundle?: XrpGetAddressParams[] }
|
|
28
|
+
): Response<XrpAddress[]>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Messages } from '@onetokenfe/hd-transport';
|
|
2
|
+
import type { CommonParams, Response } from '../params';
|
|
3
|
+
|
|
4
|
+
export type XrpSignTransactionParams = Messages.RippleSignTx;
|
|
5
|
+
|
|
6
|
+
export type XrpSignTransactionResponse = {
|
|
7
|
+
serializedTx: string;
|
|
8
|
+
signature: string;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
type XrpPayment = {
|
|
12
|
+
amount: string;
|
|
13
|
+
destination: string;
|
|
14
|
+
destinationTag?: number;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
type XrpTransaction = {
|
|
18
|
+
fee: string;
|
|
19
|
+
flags?: number;
|
|
20
|
+
sequence: number;
|
|
21
|
+
maxLedgerVersion?: number; // Proto: "last_ledger_sequence"
|
|
22
|
+
payment: XrpPayment;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export declare function xrpSignTransaction(
|
|
26
|
+
connectId: string,
|
|
27
|
+
deviceId: string,
|
|
28
|
+
params: CommonParams & XrpTransaction
|
|
29
|
+
): Response<XrpSignTransactionResponse>;
|