├── .clang-format ├── .clang-tidy ├── .codacy.yaml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── new_blockchain.md ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── workflows │ ├── android-ci.yml │ ├── android-release.yml │ ├── docker.yml │ ├── ios-ci.yml │ ├── ios-release.yml │ ├── linux-ci.yml │ ├── ts-ci.yml │ └── ts-release.yml ├── .gitignore ├── .gitmodules ├── .hadolint.yaml ├── .swiftlint.yml ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── TrustWalletCore.podspec ├── android ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── trustwallet │ │ │ └── core │ │ │ └── app │ │ │ ├── blockchains │ │ │ ├── CoinAddressDerivationTests.kt │ │ │ ├── TestCoinType.kt │ │ │ ├── TestHDWallet.kt │ │ │ ├── aeternity │ │ │ │ ├── TestAeternityAddress.kt │ │ │ │ └── TestAeternitySigner.kt │ │ │ ├── algorand │ │ │ │ ├── TestAlgorandAddress.kt │ │ │ │ └── TestAlgorandSigner.kt │ │ │ ├── bandchain │ │ │ │ ├── TestBandChainAddress.kt │ │ │ │ └── TestBandChainSigner.kt │ │ │ ├── binance │ │ │ │ └── TestBinanceTransactionSigning.kt │ │ │ ├── bitcoin │ │ │ │ ├── TestBitcoinScript.kt │ │ │ │ └── TestBitcoinSigning.kt │ │ │ ├── cardano │ │ │ │ └── TestCardanoAddress.kt │ │ │ ├── cosmos │ │ │ │ └── TestCosmosTransactions.kt │ │ │ ├── elrond │ │ │ │ ├── TestElrondAddress.kt │ │ │ │ └── TestElrondSigner.kt │ │ │ ├── eos │ │ │ │ └── TestEOSSigning.kt │ │ │ ├── ethereum │ │ │ │ ├── TestEthereumAbi.kt │ │ │ │ ├── TestEthereumAbiValue.kt │ │ │ │ ├── TestEthereumAddress.kt │ │ │ │ └── TestEthereumTransactionSigner.kt │ │ │ ├── fio │ │ │ │ ├── TestFIOAddress.kt │ │ │ │ └── TestFIOSigner.kt │ │ │ ├── harmony │ │ │ │ ├── TestHarmonyAddress.kt │ │ │ │ ├── TestHarmonyStakingDelegateSigner.kt │ │ │ │ └── TestHarmonyTransactionSigner.kt │ │ │ ├── iotex │ │ │ │ └── TestIotexSigning.kt │ │ │ ├── kava │ │ │ │ └── TestKavaTransactions.kt │ │ │ ├── kusama │ │ │ │ ├── TestKusamaAddress.kt │ │ │ │ └── TestKusamaSigner.kt │ │ │ ├── nano │ │ │ │ ├── TestNanoAddress.kt │ │ │ │ └── TestNanoSigner.kt │ │ │ ├── near │ │ │ │ ├── TestNEARAddress.kt │ │ │ │ └── TestNEARSigner.kt │ │ │ ├── nebulas │ │ │ │ ├── TestNebulasAddress.kt │ │ │ │ └── TestNebulasSigner.kt │ │ │ ├── neo │ │ │ │ ├── TestsNEOAddress.kt │ │ │ │ └── TestsNEOSigner.kt │ │ │ ├── nuls │ │ │ │ ├── TestNULSAddress.kt │ │ │ │ └── TestNULSSigner.kt │ │ │ ├── ontology │ │ │ │ └── TestOntologySigning.kt │ │ │ ├── polkadot │ │ │ │ ├── TestPolkadotAddress.kt │ │ │ │ └── TestPolkadotSigner.kt │ │ │ ├── ripple │ │ │ │ └── TestRippleTransactionSigner.kt │ │ │ ├── smartchain │ │ │ │ └── TestBinanceSmartChainAddress.kt │ │ │ ├── solana │ │ │ │ ├── TestSolanaAddress.kt │ │ │ │ └── TestSolanaSigner.kt │ │ │ ├── stellar │ │ │ │ ├── TestStellarAddress.kt │ │ │ │ └── TestStellarSigner.kt │ │ │ ├── terra │ │ │ │ └── TestTerraTransactions.kt │ │ │ ├── tezos │ │ │ │ └── TestTezosSigner.kt │ │ │ ├── ton │ │ │ │ └── TestTONAddress.kt │ │ │ ├── tron │ │ │ │ └── TestTronTransactionSigner.kt │ │ │ └── waves │ │ │ │ ├── TestWavesAddress.kt │ │ │ │ └── TestWavesSigner.kt │ │ │ └── utils │ │ │ ├── TestBitcoinScript.kt │ │ │ ├── TestHash.kt │ │ │ ├── TestKeyStore.kt │ │ │ ├── TestPrivateKey.kt │ │ │ └── TestSegwitAddress.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── trustwallet │ │ │ └── core │ │ │ └── app │ │ │ ├── MainActivity.kt │ │ │ └── utils │ │ │ ├── Extensions.kt │ │ │ └── Numeric.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── trustwalletcore │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── maven-push.gradle │ └── src │ └── main │ └── AndroidManifest.xml ├── bootstrap.sh ├── cmake ├── Protobuf.cmake └── ios.toolchain.cmake ├── codegen ├── .gitignore ├── .rubocop.yml ├── Rakefile ├── bin │ ├── codegen │ ├── coins │ ├── cointests │ └── newcoin ├── lib │ ├── code_generator.rb │ ├── coin_test_gen.rb │ ├── entity_decl.rb │ ├── enum_decl.rb │ ├── function_decl.rb │ ├── java_helper.rb │ ├── jni_helper.rb │ ├── parser.rb │ ├── swift_helper.rb │ ├── templates │ │ ├── CoinInfoData.cpp.erb │ │ ├── TWCoinTypeTests.cpp.erb │ │ ├── coins.md.erb │ │ ├── hrp.cpp.erb │ │ ├── hrp.h.erb │ │ ├── java.erb │ │ ├── java │ │ │ ├── class.erb │ │ │ ├── enum.erb │ │ │ ├── header.erb │ │ │ └── struct.erb │ │ ├── jni │ │ │ ├── class_access.erb │ │ │ ├── compare_to.erb │ │ │ ├── enum_access.erb │ │ │ ├── header.erb │ │ │ ├── instance_access.erb │ │ │ ├── instance_release.erb │ │ │ ├── method.erb │ │ │ ├── method_call.erb │ │ │ ├── method_forward.erb │ │ │ ├── method_prototype.erb │ │ │ ├── parameter_access.erb │ │ │ ├── parameter_release.erb │ │ │ ├── proto_access.erb │ │ │ └── struct_access.erb │ │ ├── jni_c.erb │ │ ├── jni_h.erb │ │ ├── newcoin │ │ │ ├── Address.cpp.erb │ │ │ ├── Address.h.erb │ │ │ ├── AddressTests.cpp.erb │ │ │ ├── AddressTests.kt.erb │ │ │ ├── Entry.cpp.erb │ │ │ ├── Entry.h.erb │ │ │ ├── Proto.erb │ │ │ ├── Signer.cpp.erb │ │ │ ├── Signer.h.erb │ │ │ ├── SignerTests.cpp.erb │ │ │ ├── SignerTests.kt.erb │ │ │ ├── TWAddressTests.cpp.erb │ │ │ ├── TWSignerTests.cpp.erb │ │ │ └── Tests.swift.erb │ │ ├── swift.erb │ │ └── swift │ │ │ ├── TrustWalletCore.h.erb │ │ │ ├── class.erb │ │ │ ├── class_properties.erb │ │ │ ├── enum.erb │ │ │ ├── enum_extension.erb │ │ │ ├── header.erb │ │ │ ├── method.erb │ │ │ ├── method_call.erb │ │ │ ├── method_forward.erb │ │ │ ├── parameter_access.erb │ │ │ ├── static_method.erb │ │ │ ├── struct.erb │ │ │ └── struct_properties.erb │ └── type_decl.rb └── test │ ├── test_java_helper.rb │ ├── test_jni_helper.rb │ ├── test_parser.rb │ └── test_swift_helper.rb ├── coins.json ├── docs ├── README.md ├── banner.png ├── coins.md ├── logo.png ├── wallet-core.drawio └── wallet-core.png ├── include └── TrustWalletCore │ ├── TWAES.h │ ├── TWAESPaddingMode.h │ ├── TWAccount.h │ ├── TWAnyAddress.h │ ├── TWAnySigner.h │ ├── TWBase.h │ ├── TWBase58.h │ ├── TWBitcoinAddress.h │ ├── TWBitcoinScript.h │ ├── TWBitcoinSigHashType.h │ ├── TWBlockchain.h │ ├── TWCoinType.h │ ├── TWCoinTypeConfiguration.h │ ├── TWCurve.h │ ├── TWData.h │ ├── TWEthereumAbi.h │ ├── TWEthereumAbiFunction.h │ ├── TWEthereumAbiValue.h │ ├── TWEthereumChainID.h │ ├── TWFIOAccount.h │ ├── TWGroestlcoinAddress.h │ ├── TWHDVersion.h │ ├── TWHDWallet.h │ ├── TWHash.h │ ├── TWNEARAccount.h │ ├── TWPrivateKey.h │ ├── TWPublicKey.h │ ├── TWPublicKeyType.h │ ├── TWPurpose.h │ ├── TWRippleXAddress.h │ ├── TWSS58AddressType.h │ ├── TWSegwitAddress.h │ ├── TWStellarMemoType.h │ ├── TWStellarPassphrase.h │ ├── TWStellarVersionByte.h │ ├── TWStoredKey.h │ └── TWString.h ├── jni ├── cpp │ ├── AnySigner.c │ ├── AnySigner.h │ ├── Random.cpp │ ├── TWJNI.h │ ├── TWJNIData.cpp │ ├── TWJNIData.h │ ├── TWJNIString.cpp │ └── TWJNIString.h └── java │ └── wallet │ └── core │ └── java │ └── AnySigner.java ├── protobuf-plugin ├── CMakeLists.txt ├── README.md ├── c_typedef.cc └── swift_typealias.cc ├── samples ├── android │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── trust │ │ │ │ └── walletcore │ │ │ │ └── example │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── trust │ │ │ │ │ └── walletcore │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── trust │ │ │ └── walletcore │ │ │ └── example │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── cpp │ ├── CMakeLists.txt │ ├── README.md │ └── sample.cpp ├── go │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── protos │ │ └── bitcoin │ │ │ └── Bitcoin.pb.go │ └── types │ │ ├── twdata.go │ │ └── twstring.go └── osx │ ├── README.md │ └── cocoapods │ ├── Podfile │ ├── Podfile.lock │ ├── WalletCoreExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── hewig.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── WalletCoreExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── hewig.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── WalletCoreExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── WalletCoreExample.entitlements ├── sonar-project.properties ├── src ├── Aeternity │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Identifiers.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Aion │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── RLP.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Algorand │ ├── Address.cpp │ ├── Address.h │ ├── BinaryCoding.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Base32.h ├── Base58.cpp ├── Base58.h ├── Base58Address.h ├── Base64.cpp ├── Base64.h ├── Bech32.cpp ├── Bech32.h ├── Bech32Address.cpp ├── Bech32Address.h ├── Binance │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Serialization.cpp │ ├── Serialization.h │ ├── Signer.cpp │ └── Signer.h ├── BinaryCoding.cpp ├── BinaryCoding.h ├── Bitcoin │ ├── Address.cpp │ ├── Address.h │ ├── Amount.h │ ├── CashAddress.cpp │ ├── CashAddress.h │ ├── Entry.cpp │ ├── Entry.h │ ├── FeeCalculator.cpp │ ├── FeeCalculator.h │ ├── OpCodes.h │ ├── OutPoint.cpp │ ├── OutPoint.h │ ├── Script.cpp │ ├── Script.h │ ├── SegwitAddress.cpp │ ├── SegwitAddress.h │ ├── SigHashType.h │ ├── SignatureVersion.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ ├── Transaction.h │ ├── TransactionBuilder.cpp │ ├── TransactionBuilder.h │ ├── TransactionInput.cpp │ ├── TransactionInput.h │ ├── TransactionOutput.cpp │ ├── TransactionOutput.h │ ├── TransactionPlan.h │ ├── TransactionSigner.cpp │ ├── TransactionSigner.h │ ├── UnspentSelector.cpp │ └── UnspentSelector.h ├── Cardano │ ├── AddressV2.cpp │ ├── AddressV2.h │ ├── AddressV3.cpp │ ├── AddressV3.h │ ├── Entry.cpp │ └── Entry.h ├── Cbor.cpp ├── Cbor.h ├── Coin.cpp ├── Coin.h ├── CoinEntry.h ├── Cosmos │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Serialization.cpp │ ├── Serialization.h │ ├── Signer.cpp │ └── Signer.h ├── Crc.cpp ├── Crc.h ├── Data.cpp ├── Data.h ├── Decred │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── OutPoint.cpp │ ├── OutPoint.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ ├── Transaction.h │ ├── TransactionBuilder.h │ ├── TransactionInput.cpp │ ├── TransactionInput.h │ ├── TransactionOutput.cpp │ └── TransactionOutput.h ├── DerivationPath.cpp ├── DerivationPath.h ├── EOS │ ├── Action.cpp │ ├── Action.h │ ├── Address.cpp │ ├── Address.h │ ├── Asset.cpp │ ├── Asset.h │ ├── Entry.cpp │ ├── Entry.h │ ├── KeyType.h │ ├── Name.cpp │ ├── Name.h │ ├── PackedTransaction.cpp │ ├── PackedTransaction.h │ ├── Prefixes.h │ ├── Serialization.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Elrond │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Serialization.cpp │ ├── Serialization.h │ ├── Signer.cpp │ └── Signer.h ├── Encrypt.cpp ├── Encrypt.h ├── Ethereum │ ├── ABI.h │ ├── ABI │ │ ├── Array.cpp │ │ ├── Array.h │ │ ├── Bytes.cpp │ │ ├── Bytes.h │ │ ├── Function.cpp │ │ ├── Function.h │ │ ├── ParamAddress.h │ │ ├── ParamBase.h │ │ ├── ParamFactory.cpp │ │ ├── ParamFactory.h │ │ ├── ParamNumber.cpp │ │ ├── ParamNumber.h │ │ ├── Parameters.cpp │ │ ├── Parameters.h │ │ ├── ValueDecoder.cpp │ │ ├── ValueDecoder.h │ │ ├── ValueEncoder.cpp │ │ └── ValueEncoder.h │ ├── Address.cpp │ ├── Address.h │ ├── AddressChecksum.cpp │ ├── AddressChecksum.h │ ├── ContractCall.cpp │ ├── ContractCall.h │ ├── Entry.cpp │ ├── Entry.h │ ├── RLP.cpp │ ├── RLP.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── FIO │ ├── Action.cpp │ ├── Action.h │ ├── Actor.cpp │ ├── Actor.h │ ├── Address.cpp │ ├── Address.h │ ├── Encryption.cpp │ ├── Encryption.h │ ├── Entry.cpp │ ├── Entry.h │ ├── NewFundsRequest.cpp │ ├── NewFundsRequest.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ ├── Transaction.h │ ├── TransactionBuilder.cpp │ └── TransactionBuilder.h ├── Filecoin │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Groestlcoin │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ └── Transaction.h ├── HDWallet.cpp ├── HDWallet.h ├── Harmony │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Staking.cpp │ ├── Staking.h │ ├── Transaction.cpp │ └── Transaction.h ├── Hash.cpp ├── Hash.h ├── HexCoding.h ├── Icon │ ├── Address.cpp │ ├── Address.h │ ├── AddressType.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ └── Signer.h ├── IoTeX │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Protobuf │ │ ├── action.pb.cc │ │ └── action.pb.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Staking.cpp │ └── Staking.h ├── Keystore │ ├── AESParameters.cpp │ ├── AESParameters.h │ ├── Account.cpp │ ├── Account.h │ ├── EncryptionParameters.cpp │ ├── EncryptionParameters.h │ ├── PBKDF2Parameters.cpp │ ├── PBKDF2Parameters.h │ ├── ScryptParameters.cpp │ ├── ScryptParameters.h │ ├── StoredKey.cpp │ └── StoredKey.h ├── Kusama │ ├── Address.h │ ├── Entry.cpp │ └── Entry.h ├── NEAR │ ├── Account.cpp │ ├── Account.h │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Serialization.cpp │ ├── Serialization.h │ ├── Signer.cpp │ └── Signer.h ├── NEO │ ├── Address.cpp │ ├── Address.h │ ├── CoinReference.h │ ├── Entry.cpp │ ├── Entry.h │ ├── ISerializable.h │ ├── MinerTransaction.h │ ├── OpCode.h │ ├── ReadData.cpp │ ├── ReadData.h │ ├── Script.cpp │ ├── Script.h │ ├── Serializable.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ ├── Transaction.h │ ├── TransactionAttribute.h │ ├── TransactionAttributeUsage.h │ ├── TransactionOutput.h │ ├── TransactionType.h │ └── Witness.h ├── NULS │ ├── Address.cpp │ ├── Address.h │ ├── BinaryCoding.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ └── Signer.h ├── Nano │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ └── Signer.h ├── Nebulas │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Nimiq │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Ontology │ ├── Address.cpp │ ├── Address.h │ ├── Asset.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Ong.cpp │ ├── Ong.h │ ├── OngTxBuilder.cpp │ ├── OngTxBuilder.h │ ├── Ont.cpp │ ├── Ont.h │ ├── OntTxBuilder.cpp │ ├── OntTxBuilder.h │ ├── OpCode.h │ ├── ParamsBuilder.cpp │ ├── ParamsBuilder.h │ ├── SigData.cpp │ ├── SigData.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Polkadot │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Extrinsic.cpp │ ├── Extrinsic.h │ ├── ScaleCodec.h │ ├── Signer.cpp │ └── Signer.h ├── PrivateKey.cpp ├── PrivateKey.h ├── PublicKey.cpp ├── PublicKey.h ├── Result.h ├── Ripple │ ├── Address.cpp │ ├── Address.h │ ├── BinaryCoding.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ ├── Transaction.h │ ├── XAddress.cpp │ └── XAddress.h ├── SS58Address.h ├── Solana │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Stellar │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ └── Signer.h ├── TON │ ├── Address.cpp │ ├── Address.h │ ├── Cell.cpp │ ├── Cell.h │ ├── Contract.cpp │ ├── Contract.h │ ├── Entry.cpp │ ├── Entry.h │ ├── README.md │ ├── Signer.cpp │ └── Signer.h ├── Tezos │ ├── Address.cpp │ ├── Address.h │ ├── BinaryCoding.cpp │ ├── BinaryCoding.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Forging.cpp │ ├── Forging.h │ ├── OperationList.cpp │ ├── OperationList.h │ ├── Signer.cpp │ └── Signer.h ├── Theta │ ├── Coins.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Tron │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Protobuf │ │ ├── .gitignore │ │ └── TronInternal.proto │ ├── Serialization.cpp │ ├── Serialization.h │ ├── Signer.cpp │ └── Signer.h ├── VeChain │ ├── Clause.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── Wanchain │ ├── Address.cpp │ ├── Address.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ └── Signer.h ├── Waves │ ├── Address.cpp │ ├── Address.h │ ├── BinaryCoding.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Transaction.cpp │ └── Transaction.h ├── XXHash64.h ├── Zcash │ ├── Entry.cpp │ ├── Entry.h │ ├── Signer.cpp │ ├── Signer.h │ ├── TAddress.cpp │ ├── TAddress.h │ ├── Transaction.cpp │ ├── Transaction.h │ └── TransactionBuilder.h ├── Zilliqa │ ├── Address.cpp │ ├── Address.h │ ├── AddressChecksum.cpp │ ├── AddressChecksum.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Protobuf │ │ ├── .gitignore │ │ └── ZilliqaMessage.proto │ ├── Signer.cpp │ └── Signer.h ├── interface │ ├── TWAES.cpp │ ├── TWAccount.cpp │ ├── TWAnyAddress.cpp │ ├── TWAnySigner.cpp │ ├── TWBase58.cpp │ ├── TWBitcoin.cpp │ ├── TWBitcoinAddress.cpp │ ├── TWBitcoinScript.cpp │ ├── TWCoinType.cpp │ ├── TWData.cpp │ ├── TWEthereumAbi.cpp │ ├── TWEthereumAbiFunction.cpp │ ├── TWEthereumAbiValue.cpp │ ├── TWFIOAccount.cpp │ ├── TWGroestlcoinAddress.cpp │ ├── TWHDVersion.cpp │ ├── TWHDWallet.cpp │ ├── TWHash.cpp │ ├── TWNEARAccount.cpp │ ├── TWPrivateKey.cpp │ ├── TWPublicKey.cpp │ ├── TWRippleXAddress.cpp │ ├── TWSegwitAddress.cpp │ ├── TWStoredKey.cpp │ ├── TWString+Hex.cpp │ └── TWString.cpp ├── proto │ ├── .gitignore │ ├── Aeternity.proto │ ├── Aion.proto │ ├── Algorand.proto │ ├── Binance.proto │ ├── Bitcoin.proto │ ├── Cosmos.proto │ ├── Decred.proto │ ├── EOS.proto │ ├── Elrond.proto │ ├── Ethereum.proto │ ├── FIO.proto │ ├── Filecoin.proto │ ├── Harmony.proto │ ├── Icon.proto │ ├── IoTeX.proto │ ├── NEAR.proto │ ├── NEO.proto │ ├── NULS.proto │ ├── Nano.proto │ ├── Nebulas.proto │ ├── Nimiq.proto │ ├── Ontology.proto │ ├── Polkadot.proto │ ├── Ripple.proto │ ├── Solana.proto │ ├── Stellar.proto │ ├── Tezos.proto │ ├── Theta.proto │ ├── Tron.proto │ ├── VeChain.proto │ ├── Waves.proto │ └── Zilliqa.proto └── uint256.h ├── swift ├── .gitignore ├── Info.plist ├── Playground.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Podfile ├── Podfile.lock ├── Podfile.patch ├── Sources │ ├── AnySigner.swift │ ├── DerivationPath.Index.swift │ ├── DerivationPath.swift │ ├── Dummy.cpp │ ├── Extensions │ │ ├── AddressProtocol.swift │ │ ├── BitcoinAddress+Extension.swift │ │ ├── CoinType+Address.swift │ │ ├── Data+Hex.swift │ │ ├── Data.swift │ │ └── PublicKey+Bitcoin.swift │ ├── KeyStore.Error.swift │ ├── KeyStore.swift │ ├── SecRandom.m │ ├── TWFoundationData.h │ ├── TWFoundationData.m │ ├── TWFoundationString.h │ ├── TWFoundationString.m │ ├── Wallet.swift │ └── Watch.swift ├── Tests │ ├── AESTests.swift │ ├── Addresses │ │ ├── BitcoinAddressTests.swift │ │ ├── NEOAddressTests.swift │ │ ├── OntologyAddressTests.swift │ │ └── TronAddressTests.swift │ ├── Blockchains │ │ ├── AeternityTests.swift │ │ ├── AionTests.swift │ │ ├── AlgorandTests.swift │ │ ├── BandChainTests.swift │ │ ├── BinanceChainTests.swift │ │ ├── BinanceSmartChainTests.swift │ │ ├── BitcoinTests.swift │ │ ├── BitconCashTests.swift │ │ ├── CardanoTests.swift │ │ ├── CosmosTests.swift │ │ ├── DashTests.swift │ │ ├── Data │ │ ├── DecredTests.swift │ │ ├── DogeTests.swift │ │ ├── EOSTests.swift │ │ ├── ElrondTests.swift │ │ ├── EthereumAbiTests.swift │ │ ├── EthereumTests.swift │ │ ├── FIOTests.swift │ │ ├── FilecoinTests.swift │ │ ├── GroestlcoinTests.swift │ │ ├── GroestlcoinTransactionSignerTests.swift │ │ ├── HarmonyTests.swift │ │ ├── IconTests.swift │ │ ├── IoTeXTests.swift │ │ ├── KavaTests.swift │ │ ├── KinTests.swift │ │ ├── KusamaTests.swift │ │ ├── LitecoinTests.swift │ │ ├── MonacoinTests.swift │ │ ├── NEARTests.swift │ │ ├── NEOTests.swift │ │ ├── NULSTests.swift │ │ ├── NanoTests.swift │ │ ├── NebulasTests.swift │ │ ├── NimiqTests.swift │ │ ├── OntologyTests.swift │ │ ├── PolkadotTests.swift │ │ ├── QtumTests.swift │ │ ├── RippleTests.swift │ │ ├── SolanaTests.swift │ │ ├── StellarTests.swift │ │ ├── TONTests.swift │ │ ├── TerraTests.swift │ │ ├── TezosTests.swift │ │ ├── ThetaTests.swift │ │ ├── TronTests.swift │ │ ├── WanchainTests.swift │ │ ├── WavesTests.swift │ │ ├── ZcashTests.swift │ │ ├── ZcoinTests.swift │ │ └── ZilliqaTests.swift │ ├── CoinAddressDerivationTests.swift │ ├── CoinTypeTests.swift │ ├── DataTests.swift │ ├── DerivationPathTests.swift │ ├── HDWalletTests.swift │ ├── HashTests.swift │ ├── Info.plist │ ├── Keystore │ │ ├── AccountTests.swift │ │ ├── Data │ │ │ ├── bnb_wallet.json │ │ │ ├── btc_missing_address.json │ │ │ ├── key.json │ │ │ ├── key_bitcoin.json │ │ │ ├── myetherwallet.uu │ │ │ ├── wallet.json │ │ │ └── watches.json │ │ ├── KeyStoreTests.swift │ │ ├── KeystoreKeyTests.swift │ │ └── WalletTests.swift │ ├── PrivateKeyTests.swift │ ├── PublicKeyTests.swift │ └── XCTAssert+Extension.swift ├── cpp.xcconfig.in ├── include ├── project.yml ├── project.yml.patch ├── protobuf ├── trezor-crypto └── wallet-core ├── tests ├── Aeternity │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAeternityAddressTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── Aion │ ├── AddressTests.cpp │ ├── RLPTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── Algorand │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── BandChain │ └── TWCoinTypeTests.cpp ├── Base64Tests.cpp ├── BaseEncoding.cpp ├── Bech32AddressTests.cpp ├── Binance │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── BinanceSmartChain │ ├── SignerTests.cpp │ ├── TWAnyAddressTests.cpp │ └── TWCoinTypeTests.cpp ├── BinaryCodingTests.cpp ├── Bitcoin │ ├── BitcoinScriptTests.cpp │ ├── FeeCalculatorTests.cpp │ ├── SegwitAddressTests.cpp │ ├── TWBitcoinAddressTests.cpp │ ├── TWBitcoinScriptTests.cpp │ ├── TWBitcoinSigningTests.cpp │ ├── TWBitcoinTransactionTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWSegwitAddressTests.cpp │ ├── TransactionPlanTests.cpp │ ├── TxComparisonHelper.cpp │ ├── TxComparisonHelper.h │ └── UnspentSelectorTests.cpp ├── BitcoinCash │ ├── TWBitcoinCashTests.cpp │ └── TWCoinTypeTests.cpp ├── BitcoinGold │ ├── TWAddressTests.cpp │ ├── TWBitcoinGoldTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWSegwitAddressTests.cpp │ └── TWSignerTests.cpp ├── CMakeLists.txt ├── Callisto │ └── TWCoinTypeTests.cpp ├── Cardano │ ├── AddressTests.cpp │ ├── TWCardanoAddressTests.cpp │ └── TWCoinTypeTests.cpp ├── CborTests.cpp ├── CoinAddressDerivationTests.cpp ├── CoinAddressValidationTests.cpp ├── Cosmos │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── StakingTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── Dash │ ├── TWCoinTypeTests.cpp │ └── TWDashTests.cpp ├── Decred │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TWDecredTests.cpp ├── DerivationPathTests.cpp ├── DigiByte │ ├── TWCoinTypeTests.cpp │ └── TWDigiByteTests.cpp ├── Dogecoin │ ├── TWCoinTypeTests.cpp │ └── TWDogeTests.cpp ├── EOS │ ├── AddressTests.cpp │ ├── AssetTests.cpp │ ├── NameTests.cpp │ ├── SignatureTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── Elrond │ ├── AddressTests.cpp │ ├── SerializationTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TestAccounts.h ├── EncryptTests.cpp ├── Ethereum │ ├── AbiTests.cpp │ ├── AddressTests.cpp │ ├── ContractCallTests.cpp │ ├── Data │ │ ├── custom.json │ │ ├── ens.json │ │ ├── erc20.json │ │ ├── erc721.json │ │ ├── getAmountsOut.json │ │ ├── kyber_proxy.json │ │ └── uniswap_router_v2.json │ ├── RLPTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWEthereumAbiTests.cpp │ ├── TWEthereumAbiValueDecoderTests.cpp │ ├── TWEthereumAbiValueEncodeTests.cpp │ ├── ValueDecoderTests.cpp │ └── ValueEncoderTests.cpp ├── EthereumClassic │ └── TWCoinTypeTests.cpp ├── FIO │ ├── AddressTests.cpp │ ├── EncryptionTests.cpp │ ├── SignerTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWFIOAccountTests.cpp │ ├── TWFIOTests.cpp │ └── TransactionBuilderTests.cpp ├── Filecoin │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── GoChain │ └── TWCoinTypeTests.cpp ├── Groestlcoin │ ├── AddressTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWGroestlcoinSigningTests.cpp │ └── TWGroestlcoinTests.cpp ├── HDWalletTests.cpp ├── Harmony │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── StakingTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TWHarmonyStakingTests.cpp ├── HashTests.cpp ├── HexCodingTests.cpp ├── ICON │ └── TWCoinTypeTests.cpp ├── Icon │ ├── AddressTests.cpp │ └── TWAnySignerTests.cpp ├── IoTeX │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── StakingTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── Kava │ └── TWCoinTypeTests.cpp ├── Keystore │ ├── Data │ │ ├── empty-accounts.json │ │ ├── ethereum-wallet-address-no-0x.json │ │ ├── key.json │ │ ├── key_bitcoin.json │ │ ├── legacy-mnemonic.json │ │ ├── legacy-private-key.json │ │ ├── livepeer.json │ │ ├── missing-address.json │ │ ├── myetherwallet.uu │ │ ├── pbkdf2.json │ │ ├── wallet.json │ │ ├── watch.json │ │ └── web3j.json │ └── StoredKeyTests.cpp ├── Kin │ └── TWCoinTypeTests.cpp ├── Kusama │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── Litecoin │ ├── TWCoinTypeTests.cpp │ └── TWLitecoinTests.cpp ├── Monacoin │ ├── TWCoinTypeTests.cpp │ ├── TWMonacoinAddressTests.cpp │ └── TWMonacoinTransactionTests.cpp ├── NEAR │ ├── AccountTests.cpp │ ├── AddressTests.cpp │ ├── SerializationTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TWNEARAccountTests.cpp ├── NEO │ ├── AddressTests.cpp │ ├── CoinReferenceTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWNEOAddressTests.cpp │ ├── TransactionAttributeTests.cpp │ ├── TransactionOutputTests.cpp │ ├── TransactionTests.cpp │ └── WitnessTests.cpp ├── NULS │ ├── AddressTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── Nano │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TWNanoAddressTests.cpp ├── Nebulas │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWNebulasAddressTests.cpp │ └── TransactionTests.cpp ├── Nimiq │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── Ontology │ ├── AccountTests.cpp │ ├── AddressTests.cpp │ ├── OngTests.cpp │ ├── OntTests.cpp │ ├── ParamsBuilderTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── POANetwork │ └── TWCoinTypeTests.cpp ├── Polkadot │ ├── AddressTests.cpp │ ├── ScaleCodecTests.cpp │ ├── SignerTests.cpp │ └── TWCoinTypeTests.cpp ├── PrivateKeyTests.cpp ├── PublicKeyTests.cpp ├── Qtum │ ├── TWCoinTypeTests.cpp │ └── TWQtumAddressTests.cpp ├── Ravencoin │ ├── TWCoinTypeTests.cpp │ └── TWRavencoinTransactionTests.cpp ├── Ripple │ ├── AddressTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWRippleAddressTests.cpp │ └── TransactionTests.cpp ├── Solana │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWSolanaAddressTests.cpp │ └── TransactionTests.cpp ├── Stellar │ ├── AddressTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWStellarAddressTests.cpp │ └── TransactionTests.cpp ├── TON │ ├── AddressTests.cpp │ ├── CellTests.cpp │ ├── SignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TWTONAddressTests.cpp ├── Terra │ └── TWCoinTypeTests.cpp ├── Tezos │ ├── AddressTests.cpp │ ├── ForgingTests.cpp │ ├── OperationListTests.cpp │ ├── PublicKeyTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── Theta │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── ThunderToken │ └── TWCoinTypeTests.cpp ├── TomoChain │ └── TWCoinTypeTests.cpp ├── Tron │ ├── AddressTests.cpp │ ├── SerializationTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── VeChain │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── Viacoin │ ├── TWCoinTypeTests.cpp │ └── TWViacoinAddressTests.cpp ├── WalletConsoleTests.cpp ├── Wanchain │ ├── AddressTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ └── TWCoinTypeTests.cpp ├── Waves │ ├── AddressTests.cpp │ ├── LeaseTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TransactionTests.cpp ├── Zcash │ ├── AddressTests.cpp │ ├── TWCoinTypeTests.cpp │ ├── TWZcashAddressTests.cpp │ └── TWZcashTransactionTests.cpp ├── Zcoin │ ├── TWCoinTypeTests.cpp │ └── TWZCoinAddressTests.cpp ├── Zelcash │ ├── TWCoinTypeTests.cpp │ ├── TWZelcashAddressTests.cpp │ └── TWZelcashTransactionTests.cpp ├── Zilliqa │ ├── AddressTests.cpp │ ├── SignatureTests.cpp │ ├── SignerTests.cpp │ ├── TWAnySignerTests.cpp │ ├── TWCoinTypeTests.cpp │ └── TWZilliqaAddressTests.cpp ├── interface │ ├── TWAESTests.cpp │ ├── TWAnyAddressTests.cpp │ ├── TWBase58Tests.cpp │ ├── TWDataTests.cpp │ ├── TWHDWalletTests.cpp │ ├── TWHRPTests.cpp │ ├── TWHashTests.cpp │ ├── TWPrivateKeyTests.cpp │ ├── TWPublicKeyTests.cpp │ ├── TWStoredKeyTests.cpp │ ├── TWStringTests.cpp │ ├── TWTestUtilities.cpp │ └── TWTestUtilities.h └── main.cpp ├── tools ├── android-build ├── android-release.sh ├── android-test ├── cmake_legacy ├── codegen-test ├── coverage ├── generate-files ├── install-dependencies ├── ios-build ├── ios-build-framework ├── ios-release ├── ios-release-framework ├── ios-test ├── lint ├── lint-all ├── lint-cppcheck-all ├── lint-cppcheck-diff ├── maven-android-upload ├── samples-build └── tests ├── trezor-crypto ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── include │ └── TrezorCrypto │ │ ├── TrezorCrypto.h │ │ ├── address.h │ │ ├── aes.h │ │ ├── base32.h │ │ ├── base58.h │ │ ├── bignum.h │ │ ├── bip32.h │ │ ├── bip39.h │ │ ├── blake256.h │ │ ├── blake2b.h │ │ ├── blake2s.h │ │ ├── cash_addr.h │ │ ├── chacha20poly1305.h │ │ ├── chacha20poly1305 │ │ ├── ecrypt-config.h │ │ ├── ecrypt-sync.h │ │ ├── ecrypt-types.h │ │ └── poly1305-donna.h │ │ ├── curves.h │ │ ├── ecdsa.h │ │ ├── ed25519-donna.h │ │ ├── ed25519-donna │ │ ├── curve25519-donna-32bit.h │ │ ├── curve25519-donna-helpers.h │ │ ├── ed25519-blake2b.h │ │ ├── ed25519-donna-32bit-tables.h │ │ ├── ed25519-donna-basepoint-table.h │ │ ├── ed25519-donna-impl-base.h │ │ ├── ed25519-donna-portable.h │ │ ├── ed25519-keccak.h │ │ ├── ed25519-sha3.h │ │ └── modm-donna-32bit.h │ │ ├── ed25519.h │ │ ├── endian.h │ │ ├── groestl.h │ │ ├── hasher.h │ │ ├── hmac.h │ │ ├── memzero.h │ │ ├── monero │ │ ├── base58.h │ │ ├── monero.h │ │ ├── range_proof.h │ │ ├── serialize.h │ │ └── xmr.h │ │ ├── nano.h │ │ ├── nem.h │ │ ├── nist256p1.h │ │ ├── pbkdf2.h │ │ ├── rand.h │ │ ├── rc4.h │ │ ├── rfc6979.h │ │ ├── ripemd160.h │ │ ├── ripple │ │ └── base58.h │ │ ├── schnorr.h │ │ ├── script.h │ │ ├── scrypt.h │ │ ├── secp256k1.h │ │ ├── sha2.h │ │ ├── sha3.h │ │ └── sodium │ │ ├── keypair.h │ │ └── private │ │ ├── ed25519_ref10.h │ │ ├── ed25519_ref10_fe_25_5.h │ │ └── fe_25_5 │ │ ├── constants.h │ │ └── fe.h ├── src │ ├── address.c │ ├── aes │ │ ├── aes_modes.c │ │ ├── aescrypt.c │ │ ├── aeskey.c │ │ ├── aesopt.h │ │ ├── aestab.c │ │ └── aestab.h │ ├── base32.c │ ├── base58.c │ ├── bignum.c │ ├── bip32.c │ ├── bip39.c │ ├── bip39_english.h │ ├── blake256.c │ ├── blake2_common.h │ ├── blake2b.c │ ├── blake2s.c │ ├── cash_addr.c │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.c │ │ ├── chacha_merged.c │ │ ├── ecrypt-machine.h │ │ ├── ecrypt-portable.h │ │ ├── poly1305-donna-32.h │ │ ├── poly1305-donna.c │ │ ├── rfc7539.c │ │ └── rfc7539.h │ ├── check_mem.h │ ├── curves.c │ ├── ecdsa.c │ ├── ed25519-donna │ │ ├── README.md │ │ ├── curve25519-donna-32bit.c │ │ ├── curve25519-donna-helpers.c │ │ ├── curve25519-donna-scalarmult-base.c │ │ ├── curve25519-donna-scalarmult-base.h │ │ ├── ed25519-blake2b.c │ │ ├── ed25519-donna-32bit-tables.c │ │ ├── ed25519-donna-basepoint-table.c │ │ ├── ed25519-donna-impl-base.c │ │ ├── ed25519-hash-custom-blake2b.h │ │ ├── ed25519-hash-custom-keccak.h │ │ ├── ed25519-hash-custom-sha3.h │ │ ├── ed25519-hash-custom.h │ │ ├── ed25519-keccak.c │ │ ├── ed25519-sha3.c │ │ ├── ed25519.c │ │ └── modm-donna-32bit.c │ ├── groestl.c │ ├── groestl_internal.h │ ├── hasher.c │ ├── hmac.c │ ├── memzero.c │ ├── monero │ │ ├── base58.c │ │ ├── int-util.h │ │ ├── range_proof.c │ │ ├── serialize.c │ │ └── xmr.c │ ├── nano.c │ ├── nem.c │ ├── nist256p1.c │ ├── nist256p1.table │ ├── options.h │ ├── pbkdf2.c │ ├── rand.c │ ├── rc4.c │ ├── ripemd160.c │ ├── ripple │ │ └── base58.c │ ├── schnorr.c │ ├── script.c │ ├── scrypt.c │ ├── secp256k1.c │ ├── secp256k1.table │ ├── setup.py │ ├── sha2.c │ ├── sha3.c │ ├── shell.nix │ └── sodium │ │ ├── keypair.c │ │ └── private │ │ ├── ed25519_ref10.c │ │ ├── ed25519_ref10_fe_25_5.c │ │ └── fe_25_5 │ │ └── fe.c ├── test.db ├── tests │ ├── CMakeLists.txt │ ├── aestst.c │ ├── aestst.h │ ├── test_check.c │ ├── test_check_cardano.h │ ├── test_check_cashaddr.h │ ├── test_check_monero.h │ ├── test_check_nano.h │ ├── test_curves.py │ ├── test_openssl.c │ ├── test_speed.c │ └── test_wycheproof.py └── tools │ ├── .gitignore │ ├── README.md │ ├── bip39bruteforce.c │ ├── mktable.c │ ├── nem_test_vectors.erb │ ├── nem_test_vectors.rb │ └── xpubaddrgen.c ├── typescript ├── .gitignore ├── codegen │ ├── bin │ │ └── codegen │ └── templates │ │ └── core_types.ejs ├── package.json ├── src │ └── index.ts ├── tests │ └── index.test.ts ├── tools │ ├── check-gpr-version │ ├── check-npm-version │ └── set-tag-version ├── tsconfig.json └── yarn.lock ├── wallet_core.srctrlprj └── walletconsole ├── CMakeLists.txt ├── README.md ├── lib ├── Address.cpp ├── Address.h ├── Buffer.cpp ├── Buffer.h ├── CMakeLists.txt ├── Coins.cpp ├── Coins.h ├── CommandExecutor.cpp ├── CommandExecutor.h ├── Keys.cpp ├── Keys.h ├── TonCoin.h ├── Util.cpp ├── Util.h ├── WalletConsole.cpp └── WalletConsole.h └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.codacy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.codacy.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/android-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/workflows/android-ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/ios-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/workflows/ios-ci.yml -------------------------------------------------------------------------------- /.github/workflows/ios-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/workflows/ios-release.yml -------------------------------------------------------------------------------- /.github/workflows/linux-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/workflows/linux-ci.yml -------------------------------------------------------------------------------- /.github/workflows/ts-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/workflows/ts-ci.yml -------------------------------------------------------------------------------- /.github/workflows/ts-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.github/workflows/ts-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/README.md -------------------------------------------------------------------------------- /TrustWalletCore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/TrustWalletCore.podspec -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':trustwalletcore' 2 | -------------------------------------------------------------------------------- /android/trustwalletcore/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /cmake/Protobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/cmake/Protobuf.cmake -------------------------------------------------------------------------------- /cmake/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/cmake/ios.toolchain.cmake -------------------------------------------------------------------------------- /codegen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/.gitignore -------------------------------------------------------------------------------- /codegen/.rubocop.yml: -------------------------------------------------------------------------------- 1 | Metrics/LineLength: 2 | Enabled: false 3 | -------------------------------------------------------------------------------- /codegen/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/Rakefile -------------------------------------------------------------------------------- /codegen/bin/codegen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/bin/codegen -------------------------------------------------------------------------------- /codegen/bin/coins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/bin/coins -------------------------------------------------------------------------------- /codegen/bin/cointests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/bin/cointests -------------------------------------------------------------------------------- /codegen/bin/newcoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/bin/newcoin -------------------------------------------------------------------------------- /codegen/lib/code_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/code_generator.rb -------------------------------------------------------------------------------- /codegen/lib/coin_test_gen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/coin_test_gen.rb -------------------------------------------------------------------------------- /codegen/lib/entity_decl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/entity_decl.rb -------------------------------------------------------------------------------- /codegen/lib/enum_decl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/enum_decl.rb -------------------------------------------------------------------------------- /codegen/lib/function_decl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/function_decl.rb -------------------------------------------------------------------------------- /codegen/lib/java_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/java_helper.rb -------------------------------------------------------------------------------- /codegen/lib/jni_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/jni_helper.rb -------------------------------------------------------------------------------- /codegen/lib/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/parser.rb -------------------------------------------------------------------------------- /codegen/lib/swift_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/swift_helper.rb -------------------------------------------------------------------------------- /codegen/lib/templates/coins.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/templates/coins.md.erb -------------------------------------------------------------------------------- /codegen/lib/templates/hrp.h.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/templates/hrp.h.erb -------------------------------------------------------------------------------- /codegen/lib/templates/java.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/templates/java.erb -------------------------------------------------------------------------------- /codegen/lib/templates/jni_c.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/templates/jni_c.erb -------------------------------------------------------------------------------- /codegen/lib/templates/jni_h.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/templates/jni_h.erb -------------------------------------------------------------------------------- /codegen/lib/templates/swift.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/templates/swift.erb -------------------------------------------------------------------------------- /codegen/lib/type_decl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/lib/type_decl.rb -------------------------------------------------------------------------------- /codegen/test/test_java_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/test/test_java_helper.rb -------------------------------------------------------------------------------- /codegen/test/test_jni_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/test/test_jni_helper.rb -------------------------------------------------------------------------------- /codegen/test/test_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/codegen/test/test_parser.rb -------------------------------------------------------------------------------- /coins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/coins.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/docs/banner.png -------------------------------------------------------------------------------- /docs/coins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/docs/coins.md -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/wallet-core.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/docs/wallet-core.drawio -------------------------------------------------------------------------------- /docs/wallet-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/docs/wallet-core.png -------------------------------------------------------------------------------- /include/TrustWalletCore/TWAES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/include/TrustWalletCore/TWAES.h -------------------------------------------------------------------------------- /include/TrustWalletCore/TWBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/include/TrustWalletCore/TWBase.h -------------------------------------------------------------------------------- /include/TrustWalletCore/TWData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/include/TrustWalletCore/TWData.h -------------------------------------------------------------------------------- /include/TrustWalletCore/TWHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/include/TrustWalletCore/TWHash.h -------------------------------------------------------------------------------- /jni/cpp/AnySigner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/AnySigner.c -------------------------------------------------------------------------------- /jni/cpp/AnySigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/AnySigner.h -------------------------------------------------------------------------------- /jni/cpp/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/Random.cpp -------------------------------------------------------------------------------- /jni/cpp/TWJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/TWJNI.h -------------------------------------------------------------------------------- /jni/cpp/TWJNIData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/TWJNIData.cpp -------------------------------------------------------------------------------- /jni/cpp/TWJNIData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/TWJNIData.h -------------------------------------------------------------------------------- /jni/cpp/TWJNIString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/TWJNIString.cpp -------------------------------------------------------------------------------- /jni/cpp/TWJNIString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/jni/cpp/TWJNIString.h -------------------------------------------------------------------------------- /protobuf-plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/protobuf-plugin/CMakeLists.txt -------------------------------------------------------------------------------- /protobuf-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/protobuf-plugin/README.md -------------------------------------------------------------------------------- /protobuf-plugin/c_typedef.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/protobuf-plugin/c_typedef.cc -------------------------------------------------------------------------------- /samples/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/android/.gitignore -------------------------------------------------------------------------------- /samples/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/android/README.md -------------------------------------------------------------------------------- /samples/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /samples/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/android/app/build.gradle -------------------------------------------------------------------------------- /samples/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/android/build.gradle -------------------------------------------------------------------------------- /samples/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/android/gradlew -------------------------------------------------------------------------------- /samples/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/android/gradlew.bat -------------------------------------------------------------------------------- /samples/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='example' 3 | -------------------------------------------------------------------------------- /samples/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /samples/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/cpp/README.md -------------------------------------------------------------------------------- /samples/cpp/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/cpp/sample.cpp -------------------------------------------------------------------------------- /samples/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/go/README.md -------------------------------------------------------------------------------- /samples/go/go.mod: -------------------------------------------------------------------------------- 1 | module tw 2 | 3 | go 1.14 4 | 5 | require github.com/golang/protobuf v1.4.2 6 | -------------------------------------------------------------------------------- /samples/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/go/go.sum -------------------------------------------------------------------------------- /samples/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/go/main.go -------------------------------------------------------------------------------- /samples/go/types/twdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/go/types/twdata.go -------------------------------------------------------------------------------- /samples/go/types/twstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/go/types/twstring.go -------------------------------------------------------------------------------- /samples/osx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/osx/README.md -------------------------------------------------------------------------------- /samples/osx/cocoapods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/samples/osx/cocoapods/Podfile -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/Aeternity/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Address.cpp -------------------------------------------------------------------------------- /src/Aeternity/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Address.h -------------------------------------------------------------------------------- /src/Aeternity/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Entry.cpp -------------------------------------------------------------------------------- /src/Aeternity/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Entry.h -------------------------------------------------------------------------------- /src/Aeternity/Identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Identifiers.h -------------------------------------------------------------------------------- /src/Aeternity/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Signer.cpp -------------------------------------------------------------------------------- /src/Aeternity/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Signer.h -------------------------------------------------------------------------------- /src/Aeternity/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Transaction.cpp -------------------------------------------------------------------------------- /src/Aeternity/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aeternity/Transaction.h -------------------------------------------------------------------------------- /src/Aion/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Address.cpp -------------------------------------------------------------------------------- /src/Aion/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Address.h -------------------------------------------------------------------------------- /src/Aion/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Entry.cpp -------------------------------------------------------------------------------- /src/Aion/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Entry.h -------------------------------------------------------------------------------- /src/Aion/RLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/RLP.h -------------------------------------------------------------------------------- /src/Aion/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Signer.cpp -------------------------------------------------------------------------------- /src/Aion/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Signer.h -------------------------------------------------------------------------------- /src/Aion/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Transaction.cpp -------------------------------------------------------------------------------- /src/Aion/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Aion/Transaction.h -------------------------------------------------------------------------------- /src/Algorand/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Address.cpp -------------------------------------------------------------------------------- /src/Algorand/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Address.h -------------------------------------------------------------------------------- /src/Algorand/BinaryCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/BinaryCoding.h -------------------------------------------------------------------------------- /src/Algorand/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Entry.cpp -------------------------------------------------------------------------------- /src/Algorand/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Entry.h -------------------------------------------------------------------------------- /src/Algorand/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Signer.cpp -------------------------------------------------------------------------------- /src/Algorand/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Signer.h -------------------------------------------------------------------------------- /src/Algorand/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Transaction.cpp -------------------------------------------------------------------------------- /src/Algorand/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Algorand/Transaction.h -------------------------------------------------------------------------------- /src/Base32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Base32.h -------------------------------------------------------------------------------- /src/Base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Base58.cpp -------------------------------------------------------------------------------- /src/Base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Base58.h -------------------------------------------------------------------------------- /src/Base58Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Base58Address.h -------------------------------------------------------------------------------- /src/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Base64.cpp -------------------------------------------------------------------------------- /src/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Base64.h -------------------------------------------------------------------------------- /src/Bech32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bech32.cpp -------------------------------------------------------------------------------- /src/Bech32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bech32.h -------------------------------------------------------------------------------- /src/Bech32Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bech32Address.cpp -------------------------------------------------------------------------------- /src/Bech32Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bech32Address.h -------------------------------------------------------------------------------- /src/Binance/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Address.cpp -------------------------------------------------------------------------------- /src/Binance/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Address.h -------------------------------------------------------------------------------- /src/Binance/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Entry.cpp -------------------------------------------------------------------------------- /src/Binance/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Entry.h -------------------------------------------------------------------------------- /src/Binance/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Serialization.cpp -------------------------------------------------------------------------------- /src/Binance/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Serialization.h -------------------------------------------------------------------------------- /src/Binance/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Signer.cpp -------------------------------------------------------------------------------- /src/Binance/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Binance/Signer.h -------------------------------------------------------------------------------- /src/BinaryCoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/BinaryCoding.cpp -------------------------------------------------------------------------------- /src/BinaryCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/BinaryCoding.h -------------------------------------------------------------------------------- /src/Bitcoin/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Address.cpp -------------------------------------------------------------------------------- /src/Bitcoin/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Address.h -------------------------------------------------------------------------------- /src/Bitcoin/Amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Amount.h -------------------------------------------------------------------------------- /src/Bitcoin/CashAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/CashAddress.cpp -------------------------------------------------------------------------------- /src/Bitcoin/CashAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/CashAddress.h -------------------------------------------------------------------------------- /src/Bitcoin/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Entry.cpp -------------------------------------------------------------------------------- /src/Bitcoin/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Entry.h -------------------------------------------------------------------------------- /src/Bitcoin/FeeCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/FeeCalculator.cpp -------------------------------------------------------------------------------- /src/Bitcoin/FeeCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/FeeCalculator.h -------------------------------------------------------------------------------- /src/Bitcoin/OpCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/OpCodes.h -------------------------------------------------------------------------------- /src/Bitcoin/OutPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/OutPoint.cpp -------------------------------------------------------------------------------- /src/Bitcoin/OutPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/OutPoint.h -------------------------------------------------------------------------------- /src/Bitcoin/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Script.cpp -------------------------------------------------------------------------------- /src/Bitcoin/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Script.h -------------------------------------------------------------------------------- /src/Bitcoin/SegwitAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/SegwitAddress.cpp -------------------------------------------------------------------------------- /src/Bitcoin/SegwitAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/SegwitAddress.h -------------------------------------------------------------------------------- /src/Bitcoin/SigHashType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/SigHashType.h -------------------------------------------------------------------------------- /src/Bitcoin/SignatureVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/SignatureVersion.h -------------------------------------------------------------------------------- /src/Bitcoin/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Signer.cpp -------------------------------------------------------------------------------- /src/Bitcoin/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Signer.h -------------------------------------------------------------------------------- /src/Bitcoin/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Transaction.cpp -------------------------------------------------------------------------------- /src/Bitcoin/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/Transaction.h -------------------------------------------------------------------------------- /src/Bitcoin/TransactionBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/TransactionBuilder.h -------------------------------------------------------------------------------- /src/Bitcoin/TransactionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/TransactionInput.cpp -------------------------------------------------------------------------------- /src/Bitcoin/TransactionInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/TransactionInput.h -------------------------------------------------------------------------------- /src/Bitcoin/TransactionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/TransactionOutput.h -------------------------------------------------------------------------------- /src/Bitcoin/TransactionPlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/TransactionPlan.h -------------------------------------------------------------------------------- /src/Bitcoin/TransactionSigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/TransactionSigner.h -------------------------------------------------------------------------------- /src/Bitcoin/UnspentSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/UnspentSelector.cpp -------------------------------------------------------------------------------- /src/Bitcoin/UnspentSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Bitcoin/UnspentSelector.h -------------------------------------------------------------------------------- /src/Cardano/AddressV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cardano/AddressV2.cpp -------------------------------------------------------------------------------- /src/Cardano/AddressV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cardano/AddressV2.h -------------------------------------------------------------------------------- /src/Cardano/AddressV3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cardano/AddressV3.cpp -------------------------------------------------------------------------------- /src/Cardano/AddressV3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cardano/AddressV3.h -------------------------------------------------------------------------------- /src/Cardano/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cardano/Entry.cpp -------------------------------------------------------------------------------- /src/Cardano/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cardano/Entry.h -------------------------------------------------------------------------------- /src/Cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cbor.cpp -------------------------------------------------------------------------------- /src/Cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cbor.h -------------------------------------------------------------------------------- /src/Coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Coin.cpp -------------------------------------------------------------------------------- /src/Coin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Coin.h -------------------------------------------------------------------------------- /src/CoinEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/CoinEntry.h -------------------------------------------------------------------------------- /src/Cosmos/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Address.cpp -------------------------------------------------------------------------------- /src/Cosmos/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Address.h -------------------------------------------------------------------------------- /src/Cosmos/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Entry.cpp -------------------------------------------------------------------------------- /src/Cosmos/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Entry.h -------------------------------------------------------------------------------- /src/Cosmos/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Serialization.cpp -------------------------------------------------------------------------------- /src/Cosmos/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Serialization.h -------------------------------------------------------------------------------- /src/Cosmos/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Signer.cpp -------------------------------------------------------------------------------- /src/Cosmos/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Cosmos/Signer.h -------------------------------------------------------------------------------- /src/Crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Crc.cpp -------------------------------------------------------------------------------- /src/Crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Crc.h -------------------------------------------------------------------------------- /src/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Data.cpp -------------------------------------------------------------------------------- /src/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Data.h -------------------------------------------------------------------------------- /src/Decred/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Address.cpp -------------------------------------------------------------------------------- /src/Decred/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Address.h -------------------------------------------------------------------------------- /src/Decred/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Entry.cpp -------------------------------------------------------------------------------- /src/Decred/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Entry.h -------------------------------------------------------------------------------- /src/Decred/OutPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/OutPoint.cpp -------------------------------------------------------------------------------- /src/Decred/OutPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/OutPoint.h -------------------------------------------------------------------------------- /src/Decred/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Signer.cpp -------------------------------------------------------------------------------- /src/Decred/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Signer.h -------------------------------------------------------------------------------- /src/Decred/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Transaction.cpp -------------------------------------------------------------------------------- /src/Decred/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/Transaction.h -------------------------------------------------------------------------------- /src/Decred/TransactionBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/TransactionBuilder.h -------------------------------------------------------------------------------- /src/Decred/TransactionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/TransactionInput.cpp -------------------------------------------------------------------------------- /src/Decred/TransactionInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/TransactionInput.h -------------------------------------------------------------------------------- /src/Decred/TransactionOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/TransactionOutput.cpp -------------------------------------------------------------------------------- /src/Decred/TransactionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Decred/TransactionOutput.h -------------------------------------------------------------------------------- /src/DerivationPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/DerivationPath.cpp -------------------------------------------------------------------------------- /src/DerivationPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/DerivationPath.h -------------------------------------------------------------------------------- /src/EOS/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Action.cpp -------------------------------------------------------------------------------- /src/EOS/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Action.h -------------------------------------------------------------------------------- /src/EOS/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Address.cpp -------------------------------------------------------------------------------- /src/EOS/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Address.h -------------------------------------------------------------------------------- /src/EOS/Asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Asset.cpp -------------------------------------------------------------------------------- /src/EOS/Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Asset.h -------------------------------------------------------------------------------- /src/EOS/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Entry.cpp -------------------------------------------------------------------------------- /src/EOS/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Entry.h -------------------------------------------------------------------------------- /src/EOS/KeyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/KeyType.h -------------------------------------------------------------------------------- /src/EOS/Name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Name.cpp -------------------------------------------------------------------------------- /src/EOS/Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Name.h -------------------------------------------------------------------------------- /src/EOS/PackedTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/PackedTransaction.cpp -------------------------------------------------------------------------------- /src/EOS/PackedTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/PackedTransaction.h -------------------------------------------------------------------------------- /src/EOS/Prefixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Prefixes.h -------------------------------------------------------------------------------- /src/EOS/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Serialization.h -------------------------------------------------------------------------------- /src/EOS/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Signer.cpp -------------------------------------------------------------------------------- /src/EOS/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Signer.h -------------------------------------------------------------------------------- /src/EOS/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Transaction.cpp -------------------------------------------------------------------------------- /src/EOS/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/EOS/Transaction.h -------------------------------------------------------------------------------- /src/Elrond/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Address.cpp -------------------------------------------------------------------------------- /src/Elrond/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Address.h -------------------------------------------------------------------------------- /src/Elrond/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Entry.cpp -------------------------------------------------------------------------------- /src/Elrond/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Entry.h -------------------------------------------------------------------------------- /src/Elrond/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Serialization.cpp -------------------------------------------------------------------------------- /src/Elrond/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Serialization.h -------------------------------------------------------------------------------- /src/Elrond/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Signer.cpp -------------------------------------------------------------------------------- /src/Elrond/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Elrond/Signer.h -------------------------------------------------------------------------------- /src/Encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Encrypt.cpp -------------------------------------------------------------------------------- /src/Encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Encrypt.h -------------------------------------------------------------------------------- /src/Ethereum/ABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Array.cpp -------------------------------------------------------------------------------- /src/Ethereum/ABI/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Array.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/Bytes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Bytes.cpp -------------------------------------------------------------------------------- /src/Ethereum/ABI/Bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Bytes.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Function.cpp -------------------------------------------------------------------------------- /src/Ethereum/ABI/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Function.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/ParamAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/ParamAddress.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/ParamBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/ParamBase.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/ParamFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/ParamFactory.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/ParamNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/ParamNumber.cpp -------------------------------------------------------------------------------- /src/Ethereum/ABI/ParamNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/ParamNumber.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Parameters.cpp -------------------------------------------------------------------------------- /src/Ethereum/ABI/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/Parameters.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/ValueDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/ValueDecoder.h -------------------------------------------------------------------------------- /src/Ethereum/ABI/ValueEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ABI/ValueEncoder.h -------------------------------------------------------------------------------- /src/Ethereum/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Address.cpp -------------------------------------------------------------------------------- /src/Ethereum/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Address.h -------------------------------------------------------------------------------- /src/Ethereum/AddressChecksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/AddressChecksum.cpp -------------------------------------------------------------------------------- /src/Ethereum/AddressChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/AddressChecksum.h -------------------------------------------------------------------------------- /src/Ethereum/ContractCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ContractCall.cpp -------------------------------------------------------------------------------- /src/Ethereum/ContractCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/ContractCall.h -------------------------------------------------------------------------------- /src/Ethereum/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Entry.cpp -------------------------------------------------------------------------------- /src/Ethereum/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Entry.h -------------------------------------------------------------------------------- /src/Ethereum/RLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/RLP.cpp -------------------------------------------------------------------------------- /src/Ethereum/RLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/RLP.h -------------------------------------------------------------------------------- /src/Ethereum/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Signer.cpp -------------------------------------------------------------------------------- /src/Ethereum/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Signer.h -------------------------------------------------------------------------------- /src/Ethereum/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Transaction.cpp -------------------------------------------------------------------------------- /src/Ethereum/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ethereum/Transaction.h -------------------------------------------------------------------------------- /src/FIO/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Action.cpp -------------------------------------------------------------------------------- /src/FIO/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Action.h -------------------------------------------------------------------------------- /src/FIO/Actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Actor.cpp -------------------------------------------------------------------------------- /src/FIO/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Actor.h -------------------------------------------------------------------------------- /src/FIO/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Address.cpp -------------------------------------------------------------------------------- /src/FIO/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Address.h -------------------------------------------------------------------------------- /src/FIO/Encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Encryption.cpp -------------------------------------------------------------------------------- /src/FIO/Encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Encryption.h -------------------------------------------------------------------------------- /src/FIO/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Entry.cpp -------------------------------------------------------------------------------- /src/FIO/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Entry.h -------------------------------------------------------------------------------- /src/FIO/NewFundsRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/NewFundsRequest.cpp -------------------------------------------------------------------------------- /src/FIO/NewFundsRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/NewFundsRequest.h -------------------------------------------------------------------------------- /src/FIO/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Signer.cpp -------------------------------------------------------------------------------- /src/FIO/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Signer.h -------------------------------------------------------------------------------- /src/FIO/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Transaction.cpp -------------------------------------------------------------------------------- /src/FIO/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/Transaction.h -------------------------------------------------------------------------------- /src/FIO/TransactionBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/TransactionBuilder.cpp -------------------------------------------------------------------------------- /src/FIO/TransactionBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/FIO/TransactionBuilder.h -------------------------------------------------------------------------------- /src/Filecoin/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Address.cpp -------------------------------------------------------------------------------- /src/Filecoin/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Address.h -------------------------------------------------------------------------------- /src/Filecoin/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Entry.cpp -------------------------------------------------------------------------------- /src/Filecoin/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Entry.h -------------------------------------------------------------------------------- /src/Filecoin/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Signer.cpp -------------------------------------------------------------------------------- /src/Filecoin/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Signer.h -------------------------------------------------------------------------------- /src/Filecoin/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Transaction.cpp -------------------------------------------------------------------------------- /src/Filecoin/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Filecoin/Transaction.h -------------------------------------------------------------------------------- /src/Groestlcoin/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Groestlcoin/Address.cpp -------------------------------------------------------------------------------- /src/Groestlcoin/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Groestlcoin/Address.h -------------------------------------------------------------------------------- /src/Groestlcoin/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Groestlcoin/Entry.cpp -------------------------------------------------------------------------------- /src/Groestlcoin/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Groestlcoin/Entry.h -------------------------------------------------------------------------------- /src/Groestlcoin/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Groestlcoin/Signer.cpp -------------------------------------------------------------------------------- /src/Groestlcoin/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Groestlcoin/Signer.h -------------------------------------------------------------------------------- /src/Groestlcoin/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Groestlcoin/Transaction.h -------------------------------------------------------------------------------- /src/HDWallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/HDWallet.cpp -------------------------------------------------------------------------------- /src/HDWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/HDWallet.h -------------------------------------------------------------------------------- /src/Harmony/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Address.cpp -------------------------------------------------------------------------------- /src/Harmony/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Address.h -------------------------------------------------------------------------------- /src/Harmony/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Entry.cpp -------------------------------------------------------------------------------- /src/Harmony/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Entry.h -------------------------------------------------------------------------------- /src/Harmony/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Signer.cpp -------------------------------------------------------------------------------- /src/Harmony/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Signer.h -------------------------------------------------------------------------------- /src/Harmony/Staking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Staking.cpp -------------------------------------------------------------------------------- /src/Harmony/Staking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Staking.h -------------------------------------------------------------------------------- /src/Harmony/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Transaction.cpp -------------------------------------------------------------------------------- /src/Harmony/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Harmony/Transaction.h -------------------------------------------------------------------------------- /src/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Hash.cpp -------------------------------------------------------------------------------- /src/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Hash.h -------------------------------------------------------------------------------- /src/HexCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/HexCoding.h -------------------------------------------------------------------------------- /src/Icon/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Icon/Address.cpp -------------------------------------------------------------------------------- /src/Icon/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Icon/Address.h -------------------------------------------------------------------------------- /src/Icon/AddressType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Icon/AddressType.h -------------------------------------------------------------------------------- /src/Icon/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Icon/Entry.cpp -------------------------------------------------------------------------------- /src/Icon/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Icon/Entry.h -------------------------------------------------------------------------------- /src/Icon/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Icon/Signer.cpp -------------------------------------------------------------------------------- /src/Icon/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Icon/Signer.h -------------------------------------------------------------------------------- /src/IoTeX/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Address.cpp -------------------------------------------------------------------------------- /src/IoTeX/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Address.h -------------------------------------------------------------------------------- /src/IoTeX/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Entry.cpp -------------------------------------------------------------------------------- /src/IoTeX/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Entry.h -------------------------------------------------------------------------------- /src/IoTeX/Protobuf/action.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Protobuf/action.pb.cc -------------------------------------------------------------------------------- /src/IoTeX/Protobuf/action.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Protobuf/action.pb.h -------------------------------------------------------------------------------- /src/IoTeX/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Signer.cpp -------------------------------------------------------------------------------- /src/IoTeX/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Signer.h -------------------------------------------------------------------------------- /src/IoTeX/Staking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Staking.cpp -------------------------------------------------------------------------------- /src/IoTeX/Staking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/IoTeX/Staking.h -------------------------------------------------------------------------------- /src/Keystore/AESParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/AESParameters.cpp -------------------------------------------------------------------------------- /src/Keystore/AESParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/AESParameters.h -------------------------------------------------------------------------------- /src/Keystore/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/Account.cpp -------------------------------------------------------------------------------- /src/Keystore/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/Account.h -------------------------------------------------------------------------------- /src/Keystore/PBKDF2Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/PBKDF2Parameters.h -------------------------------------------------------------------------------- /src/Keystore/ScryptParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/ScryptParameters.h -------------------------------------------------------------------------------- /src/Keystore/StoredKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/StoredKey.cpp -------------------------------------------------------------------------------- /src/Keystore/StoredKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Keystore/StoredKey.h -------------------------------------------------------------------------------- /src/Kusama/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Kusama/Address.h -------------------------------------------------------------------------------- /src/Kusama/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Kusama/Entry.cpp -------------------------------------------------------------------------------- /src/Kusama/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Kusama/Entry.h -------------------------------------------------------------------------------- /src/NEAR/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Account.cpp -------------------------------------------------------------------------------- /src/NEAR/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Account.h -------------------------------------------------------------------------------- /src/NEAR/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Address.cpp -------------------------------------------------------------------------------- /src/NEAR/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Address.h -------------------------------------------------------------------------------- /src/NEAR/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Entry.cpp -------------------------------------------------------------------------------- /src/NEAR/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Entry.h -------------------------------------------------------------------------------- /src/NEAR/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Serialization.cpp -------------------------------------------------------------------------------- /src/NEAR/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Serialization.h -------------------------------------------------------------------------------- /src/NEAR/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Signer.cpp -------------------------------------------------------------------------------- /src/NEAR/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEAR/Signer.h -------------------------------------------------------------------------------- /src/NEO/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Address.cpp -------------------------------------------------------------------------------- /src/NEO/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Address.h -------------------------------------------------------------------------------- /src/NEO/CoinReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/CoinReference.h -------------------------------------------------------------------------------- /src/NEO/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Entry.cpp -------------------------------------------------------------------------------- /src/NEO/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Entry.h -------------------------------------------------------------------------------- /src/NEO/ISerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/ISerializable.h -------------------------------------------------------------------------------- /src/NEO/MinerTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/MinerTransaction.h -------------------------------------------------------------------------------- /src/NEO/OpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/OpCode.h -------------------------------------------------------------------------------- /src/NEO/ReadData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/ReadData.cpp -------------------------------------------------------------------------------- /src/NEO/ReadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/ReadData.h -------------------------------------------------------------------------------- /src/NEO/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Script.cpp -------------------------------------------------------------------------------- /src/NEO/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Script.h -------------------------------------------------------------------------------- /src/NEO/Serializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Serializable.h -------------------------------------------------------------------------------- /src/NEO/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Signer.cpp -------------------------------------------------------------------------------- /src/NEO/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Signer.h -------------------------------------------------------------------------------- /src/NEO/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Transaction.cpp -------------------------------------------------------------------------------- /src/NEO/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Transaction.h -------------------------------------------------------------------------------- /src/NEO/TransactionAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/TransactionAttribute.h -------------------------------------------------------------------------------- /src/NEO/TransactionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/TransactionOutput.h -------------------------------------------------------------------------------- /src/NEO/TransactionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/TransactionType.h -------------------------------------------------------------------------------- /src/NEO/Witness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NEO/Witness.h -------------------------------------------------------------------------------- /src/NULS/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NULS/Address.cpp -------------------------------------------------------------------------------- /src/NULS/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NULS/Address.h -------------------------------------------------------------------------------- /src/NULS/BinaryCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NULS/BinaryCoding.h -------------------------------------------------------------------------------- /src/NULS/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NULS/Entry.cpp -------------------------------------------------------------------------------- /src/NULS/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NULS/Entry.h -------------------------------------------------------------------------------- /src/NULS/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NULS/Signer.cpp -------------------------------------------------------------------------------- /src/NULS/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/NULS/Signer.h -------------------------------------------------------------------------------- /src/Nano/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nano/Address.cpp -------------------------------------------------------------------------------- /src/Nano/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nano/Address.h -------------------------------------------------------------------------------- /src/Nano/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nano/Entry.cpp -------------------------------------------------------------------------------- /src/Nano/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nano/Entry.h -------------------------------------------------------------------------------- /src/Nano/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nano/Signer.cpp -------------------------------------------------------------------------------- /src/Nano/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nano/Signer.h -------------------------------------------------------------------------------- /src/Nebulas/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Address.cpp -------------------------------------------------------------------------------- /src/Nebulas/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Address.h -------------------------------------------------------------------------------- /src/Nebulas/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Entry.cpp -------------------------------------------------------------------------------- /src/Nebulas/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Entry.h -------------------------------------------------------------------------------- /src/Nebulas/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Signer.cpp -------------------------------------------------------------------------------- /src/Nebulas/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Signer.h -------------------------------------------------------------------------------- /src/Nebulas/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Transaction.cpp -------------------------------------------------------------------------------- /src/Nebulas/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nebulas/Transaction.h -------------------------------------------------------------------------------- /src/Nimiq/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Address.cpp -------------------------------------------------------------------------------- /src/Nimiq/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Address.h -------------------------------------------------------------------------------- /src/Nimiq/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Entry.cpp -------------------------------------------------------------------------------- /src/Nimiq/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Entry.h -------------------------------------------------------------------------------- /src/Nimiq/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Signer.cpp -------------------------------------------------------------------------------- /src/Nimiq/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Signer.h -------------------------------------------------------------------------------- /src/Nimiq/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Transaction.cpp -------------------------------------------------------------------------------- /src/Nimiq/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Nimiq/Transaction.h -------------------------------------------------------------------------------- /src/Ontology/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Address.cpp -------------------------------------------------------------------------------- /src/Ontology/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Address.h -------------------------------------------------------------------------------- /src/Ontology/Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Asset.h -------------------------------------------------------------------------------- /src/Ontology/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Entry.cpp -------------------------------------------------------------------------------- /src/Ontology/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Entry.h -------------------------------------------------------------------------------- /src/Ontology/Ong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Ong.cpp -------------------------------------------------------------------------------- /src/Ontology/Ong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Ong.h -------------------------------------------------------------------------------- /src/Ontology/OngTxBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/OngTxBuilder.cpp -------------------------------------------------------------------------------- /src/Ontology/OngTxBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/OngTxBuilder.h -------------------------------------------------------------------------------- /src/Ontology/Ont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Ont.cpp -------------------------------------------------------------------------------- /src/Ontology/Ont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Ont.h -------------------------------------------------------------------------------- /src/Ontology/OntTxBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/OntTxBuilder.cpp -------------------------------------------------------------------------------- /src/Ontology/OntTxBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/OntTxBuilder.h -------------------------------------------------------------------------------- /src/Ontology/OpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/OpCode.h -------------------------------------------------------------------------------- /src/Ontology/ParamsBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/ParamsBuilder.cpp -------------------------------------------------------------------------------- /src/Ontology/ParamsBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/ParamsBuilder.h -------------------------------------------------------------------------------- /src/Ontology/SigData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/SigData.cpp -------------------------------------------------------------------------------- /src/Ontology/SigData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/SigData.h -------------------------------------------------------------------------------- /src/Ontology/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Signer.cpp -------------------------------------------------------------------------------- /src/Ontology/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Signer.h -------------------------------------------------------------------------------- /src/Ontology/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Transaction.cpp -------------------------------------------------------------------------------- /src/Ontology/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ontology/Transaction.h -------------------------------------------------------------------------------- /src/Polkadot/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/Address.h -------------------------------------------------------------------------------- /src/Polkadot/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/Entry.cpp -------------------------------------------------------------------------------- /src/Polkadot/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/Entry.h -------------------------------------------------------------------------------- /src/Polkadot/Extrinsic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/Extrinsic.cpp -------------------------------------------------------------------------------- /src/Polkadot/Extrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/Extrinsic.h -------------------------------------------------------------------------------- /src/Polkadot/ScaleCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/ScaleCodec.h -------------------------------------------------------------------------------- /src/Polkadot/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/Signer.cpp -------------------------------------------------------------------------------- /src/Polkadot/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Polkadot/Signer.h -------------------------------------------------------------------------------- /src/PrivateKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/PrivateKey.cpp -------------------------------------------------------------------------------- /src/PrivateKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/PrivateKey.h -------------------------------------------------------------------------------- /src/PublicKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/PublicKey.cpp -------------------------------------------------------------------------------- /src/PublicKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/PublicKey.h -------------------------------------------------------------------------------- /src/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Result.h -------------------------------------------------------------------------------- /src/Ripple/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Address.cpp -------------------------------------------------------------------------------- /src/Ripple/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Address.h -------------------------------------------------------------------------------- /src/Ripple/BinaryCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/BinaryCoding.h -------------------------------------------------------------------------------- /src/Ripple/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Entry.cpp -------------------------------------------------------------------------------- /src/Ripple/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Entry.h -------------------------------------------------------------------------------- /src/Ripple/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Signer.cpp -------------------------------------------------------------------------------- /src/Ripple/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Signer.h -------------------------------------------------------------------------------- /src/Ripple/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Transaction.cpp -------------------------------------------------------------------------------- /src/Ripple/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/Transaction.h -------------------------------------------------------------------------------- /src/Ripple/XAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/XAddress.cpp -------------------------------------------------------------------------------- /src/Ripple/XAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Ripple/XAddress.h -------------------------------------------------------------------------------- /src/SS58Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/SS58Address.h -------------------------------------------------------------------------------- /src/Solana/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Address.cpp -------------------------------------------------------------------------------- /src/Solana/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Address.h -------------------------------------------------------------------------------- /src/Solana/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Entry.cpp -------------------------------------------------------------------------------- /src/Solana/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Entry.h -------------------------------------------------------------------------------- /src/Solana/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Signer.cpp -------------------------------------------------------------------------------- /src/Solana/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Signer.h -------------------------------------------------------------------------------- /src/Solana/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Transaction.cpp -------------------------------------------------------------------------------- /src/Solana/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Solana/Transaction.h -------------------------------------------------------------------------------- /src/Stellar/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Stellar/Address.cpp -------------------------------------------------------------------------------- /src/Stellar/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Stellar/Address.h -------------------------------------------------------------------------------- /src/Stellar/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Stellar/Entry.cpp -------------------------------------------------------------------------------- /src/Stellar/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Stellar/Entry.h -------------------------------------------------------------------------------- /src/Stellar/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Stellar/Signer.cpp -------------------------------------------------------------------------------- /src/Stellar/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Stellar/Signer.h -------------------------------------------------------------------------------- /src/TON/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Address.cpp -------------------------------------------------------------------------------- /src/TON/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Address.h -------------------------------------------------------------------------------- /src/TON/Cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Cell.cpp -------------------------------------------------------------------------------- /src/TON/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Cell.h -------------------------------------------------------------------------------- /src/TON/Contract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Contract.cpp -------------------------------------------------------------------------------- /src/TON/Contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Contract.h -------------------------------------------------------------------------------- /src/TON/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Entry.cpp -------------------------------------------------------------------------------- /src/TON/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Entry.h -------------------------------------------------------------------------------- /src/TON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/README.md -------------------------------------------------------------------------------- /src/TON/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Signer.cpp -------------------------------------------------------------------------------- /src/TON/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/TON/Signer.h -------------------------------------------------------------------------------- /src/Tezos/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Address.cpp -------------------------------------------------------------------------------- /src/Tezos/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Address.h -------------------------------------------------------------------------------- /src/Tezos/BinaryCoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/BinaryCoding.cpp -------------------------------------------------------------------------------- /src/Tezos/BinaryCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/BinaryCoding.h -------------------------------------------------------------------------------- /src/Tezos/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Entry.cpp -------------------------------------------------------------------------------- /src/Tezos/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Entry.h -------------------------------------------------------------------------------- /src/Tezos/Forging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Forging.cpp -------------------------------------------------------------------------------- /src/Tezos/Forging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Forging.h -------------------------------------------------------------------------------- /src/Tezos/OperationList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/OperationList.cpp -------------------------------------------------------------------------------- /src/Tezos/OperationList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/OperationList.h -------------------------------------------------------------------------------- /src/Tezos/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Signer.cpp -------------------------------------------------------------------------------- /src/Tezos/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tezos/Signer.h -------------------------------------------------------------------------------- /src/Theta/Coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Theta/Coins.h -------------------------------------------------------------------------------- /src/Theta/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Theta/Entry.cpp -------------------------------------------------------------------------------- /src/Theta/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Theta/Entry.h -------------------------------------------------------------------------------- /src/Theta/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Theta/Signer.cpp -------------------------------------------------------------------------------- /src/Theta/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Theta/Signer.h -------------------------------------------------------------------------------- /src/Theta/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Theta/Transaction.cpp -------------------------------------------------------------------------------- /src/Theta/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Theta/Transaction.h -------------------------------------------------------------------------------- /src/Tron/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Address.cpp -------------------------------------------------------------------------------- /src/Tron/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Address.h -------------------------------------------------------------------------------- /src/Tron/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Entry.cpp -------------------------------------------------------------------------------- /src/Tron/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Entry.h -------------------------------------------------------------------------------- /src/Tron/Protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | *.cc 2 | *.h 3 | -------------------------------------------------------------------------------- /src/Tron/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Serialization.cpp -------------------------------------------------------------------------------- /src/Tron/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Serialization.h -------------------------------------------------------------------------------- /src/Tron/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Signer.cpp -------------------------------------------------------------------------------- /src/Tron/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Tron/Signer.h -------------------------------------------------------------------------------- /src/VeChain/Clause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/VeChain/Clause.h -------------------------------------------------------------------------------- /src/VeChain/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/VeChain/Entry.cpp -------------------------------------------------------------------------------- /src/VeChain/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/VeChain/Entry.h -------------------------------------------------------------------------------- /src/VeChain/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/VeChain/Signer.cpp -------------------------------------------------------------------------------- /src/VeChain/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/VeChain/Signer.h -------------------------------------------------------------------------------- /src/VeChain/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/VeChain/Transaction.cpp -------------------------------------------------------------------------------- /src/VeChain/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/VeChain/Transaction.h -------------------------------------------------------------------------------- /src/Wanchain/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Wanchain/Address.cpp -------------------------------------------------------------------------------- /src/Wanchain/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Wanchain/Address.h -------------------------------------------------------------------------------- /src/Wanchain/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Wanchain/Entry.cpp -------------------------------------------------------------------------------- /src/Wanchain/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Wanchain/Entry.h -------------------------------------------------------------------------------- /src/Wanchain/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Wanchain/Signer.cpp -------------------------------------------------------------------------------- /src/Wanchain/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Wanchain/Signer.h -------------------------------------------------------------------------------- /src/Waves/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Address.cpp -------------------------------------------------------------------------------- /src/Waves/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Address.h -------------------------------------------------------------------------------- /src/Waves/BinaryCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/BinaryCoding.h -------------------------------------------------------------------------------- /src/Waves/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Entry.cpp -------------------------------------------------------------------------------- /src/Waves/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Entry.h -------------------------------------------------------------------------------- /src/Waves/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Signer.cpp -------------------------------------------------------------------------------- /src/Waves/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Signer.h -------------------------------------------------------------------------------- /src/Waves/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Transaction.cpp -------------------------------------------------------------------------------- /src/Waves/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Waves/Transaction.h -------------------------------------------------------------------------------- /src/XXHash64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/XXHash64.h -------------------------------------------------------------------------------- /src/Zcash/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/Entry.cpp -------------------------------------------------------------------------------- /src/Zcash/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/Entry.h -------------------------------------------------------------------------------- /src/Zcash/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/Signer.cpp -------------------------------------------------------------------------------- /src/Zcash/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/Signer.h -------------------------------------------------------------------------------- /src/Zcash/TAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/TAddress.cpp -------------------------------------------------------------------------------- /src/Zcash/TAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/TAddress.h -------------------------------------------------------------------------------- /src/Zcash/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/Transaction.cpp -------------------------------------------------------------------------------- /src/Zcash/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/Transaction.h -------------------------------------------------------------------------------- /src/Zcash/TransactionBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zcash/TransactionBuilder.h -------------------------------------------------------------------------------- /src/Zilliqa/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/Address.cpp -------------------------------------------------------------------------------- /src/Zilliqa/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/Address.h -------------------------------------------------------------------------------- /src/Zilliqa/AddressChecksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/AddressChecksum.cpp -------------------------------------------------------------------------------- /src/Zilliqa/AddressChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/AddressChecksum.h -------------------------------------------------------------------------------- /src/Zilliqa/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/Entry.cpp -------------------------------------------------------------------------------- /src/Zilliqa/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/Entry.h -------------------------------------------------------------------------------- /src/Zilliqa/Protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | *.cc 2 | *.h 3 | -------------------------------------------------------------------------------- /src/Zilliqa/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/Signer.cpp -------------------------------------------------------------------------------- /src/Zilliqa/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/Zilliqa/Signer.h -------------------------------------------------------------------------------- /src/interface/TWAES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWAES.cpp -------------------------------------------------------------------------------- /src/interface/TWAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWAccount.cpp -------------------------------------------------------------------------------- /src/interface/TWAnyAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWAnyAddress.cpp -------------------------------------------------------------------------------- /src/interface/TWAnySigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWAnySigner.cpp -------------------------------------------------------------------------------- /src/interface/TWBase58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWBase58.cpp -------------------------------------------------------------------------------- /src/interface/TWBitcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWBitcoin.cpp -------------------------------------------------------------------------------- /src/interface/TWCoinType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWCoinType.cpp -------------------------------------------------------------------------------- /src/interface/TWData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWData.cpp -------------------------------------------------------------------------------- /src/interface/TWEthereumAbi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWEthereumAbi.cpp -------------------------------------------------------------------------------- /src/interface/TWFIOAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWFIOAccount.cpp -------------------------------------------------------------------------------- /src/interface/TWHDVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWHDVersion.cpp -------------------------------------------------------------------------------- /src/interface/TWHDWallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWHDWallet.cpp -------------------------------------------------------------------------------- /src/interface/TWHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWHash.cpp -------------------------------------------------------------------------------- /src/interface/TWNEARAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWNEARAccount.cpp -------------------------------------------------------------------------------- /src/interface/TWPrivateKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWPrivateKey.cpp -------------------------------------------------------------------------------- /src/interface/TWPublicKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWPublicKey.cpp -------------------------------------------------------------------------------- /src/interface/TWStoredKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWStoredKey.cpp -------------------------------------------------------------------------------- /src/interface/TWString+Hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWString+Hex.cpp -------------------------------------------------------------------------------- /src/interface/TWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/interface/TWString.cpp -------------------------------------------------------------------------------- /src/proto/.gitignore: -------------------------------------------------------------------------------- 1 | *.cc 2 | *.h 3 | -------------------------------------------------------------------------------- /src/proto/Aeternity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Aeternity.proto -------------------------------------------------------------------------------- /src/proto/Aion.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Aion.proto -------------------------------------------------------------------------------- /src/proto/Algorand.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Algorand.proto -------------------------------------------------------------------------------- /src/proto/Binance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Binance.proto -------------------------------------------------------------------------------- /src/proto/Bitcoin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Bitcoin.proto -------------------------------------------------------------------------------- /src/proto/Cosmos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Cosmos.proto -------------------------------------------------------------------------------- /src/proto/Decred.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Decred.proto -------------------------------------------------------------------------------- /src/proto/EOS.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/EOS.proto -------------------------------------------------------------------------------- /src/proto/Elrond.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Elrond.proto -------------------------------------------------------------------------------- /src/proto/Ethereum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Ethereum.proto -------------------------------------------------------------------------------- /src/proto/FIO.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/FIO.proto -------------------------------------------------------------------------------- /src/proto/Filecoin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Filecoin.proto -------------------------------------------------------------------------------- /src/proto/Harmony.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Harmony.proto -------------------------------------------------------------------------------- /src/proto/Icon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Icon.proto -------------------------------------------------------------------------------- /src/proto/IoTeX.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/IoTeX.proto -------------------------------------------------------------------------------- /src/proto/NEAR.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/NEAR.proto -------------------------------------------------------------------------------- /src/proto/NEO.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/NEO.proto -------------------------------------------------------------------------------- /src/proto/NULS.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/NULS.proto -------------------------------------------------------------------------------- /src/proto/Nano.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Nano.proto -------------------------------------------------------------------------------- /src/proto/Nebulas.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Nebulas.proto -------------------------------------------------------------------------------- /src/proto/Nimiq.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Nimiq.proto -------------------------------------------------------------------------------- /src/proto/Ontology.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Ontology.proto -------------------------------------------------------------------------------- /src/proto/Polkadot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Polkadot.proto -------------------------------------------------------------------------------- /src/proto/Ripple.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Ripple.proto -------------------------------------------------------------------------------- /src/proto/Solana.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Solana.proto -------------------------------------------------------------------------------- /src/proto/Stellar.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Stellar.proto -------------------------------------------------------------------------------- /src/proto/Tezos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Tezos.proto -------------------------------------------------------------------------------- /src/proto/Theta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Theta.proto -------------------------------------------------------------------------------- /src/proto/Tron.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Tron.proto -------------------------------------------------------------------------------- /src/proto/VeChain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/VeChain.proto -------------------------------------------------------------------------------- /src/proto/Waves.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Waves.proto -------------------------------------------------------------------------------- /src/proto/Zilliqa.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/proto/Zilliqa.proto -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/src/uint256.h -------------------------------------------------------------------------------- /swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/.gitignore -------------------------------------------------------------------------------- /swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Info.plist -------------------------------------------------------------------------------- /swift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Podfile -------------------------------------------------------------------------------- /swift/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Podfile.lock -------------------------------------------------------------------------------- /swift/Podfile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Podfile.patch -------------------------------------------------------------------------------- /swift/Sources/AnySigner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/AnySigner.swift -------------------------------------------------------------------------------- /swift/Sources/Dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/Dummy.cpp -------------------------------------------------------------------------------- /swift/Sources/KeyStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/KeyStore.swift -------------------------------------------------------------------------------- /swift/Sources/SecRandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/SecRandom.m -------------------------------------------------------------------------------- /swift/Sources/TWFoundationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/TWFoundationData.h -------------------------------------------------------------------------------- /swift/Sources/TWFoundationData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/TWFoundationData.m -------------------------------------------------------------------------------- /swift/Sources/Wallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/Wallet.swift -------------------------------------------------------------------------------- /swift/Sources/Watch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Sources/Watch.swift -------------------------------------------------------------------------------- /swift/Tests/AESTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Tests/AESTests.swift -------------------------------------------------------------------------------- /swift/Tests/Blockchains/Data: -------------------------------------------------------------------------------- 1 | ../../../tests/Ethereum/Data -------------------------------------------------------------------------------- /swift/Tests/CoinTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Tests/CoinTypeTests.swift -------------------------------------------------------------------------------- /swift/Tests/DataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Tests/DataTests.swift -------------------------------------------------------------------------------- /swift/Tests/HDWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Tests/HDWalletTests.swift -------------------------------------------------------------------------------- /swift/Tests/HashTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Tests/HashTests.swift -------------------------------------------------------------------------------- /swift/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Tests/Info.plist -------------------------------------------------------------------------------- /swift/Tests/Keystore/Data/watches.json: -------------------------------------------------------------------------------- 1 | [{"address":"0x008AeEda4D805471dF9b2A5B0f38A0C3bCBA786b","coin":60}] -------------------------------------------------------------------------------- /swift/Tests/PublicKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/Tests/PublicKeyTests.swift -------------------------------------------------------------------------------- /swift/cpp.xcconfig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/cpp.xcconfig.in -------------------------------------------------------------------------------- /swift/include: -------------------------------------------------------------------------------- 1 | ../include -------------------------------------------------------------------------------- /swift/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/project.yml -------------------------------------------------------------------------------- /swift/project.yml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/swift/project.yml.patch -------------------------------------------------------------------------------- /swift/protobuf: -------------------------------------------------------------------------------- 1 | ../build/local/src/protobuf/protobuf-3.9.0/src -------------------------------------------------------------------------------- /swift/trezor-crypto: -------------------------------------------------------------------------------- 1 | ../trezor-crypto -------------------------------------------------------------------------------- /swift/wallet-core: -------------------------------------------------------------------------------- 1 | ../src -------------------------------------------------------------------------------- /tests/Aeternity/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aeternity/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Aeternity/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aeternity/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Aion/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aion/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Aion/RLPTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aion/RLPTests.cpp -------------------------------------------------------------------------------- /tests/Aion/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aion/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Aion/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aion/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/Aion/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aion/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Aion/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Aion/TransactionTests.cpp -------------------------------------------------------------------------------- /tests/Algorand/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Algorand/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Algorand/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Algorand/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Base64Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Base64Tests.cpp -------------------------------------------------------------------------------- /tests/BaseEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/BaseEncoding.cpp -------------------------------------------------------------------------------- /tests/Bech32AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Bech32AddressTests.cpp -------------------------------------------------------------------------------- /tests/Binance/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Binance/SignerTests.cpp -------------------------------------------------------------------------------- /tests/BinaryCodingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/BinaryCodingTests.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Cardano/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Cardano/AddressTests.cpp -------------------------------------------------------------------------------- /tests/CborTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/CborTests.cpp -------------------------------------------------------------------------------- /tests/Cosmos/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Cosmos/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Cosmos/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Cosmos/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Cosmos/StakingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Cosmos/StakingTests.cpp -------------------------------------------------------------------------------- /tests/Cosmos/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Cosmos/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Dash/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Dash/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Dash/TWDashTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Dash/TWDashTests.cpp -------------------------------------------------------------------------------- /tests/Decred/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Decred/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Decred/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Decred/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Decred/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Decred/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Decred/TWDecredTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Decred/TWDecredTests.cpp -------------------------------------------------------------------------------- /tests/DerivationPathTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/DerivationPathTests.cpp -------------------------------------------------------------------------------- /tests/Dogecoin/TWDogeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Dogecoin/TWDogeTests.cpp -------------------------------------------------------------------------------- /tests/EOS/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EOS/AddressTests.cpp -------------------------------------------------------------------------------- /tests/EOS/AssetTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EOS/AssetTests.cpp -------------------------------------------------------------------------------- /tests/EOS/NameTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EOS/NameTests.cpp -------------------------------------------------------------------------------- /tests/EOS/SignatureTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EOS/SignatureTests.cpp -------------------------------------------------------------------------------- /tests/EOS/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EOS/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/EOS/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EOS/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/EOS/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EOS/TransactionTests.cpp -------------------------------------------------------------------------------- /tests/Elrond/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Elrond/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Elrond/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Elrond/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Elrond/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Elrond/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Elrond/TestAccounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Elrond/TestAccounts.h -------------------------------------------------------------------------------- /tests/EncryptTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/EncryptTests.cpp -------------------------------------------------------------------------------- /tests/Ethereum/AbiTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/AbiTests.cpp -------------------------------------------------------------------------------- /tests/Ethereum/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Ethereum/Data/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/Data/custom.json -------------------------------------------------------------------------------- /tests/Ethereum/Data/ens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/Data/ens.json -------------------------------------------------------------------------------- /tests/Ethereum/Data/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/Data/erc20.json -------------------------------------------------------------------------------- /tests/Ethereum/Data/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/Data/erc721.json -------------------------------------------------------------------------------- /tests/Ethereum/RLPTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/RLPTests.cpp -------------------------------------------------------------------------------- /tests/Ethereum/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ethereum/SignerTests.cpp -------------------------------------------------------------------------------- /tests/FIO/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/FIO/AddressTests.cpp -------------------------------------------------------------------------------- /tests/FIO/EncryptionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/FIO/EncryptionTests.cpp -------------------------------------------------------------------------------- /tests/FIO/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/FIO/SignerTests.cpp -------------------------------------------------------------------------------- /tests/FIO/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/FIO/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/FIO/TWFIOAccountTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/FIO/TWFIOAccountTests.cpp -------------------------------------------------------------------------------- /tests/FIO/TWFIOTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/FIO/TWFIOTests.cpp -------------------------------------------------------------------------------- /tests/Filecoin/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Filecoin/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Filecoin/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Filecoin/SignerTests.cpp -------------------------------------------------------------------------------- /tests/HDWalletTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/HDWalletTests.cpp -------------------------------------------------------------------------------- /tests/Harmony/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Harmony/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Harmony/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Harmony/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Harmony/StakingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Harmony/StakingTests.cpp -------------------------------------------------------------------------------- /tests/HashTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/HashTests.cpp -------------------------------------------------------------------------------- /tests/HexCodingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/HexCodingTests.cpp -------------------------------------------------------------------------------- /tests/ICON/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/ICON/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Icon/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Icon/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Icon/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Icon/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/IoTeX/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/IoTeX/AddressTests.cpp -------------------------------------------------------------------------------- /tests/IoTeX/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/IoTeX/SignerTests.cpp -------------------------------------------------------------------------------- /tests/IoTeX/StakingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/IoTeX/StakingTests.cpp -------------------------------------------------------------------------------- /tests/IoTeX/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/IoTeX/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/IoTeX/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/IoTeX/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Kava/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Kava/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Keystore/Data/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Keystore/Data/key.json -------------------------------------------------------------------------------- /tests/Keystore/Data/pbkdf2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Keystore/Data/pbkdf2.json -------------------------------------------------------------------------------- /tests/Keystore/Data/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Keystore/Data/wallet.json -------------------------------------------------------------------------------- /tests/Keystore/Data/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Keystore/Data/watch.json -------------------------------------------------------------------------------- /tests/Keystore/Data/web3j.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Keystore/Data/web3j.json -------------------------------------------------------------------------------- /tests/Kin/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Kin/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Kusama/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Kusama/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Kusama/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Kusama/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Kusama/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Kusama/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/NEAR/AccountTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEAR/AccountTests.cpp -------------------------------------------------------------------------------- /tests/NEAR/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEAR/AddressTests.cpp -------------------------------------------------------------------------------- /tests/NEAR/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEAR/SignerTests.cpp -------------------------------------------------------------------------------- /tests/NEAR/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEAR/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/NEAR/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEAR/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/NEO/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/AddressTests.cpp -------------------------------------------------------------------------------- /tests/NEO/CoinReferenceTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/CoinReferenceTests.cpp -------------------------------------------------------------------------------- /tests/NEO/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/SignerTests.cpp -------------------------------------------------------------------------------- /tests/NEO/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/NEO/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/NEO/TWNEOAddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/TWNEOAddressTests.cpp -------------------------------------------------------------------------------- /tests/NEO/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/TransactionTests.cpp -------------------------------------------------------------------------------- /tests/NEO/WitnessTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NEO/WitnessTests.cpp -------------------------------------------------------------------------------- /tests/NULS/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NULS/AddressTests.cpp -------------------------------------------------------------------------------- /tests/NULS/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NULS/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/NULS/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/NULS/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Nano/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nano/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Nano/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nano/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Nano/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nano/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/Nano/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nano/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Nebulas/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nebulas/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Nebulas/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nebulas/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Nimiq/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nimiq/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Nimiq/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nimiq/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Nimiq/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nimiq/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/Nimiq/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nimiq/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Nimiq/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Nimiq/TransactionTests.cpp -------------------------------------------------------------------------------- /tests/Ontology/AccountTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ontology/AccountTests.cpp -------------------------------------------------------------------------------- /tests/Ontology/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ontology/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Ontology/OngTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ontology/OngTests.cpp -------------------------------------------------------------------------------- /tests/Ontology/OntTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ontology/OntTests.cpp -------------------------------------------------------------------------------- /tests/Polkadot/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Polkadot/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Polkadot/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Polkadot/SignerTests.cpp -------------------------------------------------------------------------------- /tests/PrivateKeyTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/PrivateKeyTests.cpp -------------------------------------------------------------------------------- /tests/PublicKeyTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/PublicKeyTests.cpp -------------------------------------------------------------------------------- /tests/Qtum/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Qtum/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Ripple/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ripple/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Ripple/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Ripple/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Solana/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Solana/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Solana/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Solana/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Solana/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Solana/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Stellar/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Stellar/AddressTests.cpp -------------------------------------------------------------------------------- /tests/TON/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/TON/AddressTests.cpp -------------------------------------------------------------------------------- /tests/TON/CellTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/TON/CellTests.cpp -------------------------------------------------------------------------------- /tests/TON/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/TON/SignerTests.cpp -------------------------------------------------------------------------------- /tests/TON/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/TON/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/TON/TWTONAddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/TON/TWTONAddressTests.cpp -------------------------------------------------------------------------------- /tests/Terra/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Terra/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Tezos/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tezos/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Tezos/ForgingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tezos/ForgingTests.cpp -------------------------------------------------------------------------------- /tests/Tezos/PublicKeyTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tezos/PublicKeyTests.cpp -------------------------------------------------------------------------------- /tests/Tezos/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tezos/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Tezos/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tezos/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/Tezos/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tezos/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Theta/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Theta/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Theta/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Theta/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/Theta/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Theta/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Theta/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Theta/TransactionTests.cpp -------------------------------------------------------------------------------- /tests/Tron/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tron/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Tron/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tron/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Tron/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tron/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/Tron/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Tron/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/VeChain/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/VeChain/SignerTests.cpp -------------------------------------------------------------------------------- /tests/WalletConsoleTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/WalletConsoleTests.cpp -------------------------------------------------------------------------------- /tests/Wanchain/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Wanchain/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Wanchain/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Wanchain/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Waves/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Waves/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Waves/LeaseTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Waves/LeaseTests.cpp -------------------------------------------------------------------------------- /tests/Waves/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Waves/SignerTests.cpp -------------------------------------------------------------------------------- /tests/Waves/TWAnySignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Waves/TWAnySignerTests.cpp -------------------------------------------------------------------------------- /tests/Waves/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Waves/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Waves/TransactionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Waves/TransactionTests.cpp -------------------------------------------------------------------------------- /tests/Zcash/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Zcash/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Zcash/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Zcash/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Zcoin/TWCoinTypeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Zcoin/TWCoinTypeTests.cpp -------------------------------------------------------------------------------- /tests/Zilliqa/AddressTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Zilliqa/AddressTests.cpp -------------------------------------------------------------------------------- /tests/Zilliqa/SignatureTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Zilliqa/SignatureTests.cpp -------------------------------------------------------------------------------- /tests/Zilliqa/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/Zilliqa/SignerTests.cpp -------------------------------------------------------------------------------- /tests/interface/TWAESTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/interface/TWAESTests.cpp -------------------------------------------------------------------------------- /tests/interface/TWDataTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/interface/TWDataTests.cpp -------------------------------------------------------------------------------- /tests/interface/TWHRPTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/interface/TWHRPTests.cpp -------------------------------------------------------------------------------- /tests/interface/TWHashTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/interface/TWHashTests.cpp -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tools/android-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/android-build -------------------------------------------------------------------------------- /tools/android-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/android-release.sh -------------------------------------------------------------------------------- /tools/android-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/android-test -------------------------------------------------------------------------------- /tools/cmake_legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/cmake_legacy -------------------------------------------------------------------------------- /tools/codegen-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/codegen-test -------------------------------------------------------------------------------- /tools/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/coverage -------------------------------------------------------------------------------- /tools/generate-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/generate-files -------------------------------------------------------------------------------- /tools/install-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/install-dependencies -------------------------------------------------------------------------------- /tools/ios-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/ios-build -------------------------------------------------------------------------------- /tools/ios-build-framework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/ios-build-framework -------------------------------------------------------------------------------- /tools/ios-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/ios-release -------------------------------------------------------------------------------- /tools/ios-release-framework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/ios-release-framework -------------------------------------------------------------------------------- /tools/ios-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/ios-test -------------------------------------------------------------------------------- /tools/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/lint -------------------------------------------------------------------------------- /tools/lint-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/lint-all -------------------------------------------------------------------------------- /tools/lint-cppcheck-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/lint-cppcheck-all -------------------------------------------------------------------------------- /tools/lint-cppcheck-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/lint-cppcheck-diff -------------------------------------------------------------------------------- /tools/maven-android-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/maven-android-upload -------------------------------------------------------------------------------- /tools/samples-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/samples-build -------------------------------------------------------------------------------- /tools/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/tools/tests -------------------------------------------------------------------------------- /trezor-crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/.gitignore -------------------------------------------------------------------------------- /trezor-crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/AUTHORS -------------------------------------------------------------------------------- /trezor-crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/CMakeLists.txt -------------------------------------------------------------------------------- /trezor-crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /trezor-crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/LICENSE -------------------------------------------------------------------------------- /trezor-crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/README.md -------------------------------------------------------------------------------- /trezor-crypto/src/address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/address.c -------------------------------------------------------------------------------- /trezor-crypto/src/aes/aescrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/aes/aescrypt.c -------------------------------------------------------------------------------- /trezor-crypto/src/aes/aeskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/aes/aeskey.c -------------------------------------------------------------------------------- /trezor-crypto/src/aes/aesopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/aes/aesopt.h -------------------------------------------------------------------------------- /trezor-crypto/src/aes/aestab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/aes/aestab.c -------------------------------------------------------------------------------- /trezor-crypto/src/aes/aestab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/aes/aestab.h -------------------------------------------------------------------------------- /trezor-crypto/src/base32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/base32.c -------------------------------------------------------------------------------- /trezor-crypto/src/base58.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/base58.c -------------------------------------------------------------------------------- /trezor-crypto/src/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/bignum.c -------------------------------------------------------------------------------- /trezor-crypto/src/bip32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/bip32.c -------------------------------------------------------------------------------- /trezor-crypto/src/bip39.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/bip39.c -------------------------------------------------------------------------------- /trezor-crypto/src/blake256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/blake256.c -------------------------------------------------------------------------------- /trezor-crypto/src/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/blake2b.c -------------------------------------------------------------------------------- /trezor-crypto/src/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/blake2s.c -------------------------------------------------------------------------------- /trezor-crypto/src/cash_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/cash_addr.c -------------------------------------------------------------------------------- /trezor-crypto/src/check_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/check_mem.h -------------------------------------------------------------------------------- /trezor-crypto/src/curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/curves.c -------------------------------------------------------------------------------- /trezor-crypto/src/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/ecdsa.c -------------------------------------------------------------------------------- /trezor-crypto/src/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/groestl.c -------------------------------------------------------------------------------- /trezor-crypto/src/hasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/hasher.c -------------------------------------------------------------------------------- /trezor-crypto/src/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/hmac.c -------------------------------------------------------------------------------- /trezor-crypto/src/memzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/memzero.c -------------------------------------------------------------------------------- /trezor-crypto/src/monero/xmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/monero/xmr.c -------------------------------------------------------------------------------- /trezor-crypto/src/nano.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/nano.c -------------------------------------------------------------------------------- /trezor-crypto/src/nem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/nem.c -------------------------------------------------------------------------------- /trezor-crypto/src/nist256p1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/nist256p1.c -------------------------------------------------------------------------------- /trezor-crypto/src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/options.h -------------------------------------------------------------------------------- /trezor-crypto/src/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/pbkdf2.c -------------------------------------------------------------------------------- /trezor-crypto/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/rand.c -------------------------------------------------------------------------------- /trezor-crypto/src/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/rc4.c -------------------------------------------------------------------------------- /trezor-crypto/src/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/ripemd160.c -------------------------------------------------------------------------------- /trezor-crypto/src/schnorr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/schnorr.c -------------------------------------------------------------------------------- /trezor-crypto/src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/script.c -------------------------------------------------------------------------------- /trezor-crypto/src/scrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/scrypt.c -------------------------------------------------------------------------------- /trezor-crypto/src/secp256k1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/secp256k1.c -------------------------------------------------------------------------------- /trezor-crypto/src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/setup.py -------------------------------------------------------------------------------- /trezor-crypto/src/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/sha2.c -------------------------------------------------------------------------------- /trezor-crypto/src/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/sha3.c -------------------------------------------------------------------------------- /trezor-crypto/src/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/src/shell.nix -------------------------------------------------------------------------------- /trezor-crypto/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/test.db -------------------------------------------------------------------------------- /trezor-crypto/tests/aestst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/tests/aestst.c -------------------------------------------------------------------------------- /trezor-crypto/tests/aestst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/tests/aestst.h -------------------------------------------------------------------------------- /trezor-crypto/tests/test_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/tests/test_check.c -------------------------------------------------------------------------------- /trezor-crypto/tests/test_speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/tests/test_speed.c -------------------------------------------------------------------------------- /trezor-crypto/tools/.gitignore: -------------------------------------------------------------------------------- 1 | xpubaddrgen 2 | mktable 3 | bip39bruteforce 4 | -------------------------------------------------------------------------------- /trezor-crypto/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/tools/README.md -------------------------------------------------------------------------------- /trezor-crypto/tools/mktable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/trezor-crypto/tools/mktable.c -------------------------------------------------------------------------------- /typescript/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | src/generated/ 3 | -------------------------------------------------------------------------------- /typescript/codegen/bin/codegen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/typescript/codegen/bin/codegen -------------------------------------------------------------------------------- /typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/typescript/package.json -------------------------------------------------------------------------------- /typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/typescript/src/index.ts -------------------------------------------------------------------------------- /typescript/tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/typescript/tests/index.test.ts -------------------------------------------------------------------------------- /typescript/tools/set-tag-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/typescript/tools/set-tag-version -------------------------------------------------------------------------------- /typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/typescript/tsconfig.json -------------------------------------------------------------------------------- /typescript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/typescript/yarn.lock -------------------------------------------------------------------------------- /wallet_core.srctrlprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/wallet_core.srctrlprj -------------------------------------------------------------------------------- /walletconsole/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/CMakeLists.txt -------------------------------------------------------------------------------- /walletconsole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/README.md -------------------------------------------------------------------------------- /walletconsole/lib/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Address.cpp -------------------------------------------------------------------------------- /walletconsole/lib/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Address.h -------------------------------------------------------------------------------- /walletconsole/lib/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Buffer.cpp -------------------------------------------------------------------------------- /walletconsole/lib/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Buffer.h -------------------------------------------------------------------------------- /walletconsole/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/CMakeLists.txt -------------------------------------------------------------------------------- /walletconsole/lib/Coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Coins.cpp -------------------------------------------------------------------------------- /walletconsole/lib/Coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Coins.h -------------------------------------------------------------------------------- /walletconsole/lib/Keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Keys.cpp -------------------------------------------------------------------------------- /walletconsole/lib/Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Keys.h -------------------------------------------------------------------------------- /walletconsole/lib/TonCoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/TonCoin.h -------------------------------------------------------------------------------- /walletconsole/lib/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Util.cpp -------------------------------------------------------------------------------- /walletconsole/lib/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/lib/Util.h -------------------------------------------------------------------------------- /walletconsole/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchain/wallet-core/HEAD/walletconsole/main.cpp --------------------------------------------------------------------------------