├── .github ├── CODEOWNERS └── workflows │ ├── neutral-build-tag.yml │ └── neutral-build.yml ├── .gitignore ├── .gitmodules ├── BlockchainSdk.podspec ├── BlockchainSdk.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── BlockchainSdk.xcscheme │ └── BlockchainSdkExample.xcscheme ├── BlockchainSdk.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── BlockchainSdk ├── BlockchainSdk.h ├── Blockchains │ ├── Algorand │ │ ├── AlgorandExternalLinkProvider.swift │ │ ├── AlgorandNetworkService.swift │ │ ├── AlgorandTransactionBuilder.swift │ │ ├── AlgorandWalletAssembly.swift │ │ ├── AlgorandWalletManager.swift │ │ ├── DTO │ │ │ ├── AlgorandAccountStatus.swift │ │ │ ├── AlgorandRequest+Transaction.swift │ │ │ ├── AlgorandRequest.swift │ │ │ ├── AlgorandResponse+Account.swift │ │ │ ├── AlgorandResponse+Error.swift │ │ │ ├── AlgorandResponse+PendingTransaction.swift │ │ │ ├── AlgorandResponse+Transaction.swift │ │ │ ├── AlgorandResponse+TransactionHistory.swift │ │ │ ├── AlgorandResponse+TransactionResult.swift │ │ │ └── AlgorandResponse.swift │ │ ├── Domain │ │ │ ├── AlgorandAccountModel.swift │ │ │ ├── AlgorandTransactionBuildParams.swift │ │ │ ├── AlgorandTransactionInfo.swift │ │ │ └── AlgorandTransactionParams.swift │ │ └── Provider │ │ │ ├── AlgorandNetworkProvider.swift │ │ │ └── AlgorandProviderTarget.swift │ ├── Aptos │ │ ├── AptosAddressService.swift │ │ ├── AptosExternalLinkProvider.swift │ │ ├── AptosNetworkService.swift │ │ ├── AptosTransactionBuilder.swift │ │ ├── AptosWalletAssembly.swift │ │ ├── AptosWalletManager.swift │ │ ├── DTO │ │ │ ├── AptosRequest.swift │ │ │ └── AptosResponse.swift │ │ ├── Domain │ │ │ ├── AptosAccountInfo.swift │ │ │ ├── AptosChainId.swift │ │ │ ├── AptosFeeInfo.swift │ │ │ ├── AptosFeeParams.swift │ │ │ └── AptosTransactionInfo.swift │ │ └── Provider │ │ │ ├── AptosNetworkProvider.swift │ │ │ └── AptosProviderTarget.swift │ ├── Binance │ │ ├── BinanceAddressService.swift │ │ ├── BinanceExternalLinkProvider.swift │ │ ├── BinanceNetworkService.swift │ │ ├── BinanceTransactionBuilder.swift │ │ ├── BinanceTransactionParams.swift │ │ ├── BinanceWalletAssembly.swift │ │ └── BinanceWalletManager.swift │ ├── Bitcoin │ │ ├── Address │ │ │ ├── BitcoinAddressService.swift │ │ │ ├── BitcoinBech32AddressService.swift │ │ │ ├── BitcoinLegacyAddressService.swift │ │ │ ├── BitcoinScriptAddress.swift │ │ │ ├── BitcoinScriptAddressProvider.swift │ │ │ ├── BitcoinScriptAddressesProvider.swift │ │ │ └── BitcoinWalletCoreAddressAdapter.swift │ │ ├── BitcoinExternalLinkProvider.swift │ │ ├── BitcoinFeeParameters.swift │ │ ├── BitcoinModels.swift │ │ ├── BitcoinScript │ │ │ ├── BitcoinScript.swift │ │ │ ├── BitcoinScriptBuilder.swift │ │ │ ├── BitcoinScriptChunk.swift │ │ │ ├── OP_CODE │ │ │ │ ├── Arithmetic │ │ │ │ │ ├── OP_0NOTEQUAL.swift │ │ │ │ │ ├── OP_1ADD.swift │ │ │ │ │ ├── OP_1SUB.swift │ │ │ │ │ ├── OP_2DIV.swift │ │ │ │ │ ├── OP_2MUL.swift │ │ │ │ │ ├── OP_ABS.swift │ │ │ │ │ ├── OP_ADD.swift │ │ │ │ │ ├── OP_BOOLAND.swift │ │ │ │ │ ├── OP_BOOLOR.swift │ │ │ │ │ ├── OP_DIV.swift │ │ │ │ │ ├── OP_GREATERTHAN.swift │ │ │ │ │ ├── OP_GREATERTHANOREQUAL.swift │ │ │ │ │ ├── OP_LESSTHAN.swift │ │ │ │ │ ├── OP_LESSTHANOREQUAL.swift │ │ │ │ │ ├── OP_LSHIFT.swift │ │ │ │ │ ├── OP_MAX.swift │ │ │ │ │ ├── OP_MIN.swift │ │ │ │ │ ├── OP_MOD.swift │ │ │ │ │ ├── OP_MUL.swift │ │ │ │ │ ├── OP_NEGATE.swift │ │ │ │ │ ├── OP_NOT.swift │ │ │ │ │ ├── OP_NUMEQUAL.swift │ │ │ │ │ ├── OP_NUMEQUALVERIFY.swift │ │ │ │ │ ├── OP_NUMNOTEQUAL.swift │ │ │ │ │ ├── OP_RSHIFT.swift │ │ │ │ │ ├── OP_SUB.swift │ │ │ │ │ └── OP_WITHIN.swift │ │ │ │ ├── Bitwise Logic │ │ │ │ │ ├── OP_AND.swift │ │ │ │ │ ├── OP_EQUAL.swift │ │ │ │ │ ├── OP_EQUALVERIFY.swift │ │ │ │ │ ├── OP_INVERT.swift │ │ │ │ │ ├── OP_OR.swift │ │ │ │ │ ├── OP_RESERVED1.swift │ │ │ │ │ ├── OP_RESERVED2.swift │ │ │ │ │ └── OP_XOR.swift │ │ │ │ ├── Crypto │ │ │ │ │ ├── OP_CHECKMULTISIG.swift │ │ │ │ │ ├── OP_CHECKMULTISIGVERIFY.swift │ │ │ │ │ ├── OP_CHECKSIG.swift │ │ │ │ │ ├── OP_CHECKSIGVERIFY.swift │ │ │ │ │ ├── OP_CODESEPARATOR.swift │ │ │ │ │ ├── OP_HASH160.swift │ │ │ │ │ ├── OP_HASH256.swift │ │ │ │ │ ├── OP_RIPEMD160.swift │ │ │ │ │ ├── OP_SHA1.swift │ │ │ │ │ └── OP_SHA256.swift │ │ │ │ ├── Flow Control │ │ │ │ │ ├── OP_ELSE.swift │ │ │ │ │ ├── OP_ENDIF.swift │ │ │ │ │ ├── OP_IF.swift │ │ │ │ │ ├── OP_NOP.swift │ │ │ │ │ ├── OP_NOTIF.swift │ │ │ │ │ ├── OP_RETURN.swift │ │ │ │ │ ├── OP_VER.swift │ │ │ │ │ ├── OP_VERIF.swift │ │ │ │ │ ├── OP_VERIFY.swift │ │ │ │ │ └── OP_VERNOTIF.swift │ │ │ │ ├── Lock Time │ │ │ │ │ ├── OP_CHECKLOCKTIMEVERIFY.swift │ │ │ │ │ └── OP_CHECKSEQUENCEVERIFY.swift │ │ │ │ ├── OP_EXAMPLE.swift │ │ │ │ ├── Pseudo Words │ │ │ │ │ ├── OP_INVALIDOPCODE.swift │ │ │ │ │ ├── OP_PUBKEY.swift │ │ │ │ │ └── OP_PUBKEYHASH.swift │ │ │ │ ├── Push Data │ │ │ │ │ ├── OP_0.swift │ │ │ │ │ ├── OP_1NEGATE.swift │ │ │ │ │ ├── OP_N.swift │ │ │ │ │ ├── OP_PUSHDATA.swift │ │ │ │ │ └── OP_RESERVED.swift │ │ │ │ ├── Reserved Words │ │ │ │ │ └── OP_NOPN.swift │ │ │ │ ├── Splice │ │ │ │ │ ├── OP_BIN2NUM.swift │ │ │ │ │ ├── OP_CAT.swift │ │ │ │ │ ├── OP_NUM2BIN.swift │ │ │ │ │ ├── OP_SIZE.swift │ │ │ │ │ └── OP_SPLIT.swift │ │ │ │ └── Stack │ │ │ │ │ ├── OP_2DROP.swift │ │ │ │ │ ├── OP_2DUP.swift │ │ │ │ │ ├── OP_2OVER.swift │ │ │ │ │ ├── OP_2ROT.swift │ │ │ │ │ ├── OP_2SWAP.swift │ │ │ │ │ ├── OP_3DUP.swift │ │ │ │ │ ├── OP_DEPTH.swift │ │ │ │ │ ├── OP_DROP.swift │ │ │ │ │ ├── OP_DUP.swift │ │ │ │ │ ├── OP_FROMALTSTACK.swift │ │ │ │ │ ├── OP_IFDUP.swift │ │ │ │ │ ├── OP_NIP.swift │ │ │ │ │ ├── OP_OVER.swift │ │ │ │ │ ├── OP_PICK.swift │ │ │ │ │ ├── OP_ROLL.swift │ │ │ │ │ ├── OP_ROT.swift │ │ │ │ │ ├── OP_SWAP.swift │ │ │ │ │ ├── OP_TOTALSTACK.swift │ │ │ │ │ └── OP_TUCK.swift │ │ │ ├── OpCodeFactory.swift │ │ │ ├── OpCodeProtocol.swift │ │ │ ├── Opcode.swift │ │ │ └── ScriptChunkHelper.swift │ │ ├── BitcoinTransactionBuilder.swift │ │ ├── BitcoinTransactionParams.swift │ │ ├── BitcoinWalletAssembly.swift │ │ ├── BitcoinWalletManager.swift │ │ └── Network │ │ │ ├── BitcoinNetworkProvider.swift │ │ │ ├── BitcoinNetworkService.swift │ │ │ └── BlockBookUtxoProvider+BitcoinNetworkProvider.swift │ ├── BitcoinCash │ │ ├── BitcoinCashAddressService.swift │ │ ├── BitcoinCashExternalLinkProvider.swift │ │ ├── BitcoinCashNetworkParams.swift │ │ ├── BitcoinCashNetworkService.swift │ │ ├── BitcoinCashNowNodesNetworkProvider.swift │ │ ├── BitcoinCashWalletAssembly.swift │ │ └── CashAddrService.swift │ ├── Cardano │ │ ├── Adalite │ │ │ ├── AdaliteNetworkProvider.swift │ │ │ ├── AdaliteResponse.swift │ │ │ ├── AdaliteTarget.swift │ │ │ └── DTOs │ │ │ │ ├── AdaliteBalanceResponseDTO.swift │ │ │ │ ├── AdaliteBaseResponseDTO.swift │ │ │ │ ├── AdaliteTokenDTO.swift │ │ │ │ └── AdaliteUnspentOutputResponseDTO.swift │ │ ├── CardanoAPIResolver.swift │ │ ├── CardanoAddressService.swift │ │ ├── CardanoAddressUtils.swift │ │ ├── CardanoAssetFilter.swift │ │ ├── CardanoError.swift │ │ ├── CardanoExternalLinkProvider.swift │ │ ├── CardanoFeeParameters.swift │ │ ├── CardanoNetworkService.swift │ │ ├── CardanoResponseMapper.swift │ │ ├── CardanoTokenContractAddressService.swift │ │ ├── CardanoTransactionBuilder.swift │ │ ├── CardanoUtil.swift │ │ ├── CardanoWalletAssembly.swift │ │ ├── CardanoWalletManager.swift │ │ └── Rosetta │ │ │ ├── RosettaBody.swift │ │ │ ├── RosettaData.swift │ │ │ ├── RosettaNetworkProvider.swift │ │ │ ├── RosettaResponse.swift │ │ │ └── RosettaTarget.swift │ ├── Chia │ │ ├── ChiaAPIResolver.swift │ │ ├── ChiaAddressService.swift │ │ ├── ChiaExternalLinkProvider.swift │ │ ├── ChiaNetworkService.swift │ │ ├── ChiaTransactionBuilder.swift │ │ ├── ChiaWalletAssembly.swift │ │ ├── ChiaWalletManager.swift │ │ ├── Common │ │ │ ├── Chia+Int64.swift │ │ │ ├── ChiaCondition.swift │ │ │ ├── ChiaModels.swift │ │ │ ├── ChiaPuzzleUtils.swift │ │ │ └── ClvmProgram.swift │ │ └── Provider │ │ │ ├── ChiaNetworkProvider.swift │ │ │ ├── ChiaProviderRequests.swift │ │ │ ├── ChiaProviderResponses.swift │ │ │ └── ChiaProviderTarget.swift │ ├── Cosmos │ │ ├── CosmosChain.swift │ │ ├── CosmosExternalLinkProvider.swift │ │ ├── CosmosFeeParameters.swift │ │ ├── CosmosModels.swift │ │ ├── CosmosNetworkService.swift │ │ ├── CosmosProtoMessage.swift │ │ ├── CosmosRestProvider.swift │ │ ├── CosmosStakeKitTransactionHelper.swift │ │ ├── CosmosTarget.swift │ │ ├── CosmosTransactionBuilder.swift │ │ ├── CosmosTransactionParams.swift │ │ ├── CosmosWalletAssembly.swift │ │ ├── CosmosWalletManager.swift │ │ └── OtherChains │ │ │ ├── SeiExternalLinkProvider.swift │ │ │ ├── TerraV1ExternalLinkProvider.swift │ │ │ └── TerraV2ExternalLinkProvider.swift │ ├── Dash │ │ ├── DashExternalLinkProvider.swift │ │ ├── DashMainNetworkParams.swift │ │ ├── DashTestNetworkParams.swift │ │ └── DashWalletAssembly.swift │ ├── Decimal │ │ ├── DecimalAddressConverter.swift │ │ ├── DecimalAddressService.swift │ │ ├── DecimalExternalLinkProvider.swift │ │ └── DecimalPlainAddress.swift │ ├── Dogecoin │ │ ├── DogecoinExternalLinkProvider.swift │ │ ├── DogecoinNetworkParams.swift │ │ ├── DogecoinWalletAssembly.swift │ │ └── DogecoinWalletManager.swift │ ├── Ducatus │ │ ├── Bitcore │ │ │ ├── BitcoreProvider.swift │ │ │ ├── BitcoreResponse.swift │ │ │ └── BitcoreTarget.swift │ │ ├── DucatusAddressService.swift │ │ ├── DucatusExternalLinkProvider.swift │ │ ├── DucatusNetworkService.swift │ │ ├── DucatusWalletAssembly.swift │ │ └── DucatusWalletManager.swift │ ├── EnergyWebX │ │ └── EnergyWebXExternalLinkProvider.swift │ ├── Ethereum │ │ ├── ABI │ │ │ ├── ABIEncoder.swift │ │ │ └── WalletCoreABIEncoder.swift │ │ ├── ERC20TokenMethods │ │ │ ├── AllowanceERC20TokenMethod.swift │ │ │ ├── ApproveERC20TokenMethod.swift │ │ │ ├── EthereumExternalLinkProvider.swift │ │ │ ├── TokenBalanceERC20TokenMethod.swift │ │ │ └── TransferERC20TokenMethod.swift │ │ ├── EthereumAddressConverter │ │ │ ├── EthereumAddressConverter.swift │ │ │ ├── EthereumAddressConverterError.swift │ │ │ ├── EthereumAddressConverterFactory.swift │ │ │ └── IdentityEthereumAddressConverter.swift │ │ ├── EthereumAddressService.swift │ │ ├── EthereumStakeKitTransactionHelper.swift │ │ ├── EthereumTransactionBuilder.swift │ │ ├── EthereumWalletAssembly.swift │ │ ├── EthereumWalletManager.swift │ │ ├── Interfaces │ │ │ ├── EthereumAdditionalInfoProvider.swift │ │ │ ├── EthereumNetworkProvider.swift │ │ │ ├── EthereumTransactionDataBuilder.swift │ │ │ └── EthereumTransactionSigner.swift │ │ ├── Models │ │ │ ├── ETHError.swift │ │ │ ├── EthereumFeeParameters.swift │ │ │ ├── EthereumModels.swift │ │ │ ├── EthereumResponse.swift │ │ │ └── EthereumTransactionParams.swift │ │ ├── Network │ │ │ ├── EthereumJsonRpcProvider.swift │ │ │ ├── EthereumNetworkService.swift │ │ │ └── EthereumTarget.swift │ │ ├── OtherChains │ │ │ ├── ArbitrumExternalLinkProvider.swift │ │ │ ├── AreonExternalLinkProvider.swift │ │ │ ├── AuroraExternalLinkProvider.swift │ │ │ ├── AvalancheExternalLinkProvider.swift │ │ │ ├── BSCExternalLinkProvider.swift │ │ │ ├── BaseExternalLinkProvider.swift │ │ │ ├── BlastExternalLinkProvider.swift │ │ │ ├── CoreExternalLinkProvider.swift │ │ │ ├── CronosExternalLinkProvider.swift │ │ │ ├── CyberExternalLinkProvider.swift │ │ │ ├── DisChainExternalLinkProvider.swift │ │ │ ├── EnergyWebChainExternalLinkProvider.swift │ │ │ ├── EthereumClassicExternalLinkProvider.swift │ │ │ ├── EthereumPoWExternalLinkProvider.swift │ │ │ ├── FantomExternalLinkProvider.swift │ │ │ ├── FlareExternalLinkProvider.swift │ │ │ ├── GnosisExternalLinkProvider.swift │ │ │ ├── KavaExternalLinkProvider.swift │ │ │ ├── LitecoinExternalLinkProvider.swift │ │ │ ├── MantaExternalLinkProvider.swift │ │ │ ├── MantleExternalLinkProvider.swift │ │ │ ├── MoonbeamExternalLinkProvider.swift │ │ │ ├── MoonriverExternalLinkProvider.swift │ │ │ ├── OctaExternalLinkProvider.swift │ │ │ ├── OptimismExternalLinkProvider.swift │ │ │ ├── Playa3ullGamesExternalLinkProvider.swift │ │ │ ├── PolygonExternalLinkProvider.swift │ │ │ ├── PolygonZkEvmExternalLinkProvider.swift │ │ │ ├── PulsechainExternalLinkProvider.swift │ │ │ ├── ShibariumExternalLinkProvider.swift │ │ │ ├── TaraxaExternalLinkProvider.swift │ │ │ ├── TelosExternalLinkProvider.swift │ │ │ └── ZkSyncExternalLinkProvider.swift │ │ └── SmartContract │ │ │ ├── EVMSmartContractInteractor.swift │ │ │ ├── SmartContractMethod.swift │ │ │ ├── SmartContractMethodParameterType.swift │ │ │ ├── SmartContractRequest.swift │ │ │ └── SmartContractTargetType.swift │ ├── EthereumOptimisticRollup │ │ ├── EthereumOptimisticRollupSmartContract.swift │ │ ├── EthereumOptimisticRollupWalletAssembly.swift │ │ └── EthereumOptimisticRollupWalletManager.swift │ ├── Filecoin │ │ ├── FilecoinExternalLinkProvider.swift │ │ ├── FilecoinFeeParameters.swift │ │ ├── FilecoinNetworkProvider.swift │ │ ├── FilecoinTransactionBuilder.swift │ │ ├── FilecoinWalletAssembly.swift │ │ ├── FilecoinWalletManager.swift │ │ └── Network │ │ │ ├── DTO │ │ │ ├── FilecoinAccountInfo.swift │ │ │ ├── FilecoinMessage.swift │ │ │ ├── FilecoinResponse.swift │ │ │ └── FilecoinSignedMessage.swift │ │ │ ├── FilecoinNetworkService.swift │ │ │ └── FilecoinTarget.swift │ ├── Hedera │ │ ├── HederaAPIResolver.swift │ │ ├── HederaAddressService.swift │ │ ├── HederaCreatedAccount.swift │ │ ├── HederaExternalLinkProvider.swift │ │ ├── HederaPendingTransactionRecordMapper.swift │ │ ├── HederaTokenContractAddressConverter.swift │ │ ├── HederaTransactionBuilder.swift │ │ ├── HederaTransactionParams.swift │ │ ├── HederaWalletAssembly.swift │ │ ├── HederaWalletManager.swift │ │ └── Network │ │ │ ├── DTO │ │ │ └── Result │ │ │ │ ├── HederaNetworkResult.APIError.swift │ │ │ │ ├── HederaNetworkResult.AccountBalance.swift │ │ │ │ ├── HederaNetworkResult.AccountHbarBalance.swift │ │ │ │ ├── HederaNetworkResult.AccountTokensBalance.swift │ │ │ │ ├── HederaNetworkResult.AccountsInfo.swift │ │ │ │ ├── HederaNetworkResult.ExchangeRate.swift │ │ │ │ ├── HederaNetworkResult.TransactionInfo.swift │ │ │ │ ├── HederaNetworkResult.TransactionsInfo.swift │ │ │ │ └── HederaNetworkResult.swift │ │ │ ├── Domain │ │ │ ├── HederaAccountBalance.swift │ │ │ ├── HederaAccountInfo.swift │ │ │ ├── HederaError.swift │ │ │ ├── HederaExchangeRate.swift │ │ │ └── HederaTransactionInfo.swift │ │ │ ├── HederaConsensusNetworkProvider.swift │ │ │ ├── HederaNetworkService.swift │ │ │ ├── HederaRESTNetworkProvider.swift │ │ │ ├── HederaTarget.swift │ │ │ └── HederaTransactionIdConverter.swift │ ├── ICP │ │ ├── ICPExternalLinkProvider.swift │ │ ├── ICPTransactionBuilder.swift │ │ ├── ICPTransactionParams.swift │ │ ├── ICPWalletAssembly.swift │ │ ├── ICPWalletManager.swift │ │ └── Network │ │ │ ├── ICPNetworkProvider.swift │ │ │ ├── ICPNetworkService.swift │ │ │ └── ICPProviderTarget.swift │ ├── Kaspa │ │ ├── Address │ │ │ ├── KaspaAddressComponents.swift │ │ │ └── KaspaAddressService.swift │ │ ├── KaspaAPIResolver.swift │ │ ├── KaspaExternalLinkProvider.swift │ │ ├── KaspaFeeMapper.swift │ │ ├── KaspaTransaction.swift │ │ ├── KaspaTransactionBuilder.swift │ │ ├── KaspaWalletAssembly.swift │ │ ├── KaspaWalletManager.swift │ │ └── Network │ │ │ ├── KaspaNetworkModels.swift │ │ │ ├── KaspaNetworkProvider.swift │ │ │ ├── KaspaNetworkService.swift │ │ │ └── KaspaTarget.swift │ ├── Koinos │ │ ├── KoinosAPIResolver.swift │ │ ├── KoinosAddressService.swift │ │ ├── KoinosExternalLinkProvider.swift │ │ ├── KoinosNetworkParams.swift │ │ ├── KoinosTransactionBuilder.swift │ │ ├── KoinosWalletAssembly.swift │ │ ├── KoinosWalletManager.swift │ │ ├── Models │ │ │ ├── KoinosAccountInfo.swift │ │ │ ├── KoinosAccountNonce.swift │ │ │ ├── KoinosDTOMapper.swift │ │ │ ├── KoinosResourceLimitData.swift │ │ │ ├── KoinosTransactionEntry.swift │ │ │ ├── KoinosTransactionParams.swift │ │ │ └── KoinosTransferEvent.swift │ │ ├── Network │ │ │ ├── DTO │ │ │ │ ├── KoinosMethod.swift │ │ │ │ └── KoinosProtocol.swift │ │ │ ├── KoinosNetworkProvider.swift │ │ │ ├── KoinosNetworkService.swift │ │ │ └── KoinosTarget.swift │ │ └── protobuf │ │ │ ├── options.pb.swift │ │ │ ├── options.proto │ │ │ ├── protocol.pb.swift │ │ │ ├── protocol.proto │ │ │ ├── token.pb.swift │ │ │ ├── token.proto │ │ │ ├── value.pb.swift │ │ │ └── value.proto │ ├── Litecoin │ │ ├── LitecoinNetworkParams.swift │ │ ├── LitecoinNetworkService.swift │ │ └── LitecoinWalletAssembly.swift │ ├── Mantle │ │ ├── MantleUtils.swift │ │ ├── MantleWalletAssembly.swift │ │ └── MantleWalletManager.swift │ ├── NEAR │ │ ├── DTO │ │ │ ├── Extensions │ │ │ │ └── NEARNetworkResult.APIError+.swift │ │ │ ├── Params │ │ │ │ ├── NEARNetworkParams.Finality.swift │ │ │ │ ├── NEARNetworkParams.ProtocolConfig.swift │ │ │ │ ├── NEARNetworkParams.Transaction.swift │ │ │ │ ├── NEARNetworkParams.ViewAccessKey.swift │ │ │ │ ├── NEARNetworkParams.ViewAccount.swift │ │ │ │ └── NEARNetworkParams.swift │ │ │ └── Result │ │ │ │ ├── NEARNetworkResult.APIError.swift │ │ │ │ ├── NEARNetworkResult.AccessKeyInfo.swift │ │ │ │ ├── NEARNetworkResult.AccountInfo.swift │ │ │ │ ├── NEARNetworkResult.GasPrice.swift │ │ │ │ ├── NEARNetworkResult.ProtocolConfig.swift │ │ │ │ ├── NEARNetworkResult.TransactionSendAsync.swift │ │ │ │ ├── NEARNetworkResult.TransactionSendAwait.swift │ │ │ │ ├── NEARNetworkResult.TransactionStatus.swift │ │ │ │ └── NEARNetworkResult.swift │ │ ├── Domain │ │ │ ├── NEARAccessKeyInfo.swift │ │ │ ├── NEARAccountInfo.swift │ │ │ ├── NEARProtocolConfig.swift │ │ │ └── NEARTransactionsInfo.swift │ │ ├── NEARAddressService.swift │ │ ├── NEARAddressUtil.swift │ │ ├── NEARExternalLinkProvider.swift │ │ ├── NEARProtocolConfigCache.swift │ │ ├── NEARTransactionBuilder.swift │ │ ├── NEARTransactionParams.swift │ │ ├── NEARWalletAssembly.swift │ │ ├── NEARWalletManager.swift │ │ └── Network │ │ │ ├── NEARNetworkProvider.swift │ │ │ ├── NEARNetworkService.swift │ │ │ └── NEARTarget.swift │ ├── Polkadot │ │ ├── AccountHealthCheck │ │ │ └── Network │ │ │ │ ├── DTO │ │ │ │ ├── Params │ │ │ │ │ ├── SubscanAPIParams.AccountInfo.swift │ │ │ │ │ ├── SubscanAPIParams.ExtrinsicInfo.swift │ │ │ │ │ ├── SubscanAPIParams.ExtrinsicsList.swift │ │ │ │ │ └── SubscanAPIParams.swift │ │ │ │ └── Result │ │ │ │ │ ├── SubscanAPIResult.AccountInfo.swift │ │ │ │ │ ├── SubscanAPIResult.Error.swift │ │ │ │ │ ├── SubscanAPIResult.ExtrinsicInfo.swift │ │ │ │ │ ├── SubscanAPIResult.ExtrinsicsList.swift │ │ │ │ │ └── SubscanAPIResult.swift │ │ │ │ ├── Domain │ │ │ │ ├── PolkadotAccountHealthInfo.swift │ │ │ │ ├── PolkadotTransaction.swift │ │ │ │ └── PolkadotTransactionDetails.swift │ │ │ │ ├── SubscanAPITarget.swift │ │ │ │ └── SubscanPolkadotAccountHealthNetworkService.swift │ │ ├── OtherChains │ │ │ ├── AzeroExternalLinkProvider.swift │ │ │ ├── BittensorExternalLinkProvider.swift │ │ │ ├── BittensorWalletAssembly.swift │ │ │ ├── JoystreamExternalLinkProvider.swift │ │ │ └── KusamaExternalLinkProvider.swift │ │ ├── PolkadotAddress.swift │ │ ├── PolkadotAddressService.swift │ │ ├── PolkadotBlockchainMeta.swift │ │ ├── PolkadotExternalLinkProvider.swift │ │ ├── PolkadotJsonRpcProvider.swift │ │ ├── PolkadotNetwork.swift │ │ ├── PolkadotNetworkService.swift │ │ ├── PolkadotResponse.swift │ │ ├── PolkadotTarget.swift │ │ ├── PolkadotTransactionBuilder.swift │ │ ├── PolkadotWalletManager.swift │ │ ├── SubstrateRuntimeVersion.swift │ │ ├── SubstrateRuntimeVersionProvider.swift │ │ └── SubstrateWalletAssembly.swift │ ├── Radiant │ │ ├── Domain │ │ │ ├── RadiantAddressInfo.swift │ │ │ ├── RadiantAmountUnspentTransaction.swift │ │ │ └── RadiantUnspentOutput.swift │ │ ├── Network │ │ │ └── RadiantNetworkService.swift │ │ ├── RadiantAddressService.swift │ │ ├── RadiantAddressUtils.swift │ │ ├── RadiantExternalLinkProvider.swift │ │ ├── RadiantTransactionBuilder.swift │ │ ├── RadiantTransactionUtils.swift │ │ ├── RadiantWalletAssembly.swift │ │ └── RadiantWalletManager.swift │ ├── Ravencoin │ │ ├── Models │ │ │ ├── RavencoinFee.swift │ │ │ ├── RavencoinRawTransaction.swift │ │ │ ├── RavencoinTransactionHistory.swift │ │ │ ├── RavencoinTransactionInfo.swift │ │ │ ├── RavencoinWalletInfo.swift │ │ │ └── RavencoinWalletUTXO.swift │ │ ├── RavencoinExternalLinkProvider.swift │ │ ├── RavencoinMainNetworkParams.swift │ │ ├── RavencoinNetworkProvider.swift │ │ ├── RavencoinTarget.swift │ │ ├── RavencoinTestNetworkParams.swift │ │ ├── RavencoinWalletAssembly.swift │ │ └── RavencoinWalletManager.swift │ ├── Rsk │ │ ├── RSKExternalLinkProvider.swift │ │ └── RskAddressService.swift │ ├── Solana │ │ ├── SolanaAddressService.swift │ │ ├── SolanaApiLoggerUtil.swift │ │ ├── SolanaDummyAccountStorage.swift │ │ ├── SolanaError+.swift │ │ ├── SolanaExternalLinkProvider.swift │ │ ├── SolanaFeeParameters.swift │ │ ├── SolanaNetworkService.swift │ │ ├── SolanaResponse.swift │ │ ├── SolanaSdk+.swift │ │ ├── SolanaStakeKitTransactionHelper.swift │ │ ├── SolanaTransactionSigner.swift │ │ ├── SolanaWalletAssembly.swift │ │ └── SolanaWalletManager.swift │ ├── Stellar │ │ ├── StellarAddressService.swift │ │ ├── StellarExternalLinkProvider.swift │ │ ├── StellarNetworkProvider.swift │ │ ├── StellarNetworkService.swift │ │ ├── StellarSdk+.swift │ │ ├── StellarTransactionBuilder.swift │ │ ├── StellarTransactionParams.swift │ │ ├── StellarWalletAssembly.swift │ │ └── StellarWalletManager.swift │ ├── Sui │ │ ├── Network │ │ │ ├── SuiBalanceFetcher.swift │ │ │ ├── SuiNetworkProvider.swift │ │ │ ├── SuiNetworkService.swift │ │ │ ├── SuiResponse.swift │ │ │ └── SuiTarget.swift │ │ ├── SUIUtils.swift │ │ ├── SuiAddress.swift │ │ ├── SuiAddressService.swift │ │ ├── SuiCoinObject.swift │ │ ├── SuiError.swift │ │ ├── SuiExternalLinkPrivider.swift │ │ ├── SuiFeeParameters.swift │ │ ├── SuiTransactionBuilder.swift │ │ ├── SuiWalletAssembly.swift │ │ └── SuiWalletManager.swift │ ├── TON │ │ ├── TONAPIResolver.swift │ │ ├── TONAddressService.swift │ │ ├── TONError.swift │ │ ├── TONExternalLinkProvider.swift │ │ ├── TONNetworkService.swift │ │ ├── TONProvider │ │ │ ├── TONProvider.swift │ │ │ ├── TONProviderModels.swift │ │ │ ├── TONProviderRequest.swift │ │ │ ├── TONProviderResponse.swift │ │ │ └── TONProviderTarget.swift │ │ ├── TONTransactionBuilder.swift │ │ ├── TONTransactionParams.swift │ │ ├── TONWalletAssembly.swift │ │ ├── TONWalletInfo.swift │ │ └── TONWalletManager.swift │ ├── Tezos │ │ ├── TezosAddress.swift │ │ ├── TezosAddressService.swift │ │ ├── TezosExternalLinkProvider.swift │ │ ├── TezosFee.swift │ │ ├── TezosJsonRpcProvider.swift │ │ ├── TezosNetworkService.swift │ │ ├── TezosPrefix.swift │ │ ├── TezosTarget.swift │ │ ├── TezosTransactionBuilder.swift │ │ ├── TezosWalletAssembly.swift │ │ └── TezosWalletManager.swift │ ├── Tron │ │ ├── TronAPIResolver.swift │ │ ├── TronAddressService.swift │ │ ├── TronExternalLinkProvider.swift │ │ ├── TronFeeParameters.swift │ │ ├── TronFunction.swift │ │ ├── TronJsonRpcProvider.swift │ │ ├── TronNetworkModels.swift │ │ ├── TronNetworkProvider.swift │ │ ├── TronNetworkService.swift │ │ ├── TronStakeKitTransactionHelper.swift │ │ ├── TronTarget.swift │ │ ├── TronTransactionBuilder.swift │ │ ├── TronTransactionDataBuilder.swift │ │ ├── TronTransactionParams.swift │ │ ├── TronUtils.swift │ │ ├── TronWalletAssembly.swift │ │ ├── TronWalletManager.swift │ │ └── protobuf │ │ │ ├── Discover.pb.swift │ │ │ ├── Tron.pb.swift │ │ │ ├── TronInventoryItems.pb.swift │ │ │ └── contract │ │ │ ├── account_contract.pb.swift │ │ │ ├── asset_issue_contract.pb.swift │ │ │ ├── balance_contract.pb.swift │ │ │ ├── common.pb.swift │ │ │ ├── exchange_contract.pb.swift │ │ │ ├── market_contract.pb.swift │ │ │ ├── proposal_contract.pb.swift │ │ │ ├── shield_contract.pb.swift │ │ │ ├── smart_contract.pb.swift │ │ │ ├── storage_contract.pb.swift │ │ │ ├── vote_asset_contract.pb.swift │ │ │ └── witness_contract.pb.swift │ ├── VeChain │ │ ├── Network │ │ │ ├── DTO │ │ │ │ ├── Extensions │ │ │ │ │ └── VeChainNetworkResult.ContractCall+.swift │ │ │ │ ├── Params │ │ │ │ │ ├── VeChainNetworkParams.BlockInfo.swift │ │ │ │ │ ├── VeChainNetworkParams.ContractCall.swift │ │ │ │ │ ├── VeChainNetworkParams.Transaction.swift │ │ │ │ │ ├── VeChainNetworkParams.TransactionStatus.swift │ │ │ │ │ └── VeChainNetworkParams.swift │ │ │ │ └── Result │ │ │ │ │ ├── VeChainNetworkResult.AccountInfo.swift │ │ │ │ │ ├── VeChainNetworkResult.BlockInfo.swift │ │ │ │ │ ├── VeChainNetworkResult.ContractCall.swift │ │ │ │ │ ├── VeChainNetworkResult.Transaction.swift │ │ │ │ │ ├── VeChainNetworkResult.TransactionInfo.swift │ │ │ │ │ └── VeChainNetworkResult.swift │ │ │ ├── Domain │ │ │ │ ├── VeChainAccountInfo.swift │ │ │ │ ├── VeChainBlockInfo.swift │ │ │ │ └── VeChainTransactionInfo.swift │ │ │ ├── VeChainNetworkProvider.swift │ │ │ ├── VeChainNetworkService.swift │ │ │ └── VeChainTarget.swift │ │ ├── VeChainExternalLinkProvider.swift │ │ ├── VeChainFeeCalculator.swift │ │ ├── VeChainFeeParams.swift │ │ ├── VeChainTransactionBuilder.swift │ │ ├── VeChainTransactionParams.swift │ │ ├── VeChainWalletAssembly.swift │ │ └── VeChainWalletManager.swift │ ├── XDC │ │ ├── XDCAddressConverter.swift │ │ ├── XDCAddressService.swift │ │ └── XDCExternalLinkProvider.swift │ └── XRP │ │ ├── XRPAddressService.swift │ │ ├── XRPExternalLinkProvider.swift │ │ ├── XRPKit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Sources │ │ │ └── XRPKit │ │ │ │ ├── Models │ │ │ │ ├── XRPAccount.swift │ │ │ │ ├── XRPAccountInfo.swift │ │ │ │ ├── XRPAddress.swift │ │ │ │ ├── XRPAmount.swift │ │ │ │ ├── XRPCurrentLedgerInfo.swift │ │ │ │ ├── XRPHistoricalTransaction.swift │ │ │ │ ├── XRPKeypair.swift │ │ │ │ ├── XRPLResponse.swift │ │ │ │ ├── XRPTransaction.swift │ │ │ │ ├── XRPWallet.swift │ │ │ │ └── XrpData.swift │ │ │ │ ├── Network │ │ │ │ ├── HTTP.swift │ │ │ │ ├── WebSocket+Convenience.swift │ │ │ │ ├── WebSocket.swift │ │ │ │ └── XRPLedger.swift │ │ │ │ ├── SigningAlgorithms │ │ │ │ └── SigningAlgorithm.swift │ │ │ │ └── Utilities │ │ │ │ ├── Entropy.swift │ │ │ │ ├── Extensions.swift │ │ │ │ ├── IssuedAmount.swift │ │ │ │ ├── Serializer.swift │ │ │ │ ├── SerializerDefinitions.swift │ │ │ │ └── URandom.swift │ │ └── XRPBase58.swift │ │ ├── XRPNetworkService.swift │ │ ├── XRPTarget.swift │ │ ├── XRPTransactionBuilder.swift │ │ ├── XRPTransactionParams.swift │ │ ├── XRPWalletAssembly.swift │ │ ├── XRPWalletManager.swift │ │ ├── XrpNetworkProvider.swift │ │ └── XrpResponse.swift ├── Common │ ├── API │ │ ├── APIResolvers │ │ │ ├── APIKeysInfoProvider.swift │ │ │ ├── APIModels.swift │ │ │ ├── APINodeInfoResolver.swift │ │ │ ├── APIResolver.swift │ │ │ ├── DwellirAPIResolver.swift │ │ │ ├── GetBlock │ │ │ │ └── GetBlockAPIResolver.swift │ │ │ ├── InfuraAPIResolver.swift │ │ │ ├── NowNodes │ │ │ │ ├── NowNodesAPIKeysInfoProvider.swift │ │ │ │ └── NowNodesAPIResolver.swift │ │ │ ├── OnfinalityAPIResolver.swift │ │ │ ├── Public │ │ │ │ └── PublicAPIResolver.swift │ │ │ └── QuickNodeAPIResolver.swift │ │ ├── HostProvider.swift │ │ ├── MultiNetworkProvider.swift │ │ ├── NetworkProvider.swift │ │ ├── NetworkProviderConfiguration.swift │ │ └── TestnetAPINodeInfoProvider.swift │ ├── Account │ │ ├── AccountCreator.swift │ │ └── CreatedAccount.swift │ ├── Address │ │ ├── Address.swift │ │ ├── AddressService.swift │ │ ├── AddressType.swift │ │ ├── AddressTypesConfig.swift │ │ └── PlainAddress.swift │ ├── Amount.swift │ ├── AssetRequirementsCondition.swift │ ├── BaseManager.swift │ ├── BlockBookProviderType.swift │ ├── Blockchain.swift │ ├── Blockchain │ │ └── Blockchain+AllCases.swift │ ├── BlockchainSdkConfig.swift │ ├── BlockchainSdkError.swift │ ├── CommonSigner.swift │ ├── Constants.swift │ ├── Credentials.swift │ ├── DTO │ │ ├── AnyEncodable.swift │ │ ├── JSONRPC.swift │ │ └── NullValue.swift │ ├── DataStorage │ │ └── BlockchainDataStorage.swift │ ├── Derivations │ │ ├── DerivationConfig.swift │ │ ├── DerivationConfigV1.swift │ │ ├── DerivationConfigV2.swift │ │ ├── DerivationConfigV3.swift │ │ └── DerivationStyle.swift │ ├── DetailedError.swift │ ├── ErrorCodeProviding.swift │ ├── EthereumApiKeys.swift │ ├── ExceptionHandler.swift │ ├── ExternalLinkProvider.swift │ ├── Factories │ │ ├── AddressServiceFactory.swift │ │ ├── BlockchainSdkDependencies.swift │ │ ├── ContractAddressValidatorFactory.swift │ │ ├── EVMSmartContractInteractorFactory.swift │ │ ├── EstimationFeeAddressFactory.swift │ │ ├── ExternalLinkProviderFactory.swift │ │ ├── SendTxErrorFactory.swift │ │ ├── TransactionHistoryProviderFactory.swift │ │ ├── WalletFactory.swift │ │ └── WalletManagerFactory.swift │ ├── Fee.swift │ ├── FeePaidCurrency.swift │ ├── FeeResourceType.swift │ ├── Interfaces │ │ ├── BitcoinTransactionFeeCalculator.swift │ │ ├── BlockchainNotifications │ │ │ ├── ExistentialDepositProvider.swift │ │ │ ├── RentProvider.swift │ │ │ └── WithdrawalSuggestionProvider.swift │ │ ├── StakeKitTransactionSender.swift │ │ ├── TransactionCreator.swift │ │ ├── TransactionFeeProvider.swift │ │ ├── TransactionValidator │ │ │ ├── CardanoTransferRestrictable.swift │ │ │ ├── DustRestrictable.swift │ │ │ ├── FeeResourceRestrictable.swift │ │ │ ├── MaximumAmountRestrictable.swift │ │ │ ├── MinimumBalanceRestrictable.swift │ │ │ ├── ReserveAmountRestrictable.swift │ │ │ ├── TransactionValidator.swift │ │ │ └── ValidationError.swift │ │ └── WalletManager.swift │ ├── Localizations │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── uk-UA.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ ├── NetworkProviderAssembly.swift │ ├── PendingTransaction.swift │ ├── PendingTransactionRecord.swift │ ├── PendingTransactionRecordMapper.swift │ ├── SS58.swift │ ├── SignatureInfo.swift │ ├── StakeKitTransaction.swift │ ├── TangemNetworkLoggerPlugin.swift │ ├── Token.swift │ ├── Transaction.swift │ ├── TransactionHistory │ │ ├── Algorand │ │ │ ├── AlgorandIndexProviderTarget.swift │ │ │ ├── AlgorandTransactionHistoryMapper.swift │ │ │ └── AlgorandTransactionHistoryProvider.swift │ │ ├── BlockBookTransactionHistoryTotalPageCountExtractor.swift │ │ ├── Ethereum │ │ │ ├── EthereumTransactionHistoryMapper.swift │ │ │ └── EthereumTransactionHistoryProvider.swift │ │ ├── Polygon │ │ │ ├── DTO │ │ │ │ └── PolygonTransactionHistoryResult.swift │ │ │ ├── Domain │ │ │ │ └── PolygonScanAPIError.swift │ │ │ ├── Network │ │ │ │ └── PolygonTransactionHistoryTarget.swift │ │ │ ├── PolygonTransactionHistoryMapper.swift │ │ │ └── PolygonTransactionHistoryProvider.swift │ │ ├── TransactionHistory.swift │ │ ├── TransactionHistoryMapper.swift │ │ ├── TransactionHistoryPages.swift │ │ ├── TransactionHistoryProvider.swift │ │ ├── TransactionRecord.swift │ │ ├── Tron │ │ │ ├── TronTransactionHistoryMapper.swift │ │ │ └── TronTransactionHistoryProvider.swift │ │ └── UTXO │ │ │ ├── UTXOTransactionHistoryMapper.swift │ │ │ └── UTXOTransactionHistoryProvider.swift │ ├── TransactionSendResult.swift │ ├── UnixTimestamp.swift │ ├── Utils │ │ ├── EthereumUtils.swift │ │ ├── Lock.swift │ │ ├── ObjectDescription.swift │ │ └── SignatureUtils.swift │ ├── Wallet+PublicKey.swift │ ├── Wallet.swift │ ├── WalletCoreAddressService.swift │ ├── WalletCoreSigner.swift │ ├── WalletError.swift │ ├── WalletManagerAssembly.swift │ └── WebSocket │ │ ├── JSONRPCWebSocketProvider.swift │ │ ├── URLSessionTask.State+CustomStringConvertible.swift │ │ ├── URLSessionWebSocketDelegateWrapper.swift │ │ ├── URLSessionWebSocketTask.CloseCode+CustomStringConvertible.swift │ │ ├── URLSessionWebSocketTask.Message+CustomStringConvertible.swift │ │ ├── URLSessionWebSocketTaskWrapper.swift │ │ └── WebSocketConnection.swift ├── CommonNetworkServices │ ├── BlockBook │ │ ├── BlockBookTarget.swift │ │ ├── BlockBookUtxoProvider.swift │ │ ├── Config │ │ │ ├── BlockBookConfig.swift │ │ │ ├── BlockBookNode.swift │ │ │ └── Implementations │ │ │ │ ├── GetBlockBlockBookConfig.swift │ │ │ │ └── NowNodesBlockBookConfig.swift │ │ └── DTO │ │ │ ├── BlockBookResponses.swift │ │ │ ├── Extensions │ │ │ ├── BlockBookResponse+.swift │ │ │ └── BlockBookTarget.AddressRequestParameters.FilterType+.swift │ │ │ └── NodeRequest.swift │ ├── Blockchair │ │ ├── BlockchairAddressBlockMapper.swift │ │ ├── BlockchairNetworkProvider.swift │ │ ├── BlockchairResponses.swift │ │ └── BlockchairTarget.swift │ ├── Blockcypher │ │ ├── BlockcypherNetworkProvider.swift │ │ ├── BlockcypherResponse.swift │ │ └── BlockcypherTarget.swift │ └── Electrum │ │ ├── ElectrumAddressInfo.swift │ │ ├── ElectrumDTO.swift │ │ ├── ElectrumNetworkProvider.swift │ │ └── ElectrumWebSocketProvider.swift ├── Extensions │ ├── AnyPublisher+Async.swift │ ├── Bech32 │ │ └── Bech32.swift │ ├── BigUInt+.swift │ ├── Bundle+.swift │ ├── CBOR+.swift │ ├── Collection+.swift │ ├── Data+.swift │ ├── DateFormatter+.swift │ ├── Decimal+.swift │ ├── Future+.swift │ ├── Int+.swift │ ├── JSONDecoder+.swift │ ├── JSONEncoder+.swift │ ├── KeyedDecodingContainer+.swift │ ├── Log+.swift │ ├── Moya+.swift │ ├── Moya+Combine │ │ ├── AnyPublisher+Response.swift │ │ ├── MoyaProvider+Combine.swift │ │ └── MoyaPublisher.swift │ ├── Publisher+.swift │ ├── RIPEMD160+.swift │ ├── Result+.swift │ ├── Sequence+.swift │ ├── String+.swift │ ├── TWCoin+.swift │ ├── TWPublicKey+.swift │ ├── ThenProcessable.swift │ ├── URL+.swift │ └── Uint64+.swift └── PrivacyInfo.xcprivacy ├── BlockchainSdkExample ├── APIListUtils.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Blockchain SDK.png │ │ └── Contents.json │ └── Contents.json ├── BlockchainSdkExample.entitlements ├── BlockchainSdkExampleApp.swift ├── BlockchainSdkExampleView.swift ├── BlockchainSdkExampleViewModel.swift ├── InMemoryBlockchainDataStorage.swift ├── Info.plist ├── Launch Screen.storyboard ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── SimpleAccountCreator.swift ├── BlockchainSdkTests ├── Algorand │ └── AlgorandTests.swift ├── Aptos │ └── AptosTests.swift ├── Bitcoin │ └── BitcoinTests.swift ├── Cardano │ ├── CardanoTests.swift │ └── CardanoTokenContractAddressServiceTests.swift ├── Chia │ └── ChiaTests.swift ├── Common │ ├── AddressServiceManagerUtility.swift │ ├── AddressTests.swift │ ├── Bech32Tests.swift │ ├── BlockchainSdkTests.swift │ ├── CommonTests.swift │ ├── DecodableVectors.swift │ ├── KeysServiceManagerUtility.swift │ ├── SS58Tests.swift │ ├── TestVectorsUtility.swift │ ├── TransactionSizeTesterUtility.swift │ └── WalletCoreSignerTesterUtility.swift ├── Cosmos │ └── CosmosTests.swift ├── Ethereum │ └── EthereumTests.swift ├── Extensions │ ├── BigUInt+.swift │ ├── NSError+.swift │ ├── PrivateKeySigner+.swift │ ├── TWCurve+.swift │ ├── TWPublicKeyType+.swift │ ├── XCTAssert+.swift │ └── XCTestCase+.swift ├── Filecoin │ ├── FilecoinAddressTests.swift │ └── FilecoinTransactionBuilderTests.swift ├── Hedera │ └── HederaTests.swift ├── ICP │ └── ICPTests.swift ├── Info.plist ├── Kaspa │ └── KaspaTests.swift ├── Koinos │ ├── KoinosAddressTests.swift │ ├── KoinosMethodResponseDecodingTests.swift │ ├── KoinosTransactionBuilderTests.swift │ └── KoinosWalletManagerTests.swift ├── Litecoin │ └── LitecoinTests.swift ├── Mantle │ └── MantleTests.swift ├── NEAR │ └── NEARTests.swift ├── Polkadot │ └── PolkadotTests.swift ├── Radiant │ └── RadiantTests.swift ├── Sei │ ├── SeiAddressTests.swift │ └── SeiTransactionTests.swift ├── SmartContractMethods │ └── SmartContractMethodTests.swift ├── Solana │ ├── SolanaEd25519Slip0010Tests.swift │ ├── SolanaEd25519Tests.swift │ └── SolanaStakeKitTransactionHelperTests.swift ├── Stellar │ └── StellarTests.swift ├── Sui │ └── SUITest.swift ├── TON │ └── TONTests.swift ├── Tron │ └── TronTests.swift ├── VeChain │ └── VeChainTests.swift ├── VectorTests │ ├── AddressesValidationTests.swift │ ├── BlockchainCodingKeyTests.swift │ └── PublicKeyDerivationAddressTests.swift ├── Vectors │ ├── blockchain_vectors.json │ ├── trust_wallet_compare_vector.json │ └── valid_address_vectors.json └── XRP │ └── XRPTests.swift ├── Gemfile ├── Gemfile.lock ├── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── PolkaParachainMetadataParser ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── parse └── script.js ├── README.md └── fastlane ├── Fastfile └── README.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/neutral-build-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/.github/workflows/neutral-build-tag.yml -------------------------------------------------------------------------------- /.github/workflows/neutral-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/.github/workflows/neutral-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/.gitmodules -------------------------------------------------------------------------------- /BlockchainSdk.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.podspec -------------------------------------------------------------------------------- /BlockchainSdk.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlockchainSdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BlockchainSdk.xcodeproj/xcshareddata/xcschemes/BlockchainSdk.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.xcodeproj/xcshareddata/xcschemes/BlockchainSdk.xcscheme -------------------------------------------------------------------------------- /BlockchainSdk.xcodeproj/xcshareddata/xcschemes/BlockchainSdkExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.xcodeproj/xcshareddata/xcschemes/BlockchainSdkExample.xcscheme -------------------------------------------------------------------------------- /BlockchainSdk.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BlockchainSdk.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BlockchainSdk.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /BlockchainSdk/BlockchainSdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/BlockchainSdk.h -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/AlgorandExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/AlgorandExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/AlgorandNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/AlgorandNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/AlgorandTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/AlgorandTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/AlgorandWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/AlgorandWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/AlgorandWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/AlgorandWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/DTO/AlgorandAccountStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/DTO/AlgorandAccountStatus.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/DTO/AlgorandRequest+Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/DTO/AlgorandRequest+Transaction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/DTO/AlgorandRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/DTO/AlgorandRequest.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse+Account.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse+Account.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse+Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse+Error.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse+Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse+Transaction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/DTO/AlgorandResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/Domain/AlgorandAccountModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/Domain/AlgorandAccountModel.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/Domain/AlgorandTransactionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/Domain/AlgorandTransactionInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/Domain/AlgorandTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/Domain/AlgorandTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/Provider/AlgorandNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/Provider/AlgorandNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Algorand/Provider/AlgorandProviderTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Algorand/Provider/AlgorandProviderTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/AptosAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/AptosAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/AptosExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/AptosExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/AptosNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/AptosNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/AptosTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/AptosTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/AptosWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/AptosWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/AptosWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/AptosWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/DTO/AptosRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/DTO/AptosRequest.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/DTO/AptosResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/DTO/AptosResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/Domain/AptosAccountInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/Domain/AptosAccountInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/Domain/AptosChainId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/Domain/AptosChainId.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/Domain/AptosFeeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/Domain/AptosFeeInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/Domain/AptosFeeParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/Domain/AptosFeeParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/Domain/AptosTransactionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/Domain/AptosTransactionInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/Provider/AptosNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/Provider/AptosNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Aptos/Provider/AptosProviderTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Aptos/Provider/AptosProviderTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Binance/BinanceAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Binance/BinanceAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Binance/BinanceExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Binance/BinanceExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Binance/BinanceNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Binance/BinanceNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Binance/BinanceTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Binance/BinanceTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Binance/BinanceTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Binance/BinanceTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Binance/BinanceWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Binance/BinanceWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Binance/BinanceWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Binance/BinanceWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinBech32AddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinBech32AddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinLegacyAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinLegacyAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinScriptAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinScriptAddress.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinScriptAddressProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/Address/BitcoinScriptAddressProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/BitcoinScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/BitcoinScript.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/BitcoinScriptBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/BitcoinScriptBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/BitcoinScriptChunk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/BitcoinScriptChunk.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Crypto/OP_SHA1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Crypto/OP_SHA1.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/OP_EXAMPLE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/OP_EXAMPLE.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Push Data/OP_0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Push Data/OP_0.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Push Data/OP_N.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Push Data/OP_N.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Splice/OP_CAT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Splice/OP_CAT.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Splice/OP_SIZE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Splice/OP_SIZE.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Splice/OP_SPLIT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Splice/OP_SPLIT.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_2DROP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_2DROP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_2DUP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_2DUP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_2ROT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_2ROT.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_3DUP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_3DUP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_DROP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_DROP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_DUP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_DUP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_NIP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_NIP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_OVER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_OVER.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_PICK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_PICK.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_ROLL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_ROLL.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_ROT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_ROT.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_SWAP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_SWAP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_TUCK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OP_CODE/Stack/OP_TUCK.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OpCodeFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OpCodeFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OpCodeProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/OpCodeProtocol.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/Opcode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/Opcode.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/ScriptChunkHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinScript/ScriptChunkHelper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/BitcoinWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/BitcoinWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/Network/BitcoinNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/Network/BitcoinNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Bitcoin/Network/BitcoinNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Bitcoin/Network/BitcoinNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/BitcoinCash/BitcoinCashWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/BitcoinCash/CashAddrService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/BitcoinCash/CashAddrService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Adalite/AdaliteNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Adalite/AdaliteNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Adalite/AdaliteResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Adalite/AdaliteResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Adalite/AdaliteTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Adalite/AdaliteTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Adalite/DTOs/AdaliteBaseResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Adalite/DTOs/AdaliteBaseResponseDTO.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Adalite/DTOs/AdaliteTokenDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Adalite/DTOs/AdaliteTokenDTO.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoAddressUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoAddressUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoAssetFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoAssetFilter.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoResponseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoResponseMapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoTokenContractAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoTokenContractAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoUtil.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/CardanoWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/CardanoWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaBody.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaData.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cardano/Rosetta/RosettaTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/ChiaAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/ChiaAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/ChiaAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/ChiaAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/ChiaExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/ChiaExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/ChiaNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/ChiaNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/ChiaTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/ChiaTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/ChiaWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/ChiaWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/ChiaWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/ChiaWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Common/Chia+Int64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Common/Chia+Int64.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Common/ChiaCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Common/ChiaCondition.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Common/ChiaModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Common/ChiaModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Common/ChiaPuzzleUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Common/ChiaPuzzleUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Common/ClvmProgram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Common/ClvmProgram.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Provider/ChiaNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Provider/ChiaNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Provider/ChiaProviderRequests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Provider/ChiaProviderRequests.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Provider/ChiaProviderResponses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Provider/ChiaProviderResponses.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Chia/Provider/ChiaProviderTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Chia/Provider/ChiaProviderTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosChain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosChain.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosProtoMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosProtoMessage.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosRestProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosRestProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosStakeKitTransactionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosStakeKitTransactionHelper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/CosmosWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/CosmosWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Cosmos/OtherChains/SeiExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Cosmos/OtherChains/SeiExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dash/DashExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dash/DashExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dash/DashMainNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dash/DashMainNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dash/DashTestNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dash/DashTestNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dash/DashWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dash/DashWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Decimal/DecimalAddressConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Decimal/DecimalAddressConverter.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Decimal/DecimalAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Decimal/DecimalAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Decimal/DecimalExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Decimal/DecimalExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Decimal/DecimalPlainAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Decimal/DecimalPlainAddress.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dogecoin/DogecoinExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dogecoin/DogecoinExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dogecoin/DogecoinNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dogecoin/DogecoinNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dogecoin/DogecoinWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dogecoin/DogecoinWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Dogecoin/DogecoinWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Dogecoin/DogecoinWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/Bitcore/BitcoreProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/Bitcore/BitcoreProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/Bitcore/BitcoreResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/Bitcore/BitcoreResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/Bitcore/BitcoreTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/Bitcore/BitcoreTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/DucatusAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/DucatusAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/DucatusExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/DucatusExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/DucatusNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/DucatusNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/DucatusWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/DucatusWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ducatus/DucatusWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ducatus/DucatusWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/EnergyWebX/EnergyWebXExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/EnergyWebX/EnergyWebXExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/ABI/ABIEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/ABI/ABIEncoder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/ABI/WalletCoreABIEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/ABI/WalletCoreABIEncoder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/EthereumAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/EthereumAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/EthereumStakeKitTransactionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/EthereumStakeKitTransactionHelper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/EthereumTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/EthereumTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/EthereumWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/EthereumWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/EthereumWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/EthereumWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Interfaces/EthereumNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Interfaces/EthereumNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Models/ETHError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Models/ETHError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Models/EthereumFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Models/EthereumFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Models/EthereumModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Models/EthereumModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Models/EthereumResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Models/EthereumResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Models/EthereumTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Models/EthereumTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Network/EthereumJsonRpcProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Network/EthereumJsonRpcProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Network/EthereumNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Network/EthereumNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/Network/EthereumTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/Network/EthereumTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/SmartContract/SmartContractMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/SmartContract/SmartContractMethod.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ethereum/SmartContract/SmartContractRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ethereum/SmartContract/SmartContractRequest.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/FilecoinExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/FilecoinExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/FilecoinFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/FilecoinFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/FilecoinNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/FilecoinNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/FilecoinTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/FilecoinTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/FilecoinWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/FilecoinWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/FilecoinWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/FilecoinWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinAccountInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinAccountInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinMessage.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinSignedMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/Network/DTO/FilecoinSignedMessage.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/Network/FilecoinNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/Network/FilecoinNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Filecoin/Network/FilecoinTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Filecoin/Network/FilecoinTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaCreatedAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaCreatedAccount.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaPendingTransactionRecordMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaPendingTransactionRecordMapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaTokenContractAddressConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaTokenContractAddressConverter.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/HederaWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/HederaWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaAccountBalance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaAccountBalance.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaAccountInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaAccountInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaExchangeRate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaExchangeRate.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaTransactionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/Domain/HederaTransactionInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/HederaNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/HederaNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/HederaRESTNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/HederaRESTNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/HederaTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/HederaTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Hedera/Network/HederaTransactionIdConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Hedera/Network/HederaTransactionIdConverter.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/ICPExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/ICPExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/ICPTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/ICPTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/ICPTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/ICPTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/ICPWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/ICPWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/ICPWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/ICPWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/Network/ICPNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/Network/ICPNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/Network/ICPNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/Network/ICPNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/ICP/Network/ICPProviderTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/ICP/Network/ICPProviderTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/Address/KaspaAddressComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/Address/KaspaAddressComponents.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/Address/KaspaAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/Address/KaspaAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/KaspaAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/KaspaAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/KaspaExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/KaspaExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/KaspaFeeMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/KaspaFeeMapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/KaspaTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/KaspaTransaction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/KaspaTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/KaspaTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/KaspaWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/KaspaWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/KaspaWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/KaspaWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/Network/KaspaNetworkModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/Network/KaspaNetworkModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/Network/KaspaNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/Network/KaspaNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/Network/KaspaNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/Network/KaspaNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Kaspa/Network/KaspaTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Kaspa/Network/KaspaTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/KoinosAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/KoinosAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/KoinosAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/KoinosAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/KoinosExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/KoinosExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/KoinosNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/KoinosNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/KoinosTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/KoinosTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/KoinosWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/KoinosWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/KoinosWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/KoinosWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Models/KoinosAccountInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Models/KoinosAccountInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Models/KoinosAccountNonce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Models/KoinosAccountNonce.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Models/KoinosDTOMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Models/KoinosDTOMapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Models/KoinosResourceLimitData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Models/KoinosResourceLimitData.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Models/KoinosTransactionEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Models/KoinosTransactionEntry.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Models/KoinosTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Models/KoinosTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Models/KoinosTransferEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Models/KoinosTransferEvent.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Network/DTO/KoinosMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Network/DTO/KoinosMethod.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Network/DTO/KoinosProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Network/DTO/KoinosProtocol.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Network/KoinosNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Network/KoinosNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Network/KoinosNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Network/KoinosNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/Network/KoinosTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/Network/KoinosTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/options.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/options.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/options.proto -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/protocol.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/protocol.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/protocol.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/protocol.proto -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/token.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/token.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/token.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/token.proto -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/value.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/value.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Koinos/protobuf/value.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Koinos/protobuf/value.proto -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Litecoin/LitecoinNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Litecoin/LitecoinNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Litecoin/LitecoinNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Litecoin/LitecoinNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Litecoin/LitecoinWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Litecoin/LitecoinWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Mantle/MantleUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Mantle/MantleUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Mantle/MantleWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Mantle/MantleWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Mantle/MantleWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Mantle/MantleWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/DTO/Params/NEARNetworkParams.Finality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/DTO/Params/NEARNetworkParams.Finality.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/DTO/Params/NEARNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/DTO/Params/NEARNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/DTO/Result/NEARNetworkResult.APIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/DTO/Result/NEARNetworkResult.APIError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/DTO/Result/NEARNetworkResult.GasPrice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/DTO/Result/NEARNetworkResult.GasPrice.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/DTO/Result/NEARNetworkResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/DTO/Result/NEARNetworkResult.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/Domain/NEARAccessKeyInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/Domain/NEARAccessKeyInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/Domain/NEARAccountInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/Domain/NEARAccountInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/Domain/NEARProtocolConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/Domain/NEARProtocolConfig.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/Domain/NEARTransactionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/Domain/NEARTransactionsInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARAddressUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARAddressUtil.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARProtocolConfigCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARProtocolConfigCache.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/NEARWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/NEARWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/Network/NEARNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/Network/NEARNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/Network/NEARNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/Network/NEARNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/NEAR/Network/NEARTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/NEAR/Network/NEARTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotAddress.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotBlockchainMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotBlockchainMeta.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotJsonRpcProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotJsonRpcProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotNetwork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotNetwork.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/PolkadotWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/PolkadotWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/SubstrateRuntimeVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/SubstrateRuntimeVersion.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/SubstrateRuntimeVersionProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/SubstrateRuntimeVersionProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Polkadot/SubstrateWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Polkadot/SubstrateWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/Domain/RadiantAddressInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/Domain/RadiantAddressInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/Domain/RadiantUnspentOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/Domain/RadiantUnspentOutput.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/Network/RadiantNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/Network/RadiantNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/RadiantAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/RadiantAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/RadiantAddressUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/RadiantAddressUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/RadiantExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/RadiantExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/RadiantTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/RadiantTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/RadiantTransactionUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/RadiantTransactionUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/RadiantWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/RadiantWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Radiant/RadiantWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Radiant/RadiantWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinFee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinFee.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinRawTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinRawTransaction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinTransactionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinTransactionInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinWalletInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinWalletInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinWalletUTXO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/Models/RavencoinWalletUTXO.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/RavencoinExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/RavencoinExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/RavencoinMainNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/RavencoinMainNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/RavencoinNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/RavencoinNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/RavencoinTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/RavencoinTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/RavencoinTestNetworkParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/RavencoinTestNetworkParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/RavencoinWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/RavencoinWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Ravencoin/RavencoinWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Ravencoin/RavencoinWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Rsk/RSKExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Rsk/RSKExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Rsk/RskAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Rsk/RskAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaApiLoggerUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaApiLoggerUtil.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaDummyAccountStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaDummyAccountStorage.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaError+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaError+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaSdk+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaSdk+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaStakeKitTransactionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaStakeKitTransactionHelper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaTransactionSigner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaTransactionSigner.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Solana/SolanaWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Solana/SolanaWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarSdk+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarSdk+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Stellar/StellarWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Stellar/StellarWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/Network/SuiBalanceFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/Network/SuiBalanceFetcher.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/Network/SuiNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/Network/SuiNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/Network/SuiNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/Network/SuiNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/Network/SuiResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/Network/SuiResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/Network/SuiTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/Network/SuiTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SUIUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SUIUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiAddress.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiCoinObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiCoinObject.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiExternalLinkPrivider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiExternalLinkPrivider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Sui/SuiWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Sui/SuiWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONProvider/TONProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONProvider/TONProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONProvider/TONProviderModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONProvider/TONProviderModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONProvider/TONProviderRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONProvider/TONProviderRequest.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONProvider/TONProviderResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONProvider/TONProviderResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONProvider/TONProviderTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONProvider/TONProviderTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONWalletInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONWalletInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/TON/TONWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/TON/TONWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosAddress.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosFee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosFee.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosJsonRpcProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosJsonRpcProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosPrefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosPrefix.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tezos/TezosWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tezos/TezosWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronFeeParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronFeeParameters.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronFunction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronJsonRpcProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronJsonRpcProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronNetworkModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronNetworkModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronStakeKitTransactionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronStakeKitTransactionHelper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronTransactionDataBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronTransactionDataBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/TronWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/TronWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/Discover.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/Discover.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/Tron.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/Tron.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/TronInventoryItems.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/TronInventoryItems.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/account_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/account_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/balance_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/balance_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/common.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/common.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/exchange_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/exchange_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/market_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/market_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/proposal_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/proposal_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/shield_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/shield_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/smart_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/smart_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/storage_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/storage_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/Tron/protobuf/contract/witness_contract.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/Tron/protobuf/contract/witness_contract.pb.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/Network/Domain/VeChainAccountInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/Network/Domain/VeChainAccountInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/Network/Domain/VeChainBlockInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/Network/Domain/VeChainBlockInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/Network/VeChainNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/Network/VeChainNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/Network/VeChainNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/Network/VeChainNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/Network/VeChainTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/Network/VeChainTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/VeChainExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/VeChainExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/VeChainFeeCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/VeChainFeeCalculator.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/VeChainFeeParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/VeChainFeeParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/VeChainTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/VeChainTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/VeChainTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/VeChainTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/VeChainWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/VeChainWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/VeChain/VeChainWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/VeChain/VeChainWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XDC/XDCAddressConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XDC/XDCAddressConverter.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XDC/XDCAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XDC/XDCAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XDC/XDCExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XDC/XDCExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/LICENSE -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/README.md -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPAccount.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPAddress.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPAmount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPAmount.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPKeypair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPKeypair.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XRPWallet.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XrpData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Models/XrpData.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Network/HTTP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Network/HTTP.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Network/WebSocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Network/WebSocket.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Network/XRPLedger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Network/XRPLedger.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Utilities/Entropy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Utilities/Entropy.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Utilities/URandom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/Sources/XRPKit/Utilities/URandom.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPKit/XRPBase58.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPKit/XRPBase58.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPNetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPNetworkService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPTransactionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPTransactionBuilder.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPTransactionParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPTransactionParams.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPWalletAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPWalletAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XRPWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XRPWalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XrpNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XrpNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Blockchains/XRP/XrpResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Blockchains/XRP/XrpResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/APIKeysInfoProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/APIKeysInfoProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/APIModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/APIModels.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/APINodeInfoResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/APINodeInfoResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/APIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/APIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/DwellirAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/DwellirAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/GetBlock/GetBlockAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/GetBlock/GetBlockAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/InfuraAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/InfuraAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/NowNodes/NowNodesAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/NowNodes/NowNodesAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/OnfinalityAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/OnfinalityAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/Public/PublicAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/Public/PublicAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/APIResolvers/QuickNodeAPIResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/APIResolvers/QuickNodeAPIResolver.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/HostProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/HostProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/MultiNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/MultiNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/NetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/NetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/NetworkProviderConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/NetworkProviderConfiguration.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/API/TestnetAPINodeInfoProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/API/TestnetAPINodeInfoProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Account/AccountCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Account/AccountCreator.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Account/CreatedAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Account/CreatedAccount.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Address/Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Address/Address.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Address/AddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Address/AddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Address/AddressType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Address/AddressType.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Address/AddressTypesConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Address/AddressTypesConfig.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Address/PlainAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Address/PlainAddress.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Amount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Amount.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/AssetRequirementsCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/AssetRequirementsCondition.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/BaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/BaseManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/BlockBookProviderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/BlockBookProviderType.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Blockchain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Blockchain.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Blockchain/Blockchain+AllCases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Blockchain/Blockchain+AllCases.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/BlockchainSdkConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/BlockchainSdkConfig.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/BlockchainSdkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/BlockchainSdkError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/CommonSigner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/CommonSigner.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Constants.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Credentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Credentials.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/DTO/AnyEncodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/DTO/AnyEncodable.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/DTO/JSONRPC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/DTO/JSONRPC.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/DTO/NullValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/DTO/NullValue.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/DataStorage/BlockchainDataStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/DataStorage/BlockchainDataStorage.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Derivations/DerivationConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Derivations/DerivationConfig.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Derivations/DerivationConfigV1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Derivations/DerivationConfigV1.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Derivations/DerivationConfigV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Derivations/DerivationConfigV2.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Derivations/DerivationConfigV3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Derivations/DerivationConfigV3.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Derivations/DerivationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Derivations/DerivationStyle.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/DetailedError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/DetailedError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/ErrorCodeProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/ErrorCodeProviding.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/EthereumApiKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/EthereumApiKeys.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/ExceptionHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/ExceptionHandler.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/ExternalLinkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/ExternalLinkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/AddressServiceFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/AddressServiceFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/BlockchainSdkDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/BlockchainSdkDependencies.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/ContractAddressValidatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/ContractAddressValidatorFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/EVMSmartContractInteractorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/EVMSmartContractInteractorFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/EstimationFeeAddressFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/EstimationFeeAddressFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/ExternalLinkProviderFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/ExternalLinkProviderFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/SendTxErrorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/SendTxErrorFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/TransactionHistoryProviderFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/TransactionHistoryProviderFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/WalletFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/WalletFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Factories/WalletManagerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Factories/WalletManagerFactory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Fee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Fee.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/FeePaidCurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/FeePaidCurrency.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/FeeResourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/FeeResourceType.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/BitcoinTransactionFeeCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/BitcoinTransactionFeeCalculator.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/BlockchainNotifications/RentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/BlockchainNotifications/RentProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/StakeKitTransactionSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/StakeKitTransactionSender.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/TransactionCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/TransactionCreator.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/TransactionFeeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/TransactionFeeProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/TransactionValidator/DustRestrictable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/TransactionValidator/DustRestrictable.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/TransactionValidator/ValidationError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/TransactionValidator/ValidationError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Interfaces/WalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Interfaces/WalletManager.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/uk-UA.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/uk-UA.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/Localizations/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Localizations/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /BlockchainSdk/Common/NetworkProviderAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/NetworkProviderAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/PendingTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/PendingTransaction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/PendingTransactionRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/PendingTransactionRecord.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/PendingTransactionRecordMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/PendingTransactionRecordMapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/SS58.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/SS58.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/SignatureInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/SignatureInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/StakeKitTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/StakeKitTransaction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/TangemNetworkLoggerPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/TangemNetworkLoggerPlugin.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Token.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Transaction.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/TransactionHistory/TransactionHistory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/TransactionHistory/TransactionHistory.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/TransactionHistory/TransactionHistoryMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/TransactionHistory/TransactionHistoryMapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/TransactionHistory/TransactionHistoryPages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/TransactionHistory/TransactionHistoryPages.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/TransactionHistory/TransactionHistoryProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/TransactionHistory/TransactionHistoryProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/TransactionHistory/TransactionRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/TransactionHistory/TransactionRecord.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/TransactionSendResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/TransactionSendResult.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/UnixTimestamp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/UnixTimestamp.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Utils/EthereumUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Utils/EthereumUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Utils/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Utils/Lock.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Utils/ObjectDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Utils/ObjectDescription.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Utils/SignatureUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Utils/SignatureUtils.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Wallet+PublicKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Wallet+PublicKey.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/Wallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/Wallet.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WalletCoreAddressService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WalletCoreAddressService.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WalletCoreSigner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WalletCoreSigner.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WalletError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WalletError.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WalletManagerAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WalletManagerAssembly.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WebSocket/JSONRPCWebSocketProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WebSocket/JSONRPCWebSocketProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WebSocket/URLSessionWebSocketDelegateWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WebSocket/URLSessionWebSocketDelegateWrapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WebSocket/URLSessionWebSocketTaskWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WebSocket/URLSessionWebSocketTaskWrapper.swift -------------------------------------------------------------------------------- /BlockchainSdk/Common/WebSocket/WebSocketConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Common/WebSocket/WebSocketConnection.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/BlockBook/BlockBookTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/BlockBook/BlockBookTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/BlockBook/BlockBookUtxoProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/BlockBook/BlockBookUtxoProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/BlockBook/Config/BlockBookConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/BlockBook/Config/BlockBookConfig.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/BlockBook/Config/BlockBookNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/BlockBook/Config/BlockBookNode.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/BlockBook/DTO/BlockBookResponses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/BlockBook/DTO/BlockBookResponses.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/BlockBook/DTO/NodeRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/BlockBook/DTO/NodeRequest.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/Blockchair/BlockchairResponses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/Blockchair/BlockchairResponses.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/Blockchair/BlockchairTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/Blockchair/BlockchairTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/Blockcypher/BlockcypherResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/Blockcypher/BlockcypherResponse.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/Blockcypher/BlockcypherTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/Blockcypher/BlockcypherTarget.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/Electrum/ElectrumAddressInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/Electrum/ElectrumAddressInfo.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/Electrum/ElectrumDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/Electrum/ElectrumDTO.swift -------------------------------------------------------------------------------- /BlockchainSdk/CommonNetworkServices/Electrum/ElectrumNetworkProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/CommonNetworkServices/Electrum/ElectrumNetworkProvider.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/AnyPublisher+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/AnyPublisher+Async.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Bech32/Bech32.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Bech32/Bech32.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/BigUInt+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/BigUInt+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Bundle+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Bundle+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/CBOR+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/CBOR+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Collection+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Collection+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Data+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Data+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/DateFormatter+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/DateFormatter+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Decimal+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Decimal+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Future+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Future+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Int+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Int+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/JSONDecoder+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/JSONDecoder+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/JSONEncoder+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/JSONEncoder+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/KeyedDecodingContainer+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/KeyedDecodingContainer+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Log+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Log+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Moya+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Moya+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Moya+Combine/AnyPublisher+Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Moya+Combine/AnyPublisher+Response.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Moya+Combine/MoyaProvider+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Moya+Combine/MoyaProvider+Combine.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Moya+Combine/MoyaPublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Moya+Combine/MoyaPublisher.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Publisher+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Publisher+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/RIPEMD160+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/RIPEMD160+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Result+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Result+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Sequence+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Sequence+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/String+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/TWCoin+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/TWCoin+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/TWPublicKey+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/TWPublicKey+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/ThenProcessable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/ThenProcessable.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/URL+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/URL+.swift -------------------------------------------------------------------------------- /BlockchainSdk/Extensions/Uint64+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/Extensions/Uint64+.swift -------------------------------------------------------------------------------- /BlockchainSdk/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdk/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /BlockchainSdkExample/APIListUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/APIListUtils.swift -------------------------------------------------------------------------------- /BlockchainSdkExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /BlockchainSdkExample/Assets.xcassets/AppIcon.appiconset/Blockchain SDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/Assets.xcassets/AppIcon.appiconset/Blockchain SDK.png -------------------------------------------------------------------------------- /BlockchainSdkExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BlockchainSdkExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BlockchainSdkExample/BlockchainSdkExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/BlockchainSdkExample.entitlements -------------------------------------------------------------------------------- /BlockchainSdkExample/BlockchainSdkExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/BlockchainSdkExampleApp.swift -------------------------------------------------------------------------------- /BlockchainSdkExample/BlockchainSdkExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/BlockchainSdkExampleView.swift -------------------------------------------------------------------------------- /BlockchainSdkExample/BlockchainSdkExampleViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/BlockchainSdkExampleViewModel.swift -------------------------------------------------------------------------------- /BlockchainSdkExample/InMemoryBlockchainDataStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/InMemoryBlockchainDataStorage.swift -------------------------------------------------------------------------------- /BlockchainSdkExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/Info.plist -------------------------------------------------------------------------------- /BlockchainSdkExample/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/Launch Screen.storyboard -------------------------------------------------------------------------------- /BlockchainSdkExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BlockchainSdkExample/SimpleAccountCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkExample/SimpleAccountCreator.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Algorand/AlgorandTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Algorand/AlgorandTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Aptos/AptosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Aptos/AptosTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Bitcoin/BitcoinTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Bitcoin/BitcoinTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Cardano/CardanoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Cardano/CardanoTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Cardano/CardanoTokenContractAddressServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Cardano/CardanoTokenContractAddressServiceTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Chia/ChiaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Chia/ChiaTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/AddressServiceManagerUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/AddressServiceManagerUtility.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/AddressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/AddressTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/Bech32Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/Bech32Tests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/BlockchainSdkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/BlockchainSdkTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/CommonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/CommonTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/DecodableVectors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/DecodableVectors.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/KeysServiceManagerUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/KeysServiceManagerUtility.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/SS58Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/SS58Tests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/TestVectorsUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/TestVectorsUtility.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/TransactionSizeTesterUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/TransactionSizeTesterUtility.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Common/WalletCoreSignerTesterUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Common/WalletCoreSignerTesterUtility.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Cosmos/CosmosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Cosmos/CosmosTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Ethereum/EthereumTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Ethereum/EthereumTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Extensions/BigUInt+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Extensions/BigUInt+.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Extensions/NSError+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Extensions/NSError+.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Extensions/PrivateKeySigner+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Extensions/PrivateKeySigner+.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Extensions/TWCurve+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Extensions/TWCurve+.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Extensions/TWPublicKeyType+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Extensions/TWPublicKeyType+.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Extensions/XCTAssert+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Extensions/XCTAssert+.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Extensions/XCTestCase+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Extensions/XCTestCase+.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Filecoin/FilecoinAddressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Filecoin/FilecoinAddressTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Filecoin/FilecoinTransactionBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Filecoin/FilecoinTransactionBuilderTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Hedera/HederaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Hedera/HederaTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/ICP/ICPTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/ICP/ICPTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Info.plist -------------------------------------------------------------------------------- /BlockchainSdkTests/Kaspa/KaspaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Kaspa/KaspaTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Koinos/KoinosAddressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Koinos/KoinosAddressTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Koinos/KoinosMethodResponseDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Koinos/KoinosMethodResponseDecodingTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Koinos/KoinosTransactionBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Koinos/KoinosTransactionBuilderTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Koinos/KoinosWalletManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Koinos/KoinosWalletManagerTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Litecoin/LitecoinTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Litecoin/LitecoinTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Mantle/MantleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Mantle/MantleTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/NEAR/NEARTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/NEAR/NEARTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Polkadot/PolkadotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Polkadot/PolkadotTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Radiant/RadiantTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Radiant/RadiantTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Sei/SeiAddressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Sei/SeiAddressTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Sei/SeiTransactionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Sei/SeiTransactionTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/SmartContractMethods/SmartContractMethodTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/SmartContractMethods/SmartContractMethodTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Solana/SolanaEd25519Slip0010Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Solana/SolanaEd25519Slip0010Tests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Solana/SolanaEd25519Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Solana/SolanaEd25519Tests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Solana/SolanaStakeKitTransactionHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Solana/SolanaStakeKitTransactionHelperTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Stellar/StellarTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Stellar/StellarTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Sui/SUITest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Sui/SUITest.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/TON/TONTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/TON/TONTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Tron/TronTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Tron/TronTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/VeChain/VeChainTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/VeChain/VeChainTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/VectorTests/AddressesValidationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/VectorTests/AddressesValidationTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/VectorTests/BlockchainCodingKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/VectorTests/BlockchainCodingKeyTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/VectorTests/PublicKeyDerivationAddressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/VectorTests/PublicKeyDerivationAddressTests.swift -------------------------------------------------------------------------------- /BlockchainSdkTests/Vectors/blockchain_vectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Vectors/blockchain_vectors.json -------------------------------------------------------------------------------- /BlockchainSdkTests/Vectors/trust_wallet_compare_vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Vectors/trust_wallet_compare_vector.json -------------------------------------------------------------------------------- /BlockchainSdkTests/Vectors/valid_address_vectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/Vectors/valid_address_vectors.json -------------------------------------------------------------------------------- /BlockchainSdkTests/XRP/XRPTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/BlockchainSdkTests/XRP/XRPTests.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/Podfile.lock -------------------------------------------------------------------------------- /PolkaParachainMetadataParser/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /PolkaParachainMetadataParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/PolkaParachainMetadataParser/README.md -------------------------------------------------------------------------------- /PolkaParachainMetadataParser/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/PolkaParachainMetadataParser/package-lock.json -------------------------------------------------------------------------------- /PolkaParachainMetadataParser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/PolkaParachainMetadataParser/package.json -------------------------------------------------------------------------------- /PolkaParachainMetadataParser/parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/PolkaParachainMetadataParser/parse -------------------------------------------------------------------------------- /PolkaParachainMetadataParser/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/PolkaParachainMetadataParser/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/README.md -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangem/blockchain-sdk-swift/HEAD/fastlane/README.md --------------------------------------------------------------------------------