├── .gitignore ├── API Reference .md ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── AFNetworking │ │ ├── AFNetworking │ │ │ ├── AFCompatibilityMacros.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── LICENSE │ │ ├── README.md │ │ └── UIKit+AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFAutoPurgingImageCache.m │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFImageDownloader.m │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.m │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.m │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ ├── WKWebView+AFNetworking.h │ │ │ └── WKWebView+AFNetworking.m │ ├── Local Podspecs │ │ └── ThorWalletSDK.podspec.json │ ├── MBProgressHUD │ │ ├── LICENSE │ │ ├── MBProgressHUD.h │ │ ├── MBProgressHUD.m │ │ └── README.mdown │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── SocketRocket │ │ ├── LICENSE │ │ ├── README.rst │ │ └── SocketRocket │ │ │ ├── SRWebSocket.h │ │ │ └── SRWebSocket.m │ ├── Target Support Files │ │ ├── AFNetworking │ │ │ ├── AFNetworking-Info.plist │ │ │ ├── AFNetworking-dummy.m │ │ │ ├── AFNetworking-prefix.pch │ │ │ ├── AFNetworking-umbrella.h │ │ │ ├── AFNetworking.debug.xcconfig │ │ │ ├── AFNetworking.modulemap │ │ │ └── AFNetworking.release.xcconfig │ │ ├── MBProgressHUD │ │ │ ├── MBProgressHUD-Info.plist │ │ │ ├── MBProgressHUD-dummy.m │ │ │ ├── MBProgressHUD-prefix.pch │ │ │ ├── MBProgressHUD-umbrella.h │ │ │ ├── MBProgressHUD.debug.xcconfig │ │ │ ├── MBProgressHUD.modulemap │ │ │ └── MBProgressHUD.release.xcconfig │ │ ├── Pods-ThorWalletSDK_Example │ │ │ ├── Pods-ThorWalletSDK_Example-Info.plist │ │ │ ├── Pods-ThorWalletSDK_Example-acknowledgements.markdown │ │ │ ├── Pods-ThorWalletSDK_Example-acknowledgements.plist │ │ │ ├── Pods-ThorWalletSDK_Example-dummy.m │ │ │ ├── Pods-ThorWalletSDK_Example-frameworks.sh │ │ │ ├── Pods-ThorWalletSDK_Example-umbrella.h │ │ │ ├── Pods-ThorWalletSDK_Example.debug.xcconfig │ │ │ ├── Pods-ThorWalletSDK_Example.modulemap │ │ │ └── Pods-ThorWalletSDK_Example.release.xcconfig │ │ ├── Pods-ThorWalletSDK_Tests │ │ │ ├── Pods-ThorWalletSDK_Tests-Info.plist │ │ │ ├── Pods-ThorWalletSDK_Tests-acknowledgements.markdown │ │ │ ├── Pods-ThorWalletSDK_Tests-acknowledgements.plist │ │ │ ├── Pods-ThorWalletSDK_Tests-dummy.m │ │ │ ├── Pods-ThorWalletSDK_Tests-umbrella.h │ │ │ ├── Pods-ThorWalletSDK_Tests.debug.xcconfig │ │ │ ├── Pods-ThorWalletSDK_Tests.modulemap │ │ │ └── Pods-ThorWalletSDK_Tests.release.xcconfig │ │ ├── SocketRocket │ │ │ ├── SocketRocket-Info.plist │ │ │ ├── SocketRocket-dummy.m │ │ │ ├── SocketRocket-prefix.pch │ │ │ ├── SocketRocket-umbrella.h │ │ │ ├── SocketRocket.debug.xcconfig │ │ │ ├── SocketRocket.modulemap │ │ │ └── SocketRocket.release.xcconfig │ │ ├── ThorWalletSDK │ │ │ ├── ThorWalletSDK-Info.plist │ │ │ ├── ThorWalletSDK-dummy.m │ │ │ ├── ThorWalletSDK-prefix.pch │ │ │ ├── ThorWalletSDK-umbrella.h │ │ │ ├── ThorWalletSDK.debug.xcconfig │ │ │ ├── ThorWalletSDK.modulemap │ │ │ └── ThorWalletSDK.release.xcconfig │ │ └── YYModel │ │ │ ├── YYModel-Info.plist │ │ │ ├── YYModel-dummy.m │ │ │ ├── YYModel-prefix.pch │ │ │ ├── YYModel-umbrella.h │ │ │ ├── YYModel.debug.xcconfig │ │ │ ├── YYModel.modulemap │ │ │ └── YYModel.release.xcconfig │ └── YYModel │ │ ├── LICENSE │ │ ├── README.md │ │ └── YYModel │ │ ├── NSObject+YYModel.h │ │ ├── NSObject+YYModel.m │ │ ├── YYClassInfo.h │ │ ├── YYClassInfo.m │ │ └── YYModel.h ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── ThorWalletSDK.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ThorWalletSDK.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── ThorWalletSDK │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── English.lproj │ └── Localizable.strings │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── VET.imageset │ │ ├── Contents.json │ │ ├── logo_list@2x.png │ │ └── logo_list@3x.png │ ├── VTHO.imageset │ │ ├── Contents.json │ │ └── VTHO@3x-2.png │ └── more.imageset │ │ ├── Contents.json │ │ ├── more@2x.png │ │ └── more@3x.png │ ├── Main.storyboard │ ├── Modules │ ├── CreateWallet │ │ ├── Base.lproj │ │ │ └── WalletCreateVC.xib │ │ ├── WalletCreateVC.h │ │ ├── WalletCreateVC.m │ │ └── zh-Hans.lproj │ │ │ └── WalletCreateVC.strings │ ├── DApp │ │ ├── DAppWebViewVC.h │ │ └── DAppWebViewVC.m │ ├── ImportWallet │ │ ├── Base.lproj │ │ │ ├── WalletKeystoreImportVC.xib │ │ │ ├── WalletMnemonicImportVC.xib │ │ │ └── WalletRecoverMainVC.xib │ │ ├── WalletKeystoreImportVC.h │ │ ├── WalletKeystoreImportVC.m │ │ ├── WalletMnemonicImportVC.h │ │ ├── WalletMnemonicImportVC.m │ │ ├── WalletRecoverMainVC.h │ │ ├── WalletRecoverMainVC.m │ │ └── zh-Hans.lproj │ │ │ ├── WalletKeystoreImportVC.strings │ │ │ ├── WalletMnemonicImportVC.strings │ │ │ └── WalletRecoverMainVC.strings │ ├── ManageWallet │ │ ├── Base.lproj │ │ │ └── WalletChangePWVC.xib │ │ ├── WalletChangePWVC.h │ │ ├── WalletChangePWVC.m │ │ └── zh-Hans.lproj │ │ │ └── WalletChangePWVC.strings │ ├── Setting │ │ ├── WalletAddVthoNodeVC.h │ │ ├── WalletAddVthoNodeVC.m │ │ ├── WalletAddVthoNodeVC.xib │ │ ├── WalletChooseNodeView.h │ │ ├── WalletChooseNodeView.m │ │ ├── WalletNodeDetailVC.h │ │ ├── WalletNodeDetailVC.m │ │ └── WalletNodeDetailVC.xib │ ├── ThorTest.h │ ├── ThorTest.m │ ├── Transfer │ │ ├── Base.lproj │ │ │ └── WalletTransferVC.xib │ │ ├── WalletTransferVC.h │ │ ├── WalletTransferVC.m │ │ └── zh-Hans.lproj │ │ │ └── WalletTransferVC.strings │ ├── Utils │ │ ├── WalletDemoTool.h │ │ ├── WalletDemoTool.m │ │ ├── WalletMBProgressShower.h │ │ └── WalletMBProgressShower.m │ └── WalletDetail │ │ ├── Base.lproj │ │ ├── WalletDetailVC.xib │ │ └── WalletMoreInfoVC.xib │ │ ├── WalletDetailVC.h │ │ ├── WalletDetailVC.m │ │ ├── WalletMoreInfoVC.h │ │ ├── WalletMoreInfoVC.m │ │ └── zh-Hans.lproj │ │ ├── WalletDetailVC.strings │ │ └── WalletMoreInfoVC.strings │ ├── PrefixHeader.pch │ ├── ThorAppDelegate.h │ ├── ThorAppDelegate.m │ ├── ThorViewController.h │ ├── ThorViewController.m │ ├── ThorViewController.xib │ ├── ThorWalletSDK-Info.plist │ ├── ThorWalletSDK-Prefix.pch │ ├── WalletDemoMacro.h │ ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings │ ├── main.m │ └── zh-Hans.lproj │ └── Localizable.strings ├── LICENSE ├── README.md ├── ThorWalletSDK.podspec ├── ThorWalletSDK ├── Assets │ └── ThorWalletSDKBundle.bundle │ │ ├── Info.plist │ │ ├── ThorWalletSDKBundle │ │ ├── _CodeSignature │ │ └── CodeResources │ │ ├── connex.js │ │ ├── en.lproj │ │ └── Localizable.strings │ │ ├── web3.js │ │ └── zh-Hans.lproj │ │ └── Localizable.strings └── Classes │ ├── .gitkeep │ ├── BasicWallet │ ├── Account.h │ ├── Account.m │ ├── Address.h │ ├── Address.m │ ├── BigNumber.h │ ├── BigNumber.m │ ├── Hash.h │ ├── Hash.m │ ├── Payment.h │ ├── Payment.m │ ├── Signature.h │ ├── Signature.m │ ├── Transaction.h │ ├── Transaction.m │ ├── Utilities │ │ ├── RLPSerialization.h │ │ ├── RLPSerialization.m │ │ ├── RegEx.h │ │ ├── RegEx.m │ │ ├── SecureData.h │ │ ├── SecureData.m │ │ ├── Utilities.h │ │ └── Utilities.m │ ├── WalletHeader.h │ ├── WalletSendTranfer.h │ ├── WalletSendTranfer.m │ ├── WalletUtils.h │ └── WalletUtils.m │ ├── DApp │ ├── Api │ │ ├── Base │ │ │ ├── WalletBaseApi.h │ │ │ ├── WalletBaseApi.m │ │ │ ├── WalletModelFetcher.h │ │ │ └── WalletModelFetcher.m │ │ ├── WalletAccountCodeApi.h │ │ ├── WalletAccountCodeApi.m │ │ ├── WalletBestBlockInfoApi.h │ │ ├── WalletBestBlockInfoApi.m │ │ ├── WalletBlockApi.h │ │ ├── WalletBlockApi.m │ │ ├── WalletCheckVersionApi.h │ │ ├── WalletCheckVersionApi.m │ │ ├── WalletDAppPeersApi.h │ │ ├── WalletDAppPeersApi.m │ │ ├── WalletDAppTransferDetailApi.h │ │ ├── WalletDAppTransferDetailApi.m │ │ ├── WalletDappLogEventApi.h │ │ ├── WalletDappLogEventApi.m │ │ ├── WalletDappLogTransferApi.h │ │ ├── WalletDappLogTransferApi.m │ │ ├── WalletDappSimulateAccountApi.h │ │ ├── WalletDappSimulateAccountApi.m │ │ ├── WalletDappSimulateMultiAccountApi.h │ │ ├── WalletDappSimulateMultiAccountApi.m │ │ ├── WalletGenesisBlockInfoApi.h │ │ ├── WalletGenesisBlockInfoApi.m │ │ ├── WalletGetStorageApi.h │ │ ├── WalletGetStorageApi.m │ │ ├── WalletSDKMacro.h │ │ ├── WalletTransactionApi.h │ │ ├── WalletTransactionApi.m │ │ ├── WalletTransantionsReceiptApi.h │ │ ├── WalletTransantionsReceiptApi.m │ │ ├── WalletUserDefaultManager.h │ │ ├── WalletUserDefaultManager.m │ │ ├── WalletVETBalanceApi.h │ │ └── WalletVETBalanceApi.m │ ├── Category │ │ ├── NSJSONSerialization+NilDataParameter.h │ │ ├── NSJSONSerialization+NilDataParameter.m │ │ ├── NSMutableDictionary+Helpers.h │ │ ├── NSMutableDictionary+Helpers.m │ │ ├── NSObject+LKModel.h │ │ └── NSObject+LKModel.m │ ├── DAppHandle │ │ ├── WalletDAppGasCalculateHandle.h │ │ ├── WalletDAppGasCalculateHandle.m │ │ ├── WalletDAppHandle+connexJS.h │ │ ├── WalletDAppHandle+connexJS.m │ │ ├── WalletDAppHandle+transfer.h │ │ ├── WalletDAppHandle+transfer.m │ │ ├── WalletDAppHandle+web3JS.h │ │ ├── WalletDAppHandle+web3JS.m │ │ ├── WalletDAppHandle.h │ │ ├── WalletDAppHandle.m │ │ ├── WalletDAppHeader.h │ │ ├── WalletDAppInjectJSHandle.h │ │ └── WalletDAppInjectJSHandle.m │ └── Model │ │ ├── WalletAccountModel.h │ │ ├── WalletAccountModel.m │ │ ├── WalletBalanceModel.h │ │ ├── WalletBalanceModel.m │ │ ├── WalletBaseModel.h │ │ ├── WalletBaseModel.m │ │ ├── WalletBlockInfoModel.h │ │ ├── WalletBlockInfoModel.m │ │ ├── WalletDAppPeerModel.h │ │ ├── WalletDAppPeerModel.m │ │ ├── WalletJSCallbackModel.h │ │ ├── WalletJSCallbackModel.m │ │ ├── WalletManageModel.h │ │ ├── WalletManageModel.m │ │ ├── WalletTools.h │ │ ├── WalletTools.m │ │ ├── WalletTransactionParameter.h │ │ ├── WalletTransactionParameter.m │ │ ├── WalletTransantionsReceiptModel.h │ │ ├── WalletTransantionsReceiptModel.m │ │ ├── WalletVersionModel.h │ │ └── WalletVersionModel.m │ └── Lib │ ├── Blake2 │ ├── blake2-impl.h │ ├── blake2.h │ ├── blake2b-ref.c │ ├── blake2bp-ref.c │ ├── blake2s-ref.c │ ├── blake2sp-ref.c │ ├── blake2xb-ref.c │ └── blake2xs-ref.c │ ├── WebSocket │ ├── SocketRocketUtility.h │ └── SocketRocketUtility.m │ ├── crypto │ ├── aes.h │ ├── aes_modes.c │ ├── aescrypt.c │ ├── aeskey.c │ ├── aesopt.h │ ├── aestab.c │ ├── aestab.h │ ├── base58.c │ ├── base58.h │ ├── bignum.c │ ├── bignum.h │ ├── bip32.c │ ├── bip32.h │ ├── bip39.c │ ├── bip39.h │ ├── bip39_english.h │ ├── ccMemory.h │ ├── curves.c │ ├── curves.h │ ├── ecdsa.c │ ├── ecdsa.h │ ├── hmac.c │ ├── hmac.h │ ├── macros.h │ ├── options.h │ ├── pbkdf2.c │ ├── pbkdf2.h │ ├── rand.c │ ├── rand.h │ ├── ripemd160.c │ ├── ripemd160.h │ ├── secp256k1.c │ ├── secp256k1.h │ ├── secp256k1.table │ ├── sha2.c │ ├── sha2.h │ ├── sha3.c │ └── sha3.h │ ├── libtommath-1.0 │ ├── mpi.c │ ├── tommath.h │ ├── tommath_class.h │ ├── tommath_private.h │ └── tommath_superclass.h │ └── scrypt-1.1.6 │ ├── crypto_scrypt-nosse.c │ ├── crypto_scrypt.h │ ├── scrypt_sha256.c │ ├── scrypt_sha256.h │ └── sysendian.h ├── WordsList.txt └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /API Reference .md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/API Reference .md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFCompatibilityMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFCompatibilityMacros.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/WKWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/WKWebView+AFNetworking.h -------------------------------------------------------------------------------- /Example/Pods/AFNetworking/UIKit+AFNetworking/WKWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/AFNetworking/UIKit+AFNetworking/WKWebView+AFNetworking.m -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ThorWalletSDK.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Local Podspecs/ThorWalletSDK.podspec.json -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Example/Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/SocketRocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/SocketRocket/LICENSE -------------------------------------------------------------------------------- /Example/Pods/SocketRocket/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/SocketRocket/README.rst -------------------------------------------------------------------------------- /Example/Pods/SocketRocket/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/SocketRocket/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /Example/Pods/SocketRocket/SocketRocket/SRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/SocketRocket/SocketRocket/SRWebSocket.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AFNetworking/AFNetworking-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/AFNetworking/AFNetworking-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AFNetworking/AFNetworking.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/AFNetworking/AFNetworking.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AFNetworking/AFNetworking.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/AFNetworking/AFNetworking.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AFNetworking/AFNetworking.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/AFNetworking/AFNetworking.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Example/Pods-ThorWalletSDK_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/Pods-ThorWalletSDK_Tests/Pods-ThorWalletSDK_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SocketRocket/SocketRocket-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/SocketRocket/SocketRocket-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SocketRocket/SocketRocket.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/SocketRocket/SocketRocket.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SocketRocket/SocketRocket.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/SocketRocket/SocketRocket.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SocketRocket/SocketRocket.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/SocketRocket/SocketRocket.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/ThorWalletSDK/ThorWalletSDK.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/YYModel/YYModel.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/YYModel/YYModel.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/Target Support Files/YYModel/YYModel.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/YYModel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/YYModel/LICENSE -------------------------------------------------------------------------------- /Example/Pods/YYModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/YYModel/README.md -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/NSObject+YYModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/YYModel/YYModel/NSObject+YYModel.h -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/NSObject+YYModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/YYModel/YYModel/NSObject+YYModel.m -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/YYClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/YYModel/YYModel/YYClassInfo.h -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/YYClassInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/YYModel/YYModel/YYClassInfo.m -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/YYModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Pods/YYModel/YYModel/YYModel.h -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ThorWalletSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ThorWalletSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ThorWalletSDK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ThorWalletSDK.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ThorWalletSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ThorWalletSDK/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/VET.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/VET.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/VET.imageset/logo_list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/VET.imageset/logo_list@2x.png -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/VET.imageset/logo_list@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/VET.imageset/logo_list@3x.png -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/VTHO.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/VTHO.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/VTHO.imageset/VTHO@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/VTHO.imageset/VTHO@3x-2.png -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/more.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/more.imageset/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/more.imageset/more@2x.png -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Images.xcassets/more.imageset/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Images.xcassets/more.imageset/more@3x.png -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Main.storyboard -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/CreateWallet/Base.lproj/WalletCreateVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/CreateWallet/Base.lproj/WalletCreateVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/CreateWallet/WalletCreateVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/CreateWallet/WalletCreateVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/CreateWallet/WalletCreateVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/CreateWallet/WalletCreateVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/CreateWallet/zh-Hans.lproj/WalletCreateVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/CreateWallet/zh-Hans.lproj/WalletCreateVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/DApp/DAppWebViewVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/DApp/DAppWebViewVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/DApp/DAppWebViewVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/DApp/DAppWebViewVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/Base.lproj/WalletKeystoreImportVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/Base.lproj/WalletKeystoreImportVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/Base.lproj/WalletMnemonicImportVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/Base.lproj/WalletMnemonicImportVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/Base.lproj/WalletRecoverMainVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/Base.lproj/WalletRecoverMainVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/WalletKeystoreImportVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/WalletKeystoreImportVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/WalletKeystoreImportVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/WalletKeystoreImportVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/WalletMnemonicImportVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/WalletMnemonicImportVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/WalletMnemonicImportVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/WalletMnemonicImportVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/WalletRecoverMainVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/WalletRecoverMainVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/WalletRecoverMainVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/WalletRecoverMainVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/zh-Hans.lproj/WalletKeystoreImportVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/zh-Hans.lproj/WalletKeystoreImportVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/zh-Hans.lproj/WalletMnemonicImportVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/zh-Hans.lproj/WalletMnemonicImportVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ImportWallet/zh-Hans.lproj/WalletRecoverMainVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ImportWallet/zh-Hans.lproj/WalletRecoverMainVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ManageWallet/Base.lproj/WalletChangePWVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ManageWallet/Base.lproj/WalletChangePWVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ManageWallet/WalletChangePWVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ManageWallet/WalletChangePWVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ManageWallet/WalletChangePWVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ManageWallet/WalletChangePWVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ManageWallet/zh-Hans.lproj/WalletChangePWVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ManageWallet/zh-Hans.lproj/WalletChangePWVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletAddVthoNodeVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletAddVthoNodeVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletAddVthoNodeVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletAddVthoNodeVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletAddVthoNodeVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletAddVthoNodeVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletChooseNodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletChooseNodeView.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletChooseNodeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletChooseNodeView.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletNodeDetailVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletNodeDetailVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletNodeDetailVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletNodeDetailVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Setting/WalletNodeDetailVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Setting/WalletNodeDetailVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ThorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ThorTest.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/ThorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/ThorTest.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Transfer/Base.lproj/WalletTransferVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Transfer/Base.lproj/WalletTransferVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Transfer/WalletTransferVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Transfer/WalletTransferVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Transfer/WalletTransferVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Transfer/WalletTransferVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Transfer/zh-Hans.lproj/WalletTransferVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Transfer/zh-Hans.lproj/WalletTransferVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Utils/WalletDemoTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Utils/WalletDemoTool.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Utils/WalletDemoTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Utils/WalletDemoTool.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Utils/WalletMBProgressShower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Utils/WalletMBProgressShower.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/Utils/WalletMBProgressShower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/Utils/WalletMBProgressShower.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/Base.lproj/WalletDetailVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/Base.lproj/WalletDetailVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/Base.lproj/WalletMoreInfoVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/Base.lproj/WalletMoreInfoVC.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/WalletDetailVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/WalletDetailVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/WalletDetailVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/WalletDetailVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/WalletMoreInfoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/WalletMoreInfoVC.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/WalletMoreInfoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/WalletMoreInfoVC.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/zh-Hans.lproj/WalletDetailVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/zh-Hans.lproj/WalletDetailVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/Modules/WalletDetail/zh-Hans.lproj/WalletMoreInfoVC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/Modules/WalletDetail/zh-Hans.lproj/WalletMoreInfoVC.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/PrefixHeader.pch -------------------------------------------------------------------------------- /Example/ThorWalletSDK/ThorAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/ThorAppDelegate.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/ThorAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/ThorAppDelegate.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/ThorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/ThorViewController.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/ThorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/ThorViewController.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/ThorViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/ThorViewController.xib -------------------------------------------------------------------------------- /Example/ThorWalletSDK/ThorWalletSDK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/ThorWalletSDK-Info.plist -------------------------------------------------------------------------------- /Example/ThorWalletSDK/ThorWalletSDK-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/ThorWalletSDK-Prefix.pch -------------------------------------------------------------------------------- /Example/ThorWalletSDK/WalletDemoMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/WalletDemoMacro.h -------------------------------------------------------------------------------- /Example/ThorWalletSDK/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ThorWalletSDK/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/ThorWalletSDK/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/main.m -------------------------------------------------------------------------------- /Example/ThorWalletSDK/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/Example/ThorWalletSDK/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/README.md -------------------------------------------------------------------------------- /ThorWalletSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK.podspec -------------------------------------------------------------------------------- /ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/Info.plist -------------------------------------------------------------------------------- /ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/ThorWalletSDKBundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/ThorWalletSDKBundle -------------------------------------------------------------------------------- /ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/connex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/connex.js -------------------------------------------------------------------------------- /ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/web3.js -------------------------------------------------------------------------------- /ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Assets/ThorWalletSDKBundle.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Account.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Account.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Account.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Address.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Address.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Address.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/BigNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/BigNumber.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/BigNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/BigNumber.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Hash.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Hash.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Payment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Payment.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Payment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Payment.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Signature.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Signature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Signature.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Transaction.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Transaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Transaction.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/RLPSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/RLPSerialization.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/RLPSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/RLPSerialization.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/RegEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/RegEx.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/RegEx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/RegEx.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/SecureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/SecureData.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/SecureData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/SecureData.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/Utilities.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/Utilities/Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/Utilities/Utilities.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/WalletHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/WalletHeader.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/WalletSendTranfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/WalletSendTranfer.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/WalletSendTranfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/WalletSendTranfer.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/WalletUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/WalletUtils.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/BasicWallet/WalletUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/BasicWallet/WalletUtils.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/Base/WalletBaseApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/Base/WalletBaseApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/Base/WalletBaseApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/Base/WalletBaseApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/Base/WalletModelFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/Base/WalletModelFetcher.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/Base/WalletModelFetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/Base/WalletModelFetcher.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletAccountCodeApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletAccountCodeApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletAccountCodeApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletAccountCodeApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletBestBlockInfoApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletBestBlockInfoApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletBestBlockInfoApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletBestBlockInfoApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletBlockApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletBlockApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletBlockApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletBlockApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletCheckVersionApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletCheckVersionApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletCheckVersionApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletCheckVersionApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDAppPeersApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDAppPeersApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDAppPeersApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDAppPeersApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDAppTransferDetailApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDAppTransferDetailApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDAppTransferDetailApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDAppTransferDetailApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappLogEventApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappLogEventApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappLogEventApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappLogEventApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappLogTransferApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappLogTransferApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappLogTransferApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappLogTransferApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateAccountApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateAccountApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateAccountApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateAccountApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateMultiAccountApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateMultiAccountApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateMultiAccountApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletDappSimulateMultiAccountApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletGenesisBlockInfoApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletGenesisBlockInfoApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletGenesisBlockInfoApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletGenesisBlockInfoApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletGetStorageApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletGetStorageApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletGetStorageApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletGetStorageApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletSDKMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletSDKMacro.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletTransactionApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletTransactionApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletTransactionApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletTransactionApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletTransantionsReceiptApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletTransantionsReceiptApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletTransantionsReceiptApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletTransantionsReceiptApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletUserDefaultManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletUserDefaultManager.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletUserDefaultManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletUserDefaultManager.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletVETBalanceApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletVETBalanceApi.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Api/WalletVETBalanceApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Api/WalletVETBalanceApi.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Category/NSJSONSerialization+NilDataParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Category/NSJSONSerialization+NilDataParameter.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Category/NSJSONSerialization+NilDataParameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Category/NSJSONSerialization+NilDataParameter.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Category/NSMutableDictionary+Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Category/NSMutableDictionary+Helpers.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Category/NSMutableDictionary+Helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Category/NSMutableDictionary+Helpers.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Category/NSObject+LKModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Category/NSObject+LKModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Category/NSObject+LKModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Category/NSObject+LKModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppGasCalculateHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppGasCalculateHandle.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppGasCalculateHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppGasCalculateHandle.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+connexJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+connexJS.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+connexJS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+connexJS.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+transfer.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+transfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+transfer.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+web3JS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+web3JS.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+web3JS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle+web3JS.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHandle.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppHeader.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppInjectJSHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppInjectJSHandle.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppInjectJSHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/DAppHandle/WalletDAppInjectJSHandle.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletAccountModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletAccountModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletAccountModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletAccountModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletBalanceModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletBalanceModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletBalanceModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletBalanceModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletBaseModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletBaseModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletBlockInfoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletBlockInfoModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletBlockInfoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletBlockInfoModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletDAppPeerModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletDAppPeerModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletDAppPeerModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletDAppPeerModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletJSCallbackModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletJSCallbackModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletJSCallbackModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletJSCallbackModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletManageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletManageModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletManageModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletManageModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletTools.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletTools.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletTransactionParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletTransactionParameter.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletTransactionParameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletTransactionParameter.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletTransantionsReceiptModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletTransantionsReceiptModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletTransantionsReceiptModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletTransantionsReceiptModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletVersionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletVersionModel.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/DApp/Model/WalletVersionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/DApp/Model/WalletVersionModel.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2-impl.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2b-ref.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2bp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2bp-ref.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2s-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2s-ref.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2sp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2sp-ref.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2xb-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2xb-ref.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/Blake2/blake2xs-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/Blake2/blake2xs-ref.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/WebSocket/SocketRocketUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/WebSocket/SocketRocketUtility.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/WebSocket/SocketRocketUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/WebSocket/SocketRocketUtility.m -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/aes.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/aes_modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/aes_modes.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/aescrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/aescrypt.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/aeskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/aeskey.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/aesopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/aesopt.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/aestab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/aestab.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/aestab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/aestab.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/base58.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/base58.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/base58.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/bignum.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/bignum.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/bip32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/bip32.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/bip32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/bip32.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/bip39.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/bip39.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/bip39.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/bip39.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/bip39_english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/bip39_english.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/ccMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/ccMemory.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/curves.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/curves.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/ecdsa.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/ecdsa.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/hmac.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/hmac.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/macros.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/options.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/pbkdf2.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/pbkdf2.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/rand.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/rand.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/ripemd160.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/ripemd160.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/secp256k1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/secp256k1.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/secp256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/secp256k1.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/secp256k1.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/secp256k1.table -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/sha2.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/sha2.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/sha3.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/crypto/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/crypto/sha3.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/libtommath-1.0/mpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/libtommath-1.0/mpi.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath_class.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath_private.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath_superclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/libtommath-1.0/tommath_superclass.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/scrypt-1.1.6/crypto_scrypt-nosse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/scrypt-1.1.6/crypto_scrypt-nosse.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/scrypt-1.1.6/crypto_scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/scrypt-1.1.6/crypto_scrypt.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/scrypt-1.1.6/scrypt_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/scrypt-1.1.6/scrypt_sha256.c -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/scrypt-1.1.6/scrypt_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/scrypt-1.1.6/scrypt_sha256.h -------------------------------------------------------------------------------- /ThorWalletSDK/Classes/Lib/scrypt-1.1.6/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/ThorWalletSDK/Classes/Lib/scrypt-1.1.6/sysendian.h -------------------------------------------------------------------------------- /WordsList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vechain/wallet-iOS-sdk/HEAD/WordsList.txt -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------