├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ ├── coverage.yml │ ├── e2eTestsTestnet.yml │ ├── lint.yml │ ├── network.yml │ ├── syncTestMainnet.yml │ ├── syncTestTestnet.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .tx └── config ├── ChainResources ├── HeightTransactionZones_Mainnet.dat └── MaxTransactionInfo_Mainnet.dat ├── DAPI-GRPC.podspec ├── DashSync.podspec ├── DashSync ├── iOS │ ├── Categories │ │ ├── UIColor+DSStyle.h │ │ ├── UIColor+DSStyle.m │ │ ├── UIImage+DSUtils.h │ │ ├── UIImage+DSUtils.m │ │ ├── UIWindow+DSUtils.h │ │ └── UIWindow+DSUtils.m │ └── Models │ │ ├── Device │ │ ├── DSPasteboardAddressExtractor.h │ │ └── DSPasteboardAddressExtractor.m │ │ └── Managers │ │ └── Service Managers │ │ └── Auth │ │ └── Controllers │ │ ├── ChildControllers │ │ ├── DSPassphraseChildViewController.h │ │ ├── DSPassphraseChildViewController.m │ │ ├── DSSinglePagePinViewController.h │ │ ├── DSSinglePagePinViewController.m │ │ ├── DSTwoPagePinViewController.h │ │ ├── DSTwoPagePinViewController.m │ │ └── Views │ │ │ ├── DSPassphraseTextView.h │ │ │ ├── DSPassphraseTextView.m │ │ │ ├── DSPinField.h │ │ │ ├── DSPinField.m │ │ │ ├── DSPinInputStepView.h │ │ │ ├── DSPinInputStepView.m │ │ │ ├── UIView+DSAnimations.h │ │ │ ├── UIView+DSAnimations.m │ │ │ ├── UIView+DSFindConstraint.h │ │ │ └── UIView+DSFindConstraint.m │ │ ├── DSBasePinViewController.h │ │ ├── DSBasePinViewController.m │ │ ├── DSRecoveryViewController.h │ │ ├── DSRecoveryViewController.m │ │ ├── DSRequestPinViewController.h │ │ ├── DSRequestPinViewController.m │ │ ├── DSSetPinViewController.h │ │ └── DSSetPinViewController.m ├── macOS │ └── Categories │ │ ├── NSColor+DSStyle.h │ │ ├── NSColor+DSStyle.m │ │ ├── NSImage+DSUtils.h │ │ └── NSImage+DSUtils.m └── shared │ ├── Categories │ ├── BigIntTypes.h │ ├── DSTransaction+Utils.h │ ├── DSTransaction+Utils.m │ ├── NSArray+Dash.h │ ├── NSArray+Dash.m │ ├── NSCoder+Dash.h │ ├── NSCoder+Dash.m │ ├── NSData │ │ ├── NSData+DSHash.h │ │ ├── NSData+DSHash.m │ │ ├── NSData+DSMerkAVLTree.h │ │ ├── NSData+DSMerkAVLTree.m │ │ ├── NSData+Dash.h │ │ ├── NSData+Dash.m │ │ ├── NSMutableData+Dash.h │ │ └── NSMutableData+Dash.m │ ├── NSDate+Utils.h │ ├── NSDate+Utils.m │ ├── NSDictionary+Dash.h │ ├── NSDictionary+Dash.m │ ├── NSIndexPath+Dash.h │ ├── NSIndexPath+Dash.m │ ├── NSIndexPath+FFI.h │ ├── NSIndexPath+FFI.m │ ├── NSManagedObject+Sugar.h │ ├── NSManagedObject+Sugar.m │ ├── NSManagedObjectContext+DSSugar.h │ ├── NSManagedObjectContext+DSSugar.m │ ├── NSMutableArray+Dash.h │ ├── NSMutableArray+Dash.m │ ├── NSMutableSet+Dash.h │ ├── NSMutableSet+Dash.m │ ├── NSPredicate+DSUtils.h │ ├── NSPredicate+DSUtils.m │ ├── NSSet+Dash.h │ ├── NSSet+Dash.m │ ├── NSString+Bitcoin.h │ ├── NSString+Bitcoin.m │ ├── NSString+Dash.h │ └── NSString+Dash.m │ ├── CurrenciesByCode.plist │ ├── DashSync.h │ ├── DashSync.m │ ├── DashSync.xcdatamodeld │ ├── .xccurrentversion │ ├── DashSync 1.xcdatamodel │ │ └── contents │ ├── DashSync 10.xcdatamodel │ │ └── contents │ ├── DashSync 11.xcdatamodel │ │ └── contents │ ├── DashSync 12.xcdatamodel │ │ └── contents │ ├── DashSync 13.xcdatamodel │ │ └── contents │ ├── DashSync 14.xcdatamodel │ │ └── contents │ ├── DashSync 15.xcdatamodel │ │ └── contents │ ├── DashSync 16.xcdatamodel │ │ └── contents │ ├── DashSync 17.xcdatamodel │ │ └── contents │ ├── DashSync 18.xcdatamodel │ │ └── contents │ ├── DashSync 19.xcdatamodel │ │ └── contents │ ├── DashSync 2.xcdatamodel │ │ └── contents │ ├── DashSync 20.xcdatamodel │ │ └── contents │ ├── DashSync 21.xcdatamodel │ │ └── contents │ ├── DashSync 3.xcdatamodel │ │ └── contents │ ├── DashSync 4.xcdatamodel │ │ └── contents │ ├── DashSync 5.xcdatamodel │ │ └── contents │ ├── DashSync 6.xcdatamodel │ │ └── contents │ ├── DashSync 7.xcdatamodel │ │ └── contents │ ├── DashSync 8.xcdatamodel │ │ └── contents │ └── DashSync 9.xcdatamodel │ │ └── contents │ ├── FixedPeers.plist │ ├── Libraries │ ├── AdvancedOperations │ │ ├── Conditions │ │ │ ├── DSChainableCondition.h │ │ │ ├── DSChainableCondition.m │ │ │ ├── DSNoSucceededDependenciesCondition.h │ │ │ ├── DSNoSucceededDependenciesCondition.m │ │ │ ├── DSOperationConditionProtocol.h │ │ │ ├── DSOperationConditionResult.h │ │ │ ├── DSOperationConditionResult.m │ │ │ ├── DSReachabilityCondition.h │ │ │ └── DSReachabilityCondition.m │ │ ├── DSHTTPOperation.h │ │ ├── DSHTTPOperation.m │ │ ├── Observers │ │ │ ├── DSBlockOperationObserver.h │ │ │ ├── DSBlockOperationObserver.m │ │ │ ├── DSOperationObserverProtocol.h │ │ │ ├── DSTimeoutObserver.h │ │ │ └── DSTimeoutObserver.m │ │ ├── Operation Queue │ │ │ ├── DSOperationQueue.h │ │ │ └── DSOperationQueue.m │ │ ├── Operations │ │ │ ├── DSBlockOperation.h │ │ │ ├── DSBlockOperation.m │ │ │ ├── DSChainableOperationProtocol.h │ │ │ ├── DSChainedOperation.h │ │ │ ├── DSChainedOperation.m │ │ │ ├── DSGroupOperation.h │ │ │ ├── DSGroupOperation.m │ │ │ ├── DSOperation.h │ │ │ ├── DSOperation.m │ │ │ ├── NSOperation+DSOperationKit.h │ │ │ └── NSOperation+DSOperationKit.m │ │ └── Others │ │ │ ├── NSError+DSOperationKit.h │ │ │ ├── NSError+DSOperationKit.m │ │ │ ├── NSError+Dash.h │ │ │ └── NSError+Dash.m │ ├── DSLogger.h │ ├── DSLogger.m │ ├── DSMerkleTree.h │ ├── DSMerkleTree.m │ ├── DSMutableOrderedDataKeyDictionary.h │ ├── DSMutableOrderedDataKeyDictionary.m │ ├── DSPermissionNotification.h │ ├── DSPermissionNotification.m │ ├── DSPlatformRootMerkleTree.h │ ├── DSPlatformRootMerkleTree.m │ ├── DSReachabilityManager.h │ ├── DSReachabilityManager.m │ ├── DSUInt256IndexPath.h │ ├── DSUInt256IndexPath.m │ ├── IntervalTree │ │ ├── IntervalTree.h │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RHIntervalTree.h │ │ └── RHIntervalTree.mm │ ├── Logs │ │ ├── CompressingLogFileManager.h │ │ └── CompressingLogFileManager.m │ ├── MDCDamerauLevenshtein │ │ ├── Algorithms │ │ │ ├── Data Structures │ │ │ │ ├── MDCDistanceMatrix.h │ │ │ │ ├── MDCDistanceMatrix.m │ │ │ │ ├── NSString+MDCCompare.h │ │ │ │ └── NSString+MDCCompare.m │ │ │ ├── MDCDamerauLevenshteinDistance.h │ │ │ ├── MDCDamerauLevenshteinDistance.m │ │ │ ├── MDCLevenshteinDistance.h │ │ │ └── MDCLevenshteinDistance.m │ │ ├── Categories │ │ │ ├── NSString+MDCDamerauLevenshteinDistance.h │ │ │ ├── NSString+MDCDamerauLevenshteinDistance.m │ │ │ ├── NSString+MDCLevenshteinDistance.h │ │ │ └── NSString+MDCLevenshteinDistance.m │ │ ├── LICENSE │ │ ├── MDCDamerauLevenshtein.h │ │ └── README.md │ └── Networking │ │ ├── Additional │ │ ├── NSURLRequest+DCcURL.h │ │ └── NSURLRequest+DCcURL.m │ │ ├── Blocks │ │ ├── HTTPLoaderBlocks.h │ │ ├── HTTPLoaderManager.h │ │ ├── HTTPLoaderManager.m │ │ ├── HTTPLoaderOperation.h │ │ ├── HTTPLoaderOperation.m │ │ └── HTTPLoaderOperationProtocol.h │ │ ├── DSNetworking.h │ │ ├── DSNetworkingCoordinator.h │ │ ├── DSNetworkingCoordinator.m │ │ ├── HTTPCancellationToken.h │ │ ├── HTTPLoader.h │ │ ├── HTTPLoader.m │ │ ├── HTTPLoaderAuthoriser.h │ │ ├── HTTPLoaderDelegate.h │ │ ├── HTTPLoaderFactory.h │ │ ├── HTTPLoaderFactory.m │ │ ├── HTTPRateLimiter.h │ │ ├── HTTPRateLimiter.m │ │ ├── HTTPRateLimiterMap.h │ │ ├── HTTPRateLimiterMap.m │ │ ├── HTTPRequest.h │ │ ├── HTTPRequest.m │ │ ├── HTTPRequestOperation.h │ │ ├── HTTPRequestOperation.m │ │ ├── HTTPRequestOperationHandler.h │ │ ├── HTTPResponse.h │ │ ├── HTTPResponse.m │ │ ├── HTTPService.h │ │ ├── HTTPService.m │ │ ├── JSONRPC │ │ ├── DSHTTPJSONRPCClient.h │ │ └── DSHTTPJSONRPCClient.m │ │ └── Private │ │ ├── HTTPCancellationTokenImpl.h │ │ ├── HTTPCancellationTokenImpl.m │ │ ├── HTTPLoader+Private.h │ │ ├── HTTPLoaderFactory+Private.h │ │ ├── HTTPRequest+Private.h │ │ ├── HTTPResponse+Private.h │ │ ├── HTTPURLRequestBuilder.h │ │ ├── HTTPURLRequestBuilder.m │ │ ├── SPTDataLoaderExponentialTimer.h │ │ └── SPTDataLoaderExponentialTimer.m │ ├── MainnetFixedPeers.plist │ ├── MappingModels │ └── MappingFrom6To7Model.xcmappingmodel │ │ └── xcmapping.xml │ ├── MasternodeLists │ ├── ML1088640__70218.dat │ ├── ML1720000__70218.dat │ └── MNT530000__70228.dat │ ├── Models │ ├── Chain │ │ ├── DSBlock+Protected.h │ │ ├── DSBlock.h │ │ ├── DSBlock.m │ │ ├── DSChain+Protected.h │ │ ├── DSChain.h │ │ ├── DSChain.m │ │ ├── DSChainCheckpoints.h │ │ ├── DSChainConstants.h │ │ ├── DSChainLock.h │ │ ├── DSChainLock.m │ │ ├── DSCheckpoint.h │ │ ├── DSCheckpoint.m │ │ ├── DSFullBlock.h │ │ ├── DSFullBlock.m │ │ ├── DSMerkleBlock.h │ │ └── DSMerkleBlock.m │ ├── CoinJoin │ │ ├── DSCoinControl.h │ │ ├── DSCoinControl.m │ │ ├── DSCoinJoinBalance.h │ │ ├── DSCoinJoinBalance.m │ │ ├── DSCoinJoinManager.h │ │ ├── DSCoinJoinManager.m │ │ ├── DSCoinJoinWrapper.h │ │ ├── DSCoinJoinWrapper.m │ │ ├── DSCompactTallyItem.h │ │ ├── DSCompactTallyItem.m │ │ ├── DSInputCoin.h │ │ ├── DSInputCoin.m │ │ ├── DSTransaction+CoinJoin.h │ │ ├── DSTransaction+CoinJoin.m │ │ ├── DSTransactionInput+CoinJoin.h │ │ ├── DSTransactionInput+CoinJoin.m │ │ ├── DSTransactionOutput+CoinJoin.h │ │ ├── DSTransactionOutput+CoinJoin.m │ │ └── Utils │ │ │ ├── DSBackoff.h │ │ │ ├── DSBackoff.m │ │ │ ├── DSMasternodeGroup.h │ │ │ └── DSMasternodeGroup.m │ ├── Crypto │ │ ├── DSSparseMerkleTree.h │ │ └── DSSparseMerkleTree.m │ ├── DAPI │ │ ├── DSDAPIClient.h │ │ ├── DSDAPIClient.m │ │ ├── DSPlatformDocumentsRequest.h │ │ ├── DSPlatformDocumentsRequest.m │ │ ├── DSPlatformPathQuery.h │ │ ├── DSPlatformPathQuery.m │ │ ├── DSPlatformQuery.h │ │ ├── DSPlatformQuery.m │ │ ├── DSPlatformTreeQuery.h │ │ ├── DSPlatformTreeQuery.m │ │ ├── DashPlatformProtocol+DashSync.h │ │ ├── DashPlatformProtocol+DashSync.m │ │ ├── NSPredicate+CBORData.h │ │ ├── NSPredicate+CBORData.m │ │ └── Networking │ │ │ ├── DSDAPIClientFetchDapObjectsOptions.h │ │ │ ├── DSDAPIClientFetchDapObjectsOptions.m │ │ │ ├── DSDAPICoreNetworkService.h │ │ │ ├── DSDAPICoreNetworkService.m │ │ │ ├── DSDAPICoreNetworkServiceProtocol.h │ │ │ ├── DSDAPIGRPCResponseHandler.h │ │ │ ├── DSDAPIGRPCResponseHandler.m │ │ │ ├── DSDAPINetworkServiceRequest.h │ │ │ ├── DSDAPIPlatformNetworkService.h │ │ │ ├── DSDAPIPlatformNetworkService.m │ │ │ └── DSDAPIPlatformNetworkServiceProtocol.h │ ├── DSSocketHelpers.c │ ├── Derivation Paths │ │ ├── DSAuthenticationKeysDerivationPath+Protected.h │ │ ├── DSAuthenticationKeysDerivationPath.h │ │ ├── DSAuthenticationKeysDerivationPath.m │ │ ├── DSCreditFundingDerivationPath+Protected.h │ │ ├── DSCreditFundingDerivationPath.h │ │ ├── DSCreditFundingDerivationPath.m │ │ ├── DSDerivationPath+Protected.h │ │ ├── DSDerivationPath.h │ │ ├── DSDerivationPath.m │ │ ├── DSDerivationPathFactory.h │ │ ├── DSDerivationPathFactory.m │ │ ├── DSFundsDerivationPath.h │ │ ├── DSFundsDerivationPath.m │ │ ├── DSIncomingFundsDerivationPath.h │ │ ├── DSIncomingFundsDerivationPath.m │ │ ├── DSMasternodeHoldingsDerivationPath+Protected.h │ │ ├── DSMasternodeHoldingsDerivationPath.h │ │ ├── DSMasternodeHoldingsDerivationPath.m │ │ ├── DSSimpleIndexedDerivationPath+Protected.h │ │ ├── DSSimpleIndexedDerivationPath.h │ │ └── DSSimpleIndexedDerivationPath.m │ ├── Entities │ │ ├── DSAccountEntity+CoreDataClass.h │ │ ├── DSAccountEntity+CoreDataClass.m │ │ ├── DSAccountEntity+CoreDataProperties.h │ │ ├── DSAccountEntity+CoreDataProperties.m │ │ ├── DSAddressEntity+CoreDataClass.h │ │ ├── DSAddressEntity+CoreDataClass.m │ │ ├── DSAddressEntity+CoreDataProperties.h │ │ ├── DSAddressEntity+CoreDataProperties.m │ │ ├── DSAssetLockTransactionEntity+CoreDataClass.h │ │ ├── DSAssetLockTransactionEntity+CoreDataClass.m │ │ ├── DSAssetLockTransactionEntity+CoreDataProperties.h │ │ ├── DSAssetLockTransactionEntity+CoreDataProperties.m │ │ ├── DSAssetUnlockTransactionEntity+CoreDataClass.h │ │ ├── DSAssetUnlockTransactionEntity+CoreDataClass.m │ │ ├── DSAssetUnlockTransactionEntity+CoreDataProperties.h │ │ ├── DSAssetUnlockTransactionEntity+CoreDataProperties.m │ │ ├── DSBlockchainIdentityEntity+CoreDataClass.h │ │ ├── DSBlockchainIdentityEntity+CoreDataClass.m │ │ ├── DSBlockchainIdentityEntity+CoreDataProperties.h │ │ ├── DSBlockchainIdentityEntity+CoreDataProperties.m │ │ ├── DSBlockchainIdentityKeyPathEntity+CoreDataClass.h │ │ ├── DSBlockchainIdentityKeyPathEntity+CoreDataClass.m │ │ ├── DSBlockchainIdentityKeyPathEntity+CoreDataProperties.h │ │ ├── DSBlockchainIdentityKeyPathEntity+CoreDataProperties.m │ │ ├── DSBlockchainIdentityUsernameEntity+CoreDataClass.h │ │ ├── DSBlockchainIdentityUsernameEntity+CoreDataClass.m │ │ ├── DSBlockchainIdentityUsernameEntity+CoreDataProperties.h │ │ ├── DSBlockchainIdentityUsernameEntity+CoreDataProperties.m │ │ ├── DSBlockchainInvitationEntity+CoreDataClass.h │ │ ├── DSBlockchainInvitationEntity+CoreDataClass.m │ │ ├── DSBlockchainInvitationEntity+CoreDataProperties.h │ │ ├── DSBlockchainInvitationEntity+CoreDataProperties.m │ │ ├── DSChainEntity+CoreDataClass.h │ │ ├── DSChainEntity+CoreDataClass.m │ │ ├── DSChainEntity+CoreDataProperties.h │ │ ├── DSChainEntity+CoreDataProperties.m │ │ ├── DSChainLockEntity+CoreDataClass.h │ │ ├── DSChainLockEntity+CoreDataClass.m │ │ ├── DSChainLockEntity+CoreDataProperties.h │ │ ├── DSChainLockEntity+CoreDataProperties.m │ │ ├── DSCoinbaseTransactionEntity+CoreDataClass.h │ │ ├── DSCoinbaseTransactionEntity+CoreDataClass.m │ │ ├── DSCoinbaseTransactionEntity+CoreDataProperties.h │ │ ├── DSCoinbaseTransactionEntity+CoreDataProperties.m │ │ ├── DSContactRequest.h │ │ ├── DSContactRequest.m │ │ ├── DSContractEntity+CoreDataClass.h │ │ ├── DSContractEntity+CoreDataClass.m │ │ ├── DSContractEntity+CoreDataProperties.h │ │ ├── DSContractEntity+CoreDataProperties.m │ │ ├── DSCreditFundingTransactionEntity+CoreDataClass.h │ │ ├── DSCreditFundingTransactionEntity+CoreDataClass.m │ │ ├── DSCreditFundingTransactionEntity+CoreDataProperties.h │ │ ├── DSCreditFundingTransactionEntity+CoreDataProperties.m │ │ ├── DSDashpayUserEntity+CoreDataClass.h │ │ ├── DSDashpayUserEntity+CoreDataClass.m │ │ ├── DSDashpayUserEntity+CoreDataProperties.h │ │ ├── DSDashpayUserEntity+CoreDataProperties.m │ │ ├── DSDerivationPathEntity+CoreDataClass.h │ │ ├── DSDerivationPathEntity+CoreDataClass.m │ │ ├── DSDerivationPathEntity+CoreDataProperties.h │ │ ├── DSDerivationPathEntity+CoreDataProperties.m │ │ ├── DSFriendRequestEntity+CoreDataClass.h │ │ ├── DSFriendRequestEntity+CoreDataClass.m │ │ ├── DSFriendRequestEntity+CoreDataProperties.h │ │ ├── DSFriendRequestEntity+CoreDataProperties.m │ │ ├── DSGovernanceObjectEntity+CoreDataClass.h │ │ ├── DSGovernanceObjectEntity+CoreDataClass.m │ │ ├── DSGovernanceObjectEntity+CoreDataProperties.h │ │ ├── DSGovernanceObjectEntity+CoreDataProperties.m │ │ ├── DSGovernanceObjectHashEntity+CoreDataClass.h │ │ ├── DSGovernanceObjectHashEntity+CoreDataClass.m │ │ ├── DSGovernanceObjectHashEntity+CoreDataProperties.h │ │ ├── DSGovernanceObjectHashEntity+CoreDataProperties.m │ │ ├── DSGovernanceVoteEntity+CoreDataClass.h │ │ ├── DSGovernanceVoteEntity+CoreDataClass.m │ │ ├── DSGovernanceVoteEntity+CoreDataProperties.h │ │ ├── DSGovernanceVoteEntity+CoreDataProperties.m │ │ ├── DSGovernanceVoteHashEntity+CoreDataClass.h │ │ ├── DSGovernanceVoteHashEntity+CoreDataClass.m │ │ ├── DSGovernanceVoteHashEntity+CoreDataProperties.h │ │ ├── DSGovernanceVoteHashEntity+CoreDataProperties.m │ │ ├── DSInstantSendLockEntity+CoreDataClass.h │ │ ├── DSInstantSendLockEntity+CoreDataClass.m │ │ ├── DSInstantSendLockEntity+CoreDataProperties.h │ │ ├── DSInstantSendLockEntity+CoreDataProperties.m │ │ ├── DSLocalMasternodeEntity+CoreDataClass.h │ │ ├── DSLocalMasternodeEntity+CoreDataClass.m │ │ ├── DSLocalMasternodeEntity+CoreDataProperties.h │ │ ├── DSLocalMasternodeEntity+CoreDataProperties.m │ │ ├── DSMasternodeListEntity+CoreDataClass.h │ │ ├── DSMasternodeListEntity+CoreDataClass.m │ │ ├── DSMasternodeListEntity+CoreDataProperties.h │ │ ├── DSMasternodeListEntity+CoreDataProperties.m │ │ ├── DSMerkleBlockEntity+CoreDataClass.h │ │ ├── DSMerkleBlockEntity+CoreDataClass.m │ │ ├── DSMerkleBlockEntity+CoreDataProperties.h │ │ ├── DSMerkleBlockEntity+CoreDataProperties.m │ │ ├── DSPeerEntity+CoreDataClass.h │ │ ├── DSPeerEntity+CoreDataClass.m │ │ ├── DSPeerEntity+CoreDataProperties.h │ │ ├── DSPeerEntity+CoreDataProperties.m │ │ ├── DSProviderRegistrationTransactionEntity+CoreDataClass.h │ │ ├── DSProviderRegistrationTransactionEntity+CoreDataClass.m │ │ ├── DSProviderRegistrationTransactionEntity+CoreDataProperties.h │ │ ├── DSProviderRegistrationTransactionEntity+CoreDataProperties.m │ │ ├── DSProviderUpdateRegistrarTransactionEntity+CoreDataClass.h │ │ ├── DSProviderUpdateRegistrarTransactionEntity+CoreDataClass.m │ │ ├── DSProviderUpdateRegistrarTransactionEntity+CoreDataProperties.h │ │ ├── DSProviderUpdateRegistrarTransactionEntity+CoreDataProperties.m │ │ ├── DSProviderUpdateRevocationTransactionEntity+CoreDataClass.h │ │ ├── DSProviderUpdateRevocationTransactionEntity+CoreDataClass.m │ │ ├── DSProviderUpdateRevocationTransactionEntity+CoreDataProperties.h │ │ ├── DSProviderUpdateRevocationTransactionEntity+CoreDataProperties.m │ │ ├── DSProviderUpdateServiceTransactionEntity+CoreDataClass.h │ │ ├── DSProviderUpdateServiceTransactionEntity+CoreDataClass.m │ │ ├── DSProviderUpdateServiceTransactionEntity+CoreDataProperties.h │ │ ├── DSProviderUpdateServiceTransactionEntity+CoreDataProperties.m │ │ ├── DSQuorumCommitmentTransactionEntity+CoreDataClass.h │ │ ├── DSQuorumCommitmentTransactionEntity+CoreDataClass.m │ │ ├── DSQuorumCommitmentTransactionEntity+CoreDataProperties.h │ │ ├── DSQuorumCommitmentTransactionEntity+CoreDataProperties.m │ │ ├── DSQuorumEntryEntity+CoreDataClass.h │ │ ├── DSQuorumEntryEntity+CoreDataClass.m │ │ ├── DSQuorumEntryEntity+CoreDataProperties.h │ │ ├── DSQuorumEntryEntity+CoreDataProperties.m │ │ ├── DSQuorumSnapshotEntity+CoreDataClass.h │ │ ├── DSQuorumSnapshotEntity+CoreDataClass.m │ │ ├── DSQuorumSnapshotEntity+CoreDataProperties.h │ │ ├── DSQuorumSnapshotEntity+CoreDataProperties.m │ │ ├── DSShapeshiftEntity+CoreDataClass.h │ │ ├── DSShapeshiftEntity+CoreDataClass.m │ │ ├── DSShapeshiftEntity+CoreDataProperties.h │ │ ├── DSShapeshiftEntity+CoreDataProperties.m │ │ ├── DSSimplifiedMasternodeEntryEntity+CoreDataClass.h │ │ ├── DSSimplifiedMasternodeEntryEntity+CoreDataClass.m │ │ ├── DSSimplifiedMasternodeEntryEntity+CoreDataProperties.h │ │ ├── DSSimplifiedMasternodeEntryEntity+CoreDataProperties.m │ │ ├── DSSpecialTransactionEntity+CoreDataClass.h │ │ ├── DSSpecialTransactionEntity+CoreDataClass.m │ │ ├── DSSpecialTransactionEntity+CoreDataProperties.h │ │ ├── DSSpecialTransactionEntity+CoreDataProperties.m │ │ ├── DSSporkEntity+CoreDataClass.h │ │ ├── DSSporkEntity+CoreDataClass.m │ │ ├── DSSporkEntity+CoreDataProperties.h │ │ ├── DSSporkEntity+CoreDataProperties.m │ │ ├── DSSporkHashEntity+CoreDataClass.h │ │ ├── DSSporkHashEntity+CoreDataClass.m │ │ ├── DSSporkHashEntity+CoreDataProperties.h │ │ ├── DSSporkHashEntity+CoreDataProperties.m │ │ ├── DSTransactionEntity+CoreDataClass.h │ │ ├── DSTransactionEntity+CoreDataClass.m │ │ ├── DSTransactionEntity+CoreDataProperties.h │ │ ├── DSTransactionEntity+CoreDataProperties.m │ │ ├── DSTransactionHashEntity+CoreDataClass.h │ │ ├── DSTransactionHashEntity+CoreDataClass.m │ │ ├── DSTransactionHashEntity+CoreDataProperties.h │ │ ├── DSTransactionHashEntity+CoreDataProperties.m │ │ ├── DSTxInputEntity+CoreDataClass.h │ │ ├── DSTxInputEntity+CoreDataClass.m │ │ ├── DSTxInputEntity+CoreDataProperties.h │ │ ├── DSTxInputEntity+CoreDataProperties.m │ │ ├── DSTxOutputEntity+CoreDataClass.h │ │ ├── DSTxOutputEntity+CoreDataClass.m │ │ ├── DSTxOutputEntity+CoreDataProperties.h │ │ └── DSTxOutputEntity+CoreDataProperties.m │ ├── Governance │ │ ├── DSGovernanceObject.h │ │ ├── DSGovernanceObject.m │ │ ├── DSGovernanceVote.h │ │ └── DSGovernanceVote.m │ ├── Identity │ │ ├── DSBlockchainIdentity+Protected.h │ │ ├── DSBlockchainIdentity.h │ │ ├── DSBlockchainIdentity.m │ │ ├── DSBlockchainInvitation+Protected.h │ │ ├── DSBlockchainInvitation.h │ │ ├── DSBlockchainInvitation.m │ │ ├── DSPotentialContact.h │ │ ├── DSPotentialContact.m │ │ ├── DSPotentialOneWayFriendship.h │ │ ├── DSPotentialOneWayFriendship.m │ │ ├── DSTransientDashpayUser+Protected.h │ │ ├── DSTransientDashpayUser.h │ │ └── DSTransientDashpayUser.m │ ├── Keys │ │ ├── DSKeySequence.h │ │ ├── NSData+Encryption.h │ │ └── NSData+Encryption.mm │ ├── Managers │ │ ├── Chain Managers │ │ │ ├── DSBackgroundManager.h │ │ │ ├── DSBackgroundManager.m │ │ │ ├── DSChainManager+Mining.h │ │ │ ├── DSChainManager+Mining.m │ │ │ ├── DSChainManager+Protected.h │ │ │ ├── DSChainManager+Transactions.h │ │ │ ├── DSChainManager+Transactions.m │ │ │ ├── DSChainManager.h │ │ │ ├── DSChainManager.m │ │ │ ├── DSChainsManager.h │ │ │ ├── DSChainsManager.m │ │ │ ├── DSGovernanceSyncManager+Protected.h │ │ │ ├── DSGovernanceSyncManager.h │ │ │ ├── DSGovernanceSyncManager.m │ │ │ ├── DSIdentitiesManager+Protected.h │ │ │ ├── DSIdentitiesManager.h │ │ │ ├── DSIdentitiesManager.m │ │ │ ├── DSKeyManager.h │ │ │ ├── DSKeyManager.m │ │ │ ├── DSMasternodeManager+LocalMasternode.h │ │ │ ├── DSMasternodeManager+LocalMasternode.m │ │ │ ├── DSMasternodeManager+Mndiff.h │ │ │ ├── DSMasternodeManager+Mndiff.m │ │ │ ├── DSMasternodeManager+Protected.h │ │ │ ├── DSMasternodeManager.h │ │ │ ├── DSMasternodeManager.m │ │ │ ├── DSPeerManager+Protected.h │ │ │ ├── DSPeerManager.h │ │ │ ├── DSPeerManager.m │ │ │ ├── DSSporkManager+Protected.h │ │ │ ├── DSSporkManager.h │ │ │ ├── DSSporkManager.m │ │ │ ├── DSTransactionManager+Protected.h │ │ │ ├── DSTransactionManager.h │ │ │ └── DSTransactionManager.m │ │ └── Service Managers │ │ │ ├── Auth │ │ │ ├── DSAuthenticationManager+Private.h │ │ │ ├── DSAuthenticationManager+UpdateSecureTime.h │ │ │ ├── DSAuthenticationManager.h │ │ │ ├── DSAuthenticationManager.m │ │ │ ├── DSBiometricsAuthenticator.h │ │ │ └── DSBiometricsAuthenticator.m │ │ │ ├── DSErrorSimulationManager.h │ │ │ ├── DSErrorSimulationManager.m │ │ │ ├── DSEventManager.h │ │ │ ├── DSEventManager.m │ │ │ ├── DSInsightManager.h │ │ │ ├── DSInsightManager.m │ │ │ ├── DSOptionsManager.h │ │ │ ├── DSOptionsManager.m │ │ │ ├── DSPriceManager.h │ │ │ ├── DSPriceManager.m │ │ │ ├── DSShapeshiftManager.h │ │ │ ├── DSShapeshiftManager.m │ │ │ ├── DSVersionManager.h │ │ │ ├── DSVersionManager.m │ │ │ └── Price │ │ │ ├── DSCurrencyPriceObject.h │ │ │ ├── DSCurrencyPriceObject.m │ │ │ ├── DSPriceOperationProvider.h │ │ │ ├── DSPriceOperationProvider.m │ │ │ ├── FetchOperations │ │ │ ├── DSFetchDashRetailPricesOperation.h │ │ │ ├── DSFetchDashRetailPricesOperation.m │ │ │ ├── DSFetchFirstFallbackPricesOperation.h │ │ │ ├── DSFetchFirstFallbackPricesOperation.m │ │ │ ├── DSFetchPricesOperation.h │ │ │ ├── DSFetchSecondFallbackPricesOperation.h │ │ │ └── DSFetchSecondFallbackPricesOperation.m │ │ │ └── Requests │ │ │ ├── DSHTTPBitPayOperation.h │ │ │ ├── DSHTTPBitPayOperation.m │ │ │ ├── DSHTTPBitcoinAvgOperation.h │ │ │ ├── DSHTTPBitcoinAvgOperation.m │ │ │ ├── DSHTTPDashBtcCCOperation.h │ │ │ ├── DSHTTPDashBtcCCOperation.m │ │ │ ├── DSHTTPDashCasaOperation.h │ │ │ ├── DSHTTPDashCasaOperation.m │ │ │ ├── DSHTTPDashCentralOperation.h │ │ │ ├── DSHTTPDashCentralOperation.m │ │ │ ├── DSHTTPDashRetailOperation.h │ │ │ ├── DSHTTPDashRetailOperation.m │ │ │ ├── DSHTTPDashVesCasaOperation.h │ │ │ ├── DSHTTPDashVesCasaOperation.m │ │ │ ├── DSHTTPPoloniexOperation.h │ │ │ ├── DSHTTPPoloniexOperation.m │ │ │ ├── DSHTTPVesLocalBitcoinsOperation.h │ │ │ └── DSHTTPVesLocalBitcoinsOperation.m │ ├── Masternode │ │ ├── DSLocalMasternode+Protected.h │ │ ├── DSLocalMasternode.h │ │ ├── DSLocalMasternode.m │ │ ├── DSMasternodeList+Mndiff.h │ │ ├── DSMasternodeList+Mndiff.m │ │ ├── DSMasternodeList.h │ │ ├── DSMasternodeList.m │ │ ├── DSMasternodeListDiffService.h │ │ ├── DSMasternodeListDiffService.m │ │ ├── DSMasternodeListService+Protected.h │ │ ├── DSMasternodeListService.h │ │ ├── DSMasternodeListService.m │ │ ├── DSMasternodeListStore+Protected.h │ │ ├── DSMasternodeListStore.h │ │ ├── DSMasternodeListStore.m │ │ ├── DSMasternodeProcessorContext.h │ │ ├── DSMasternodeProcessorContext.m │ │ ├── DSMnDiffProcessingResult.h │ │ ├── DSMnDiffProcessingResult.m │ │ ├── DSQRInfoProcessingResult.h │ │ ├── DSQRInfoProcessingResult.m │ │ ├── DSQuorumEntry+Mndiff.h │ │ ├── DSQuorumEntry+Mndiff.m │ │ ├── DSQuorumEntry.h │ │ ├── DSQuorumEntry.m │ │ ├── DSQuorumRotationService.h │ │ ├── DSQuorumRotationService.m │ │ ├── DSQuorumSnapshot+Mndiff.h │ │ ├── DSQuorumSnapshot+Mndiff.m │ │ ├── DSQuorumSnapshot.h │ │ ├── DSQuorumSnapshot.m │ │ ├── DSSimplifiedMasternodeEntry+Mndiff.h │ │ ├── DSSimplifiedMasternodeEntry+Mndiff.m │ │ ├── DSSimplifiedMasternodeEntry.h │ │ └── DSSimplifiedMasternodeEntry.m │ ├── Messages │ │ ├── CoinJoin │ │ │ ├── DSCoinJoinAcceptMessage.h │ │ │ ├── DSCoinJoinAcceptMessage.m │ │ │ ├── DSCoinJoinEntryMessage.h │ │ │ ├── DSCoinJoinEntryMessage.m │ │ │ ├── DSCoinJoinSignedInputs.h │ │ │ ├── DSCoinJoinSignedInputs.m │ │ │ ├── DSSendCoinJoinQueue.h │ │ │ └── DSSendCoinJoinQueue.m │ │ ├── DSAddrRequest.h │ │ ├── DSAddrRequest.m │ │ ├── DSFilterLoadRequest.h │ │ ├── DSFilterLoadRequest.m │ │ ├── DSGetBlocksRequest.h │ │ ├── DSGetBlocksRequest.m │ │ ├── DSGetDataRequest.h │ │ ├── DSGetDataRequest.m │ │ ├── DSGetHeadersRequest.h │ │ ├── DSGetHeadersRequest.m │ │ ├── DSInvRequest.h │ │ ├── DSInvRequest.m │ │ ├── DSMessageRequest.h │ │ ├── DSMessageRequest.m │ │ ├── DSNotFoundRequest.h │ │ ├── DSNotFoundRequest.m │ │ ├── DSPingRequest.h │ │ ├── DSPingRequest.m │ │ ├── DSVersionRequest.h │ │ ├── DSVersionRequest.m │ │ ├── Governance │ │ │ ├── DSGetGovernanceObjectsRequest.h │ │ │ ├── DSGetGovernanceObjectsRequest.m │ │ │ ├── DSGetGovernanceVotesRequest.h │ │ │ ├── DSGetGovernanceVotesRequest.m │ │ │ ├── DSGovernanceHashesRequest.h │ │ │ ├── DSGovernanceHashesRequest.m │ │ │ ├── DSGovernanceObjectsSyncRequest.h │ │ │ ├── DSGovernanceObjectsSyncRequest.m │ │ │ ├── DSGovernanceSyncRequest.h │ │ │ ├── DSGovernanceSyncRequest.m │ │ │ ├── DSGovernanceVotesSyncRequest.h │ │ │ └── DSGovernanceVotesSyncRequest.m │ │ ├── Masternodes │ │ │ ├── DSDSegRequest.h │ │ │ ├── DSDSegRequest.m │ │ │ ├── DSGetMNListDiffRequest.h │ │ │ ├── DSGetMNListDiffRequest.m │ │ │ ├── DSGetQRInfoRequest.h │ │ │ ├── DSGetQRInfoRequest.m │ │ │ ├── DSMasternodeListRequest.h │ │ │ └── DSMasternodeListRequest.m │ │ └── Transactions │ │ │ ├── DSGetDataForTransactionHashRequest.h │ │ │ ├── DSGetDataForTransactionHashRequest.m │ │ │ ├── DSGetDataForTransactionHashesRequest.h │ │ │ ├── DSGetDataForTransactionHashesRequest.m │ │ │ ├── DSTransactionInvRequest.h │ │ │ └── DSTransactionInvRequest.m │ ├── Network │ │ ├── DSBloomFilter.h │ │ ├── DSBloomFilter.m │ │ ├── DSPeer.h │ │ └── DSPeer.m │ ├── Notifications │ │ ├── DSSyncState.h │ │ └── DSSyncState.m │ ├── Payment │ │ ├── DSPaymentProtocol.h │ │ ├── DSPaymentProtocol.m │ │ ├── DSPaymentRequest.h │ │ └── DSPaymentRequest.m │ ├── Persistence │ │ ├── Categories │ │ │ ├── NSManagedObjectModel+DS.h │ │ │ ├── NSManagedObjectModel+DS.m │ │ │ ├── NSPersistentStoreCoordinator+DS.h │ │ │ └── NSPersistentStoreCoordinator+DS.m │ │ ├── DSDataController.h │ │ ├── DSDataController.m │ │ ├── Migration │ │ │ ├── DSCoreDataMigrator.h │ │ │ ├── DSCoreDataMigrator.m │ │ │ ├── Internal │ │ │ │ ├── DSCoreDataMigrationStep.h │ │ │ │ ├── DSCoreDataMigrationStep.m │ │ │ │ ├── DSCoreDataMigrationVersion.h │ │ │ │ └── DSCoreDataMigrationVersion.m │ │ │ └── Policies │ │ │ │ ├── DSAccountEntity6To7MigrationPolicy.h │ │ │ │ ├── DSAccountEntity6To7MigrationPolicy.m │ │ │ │ ├── DSDeleteEntityMigrationPolicy.h │ │ │ │ ├── DSDeleteEntityMigrationPolicy.m │ │ │ │ ├── DSMerkleBlockEntity6To7MigrationPolicy.h │ │ │ │ └── DSMerkleBlockEntity6To7MigrationPolicy.m │ │ └── Transformers │ │ │ ├── CompatibilityTransformers │ │ │ ├── DSCompatibilityArrayValueTransformer.h │ │ │ └── DSCompatibilityArrayValueTransformer.m │ │ │ ├── DSIndexPathValueTransformer.h │ │ │ └── DSIndexPathValueTransformer.m │ ├── Platform │ │ ├── Base │ │ │ ├── DPBaseObject.h │ │ │ ├── DPBaseObject.m │ │ │ ├── DPSerializableObject.h │ │ │ └── DPTypes.h │ │ ├── Contract │ │ │ ├── DPContract+Protected.h │ │ │ ├── DPContract.h │ │ │ ├── DPContract.m │ │ │ ├── DSDocumentType.h │ │ │ └── DSDocumentType.m │ │ ├── DPErrors.h │ │ ├── DPErrors.m │ │ ├── DSDashPlatform.h │ │ ├── DSDashPlatform.m │ │ ├── Document │ │ │ ├── DPDocument.h │ │ │ ├── DPDocument.m │ │ │ ├── DPDocumentFactory.h │ │ │ ├── DPDocumentFactory.m │ │ │ ├── DPDocumentProtocol.h │ │ │ ├── DPDocumentState.h │ │ │ ├── DPDocumentState.m │ │ │ ├── DSDirectionalKey.h │ │ │ ├── DSDirectionalKey.m │ │ │ ├── DSDirectionalRange.h │ │ │ └── DSDirectionalRange.m │ │ └── Transitions │ │ │ ├── BlockchainIdentity │ │ │ ├── DSBlockchainIdentityCloseTransition.h │ │ │ ├── DSBlockchainIdentityCloseTransition.m │ │ │ ├── DSBlockchainIdentityRegistrationTransition.h │ │ │ ├── DSBlockchainIdentityRegistrationTransition.m │ │ │ ├── DSBlockchainIdentityTopupTransition.h │ │ │ ├── DSBlockchainIdentityTopupTransition.m │ │ │ ├── DSBlockchainIdentityUpdateTransition.h │ │ │ └── DSBlockchainIdentityUpdateTransition.m │ │ │ ├── DSContractTransition.h │ │ │ ├── DSContractTransition.m │ │ │ ├── DSDocumentTransition.h │ │ │ ├── DSDocumentTransition.m │ │ │ ├── DSTransition+Protected.h │ │ │ ├── DSTransition.h │ │ │ └── DSTransition.m │ ├── Spork │ │ ├── DSSpork.h │ │ └── DSSpork.m │ ├── System │ │ ├── DSEnvironment.h │ │ ├── DSEnvironment.m │ │ ├── DSError.h │ │ └── DSError.m │ ├── Transactions │ │ ├── Base │ │ │ ├── DSAssetLockTransaction.h │ │ │ ├── DSAssetLockTransaction.m │ │ │ ├── DSAssetUnlockTransaction.h │ │ │ ├── DSAssetUnlockTransaction.m │ │ │ ├── DSCreditFundingTransaction.h │ │ │ ├── DSCreditFundingTransaction.m │ │ │ ├── DSInstantSendTransactionLock.h │ │ │ ├── DSInstantSendTransactionLock.m │ │ │ ├── DSTransaction+Protected.h │ │ │ ├── DSTransaction.h │ │ │ ├── DSTransaction.m │ │ │ ├── DSTransactionInput.h │ │ │ ├── DSTransactionInput.m │ │ │ ├── DSTransactionOutput.h │ │ │ └── DSTransactionOutput.m │ │ ├── Coinbase │ │ │ ├── DSCoinbaseTransaction+Mndiff.h │ │ │ ├── DSCoinbaseTransaction+Mndiff.m │ │ │ ├── DSCoinbaseTransaction.h │ │ │ └── DSCoinbaseTransaction.m │ │ ├── DSTransactionFactory.h │ │ ├── DSTransactionFactory.m │ │ ├── Provider │ │ │ ├── DSProviderRegistrationTransaction.h │ │ │ ├── DSProviderRegistrationTransaction.m │ │ │ ├── DSProviderUpdateRegistrarTransaction.h │ │ │ ├── DSProviderUpdateRegistrarTransaction.m │ │ │ ├── DSProviderUpdateRevocationTransaction.h │ │ │ ├── DSProviderUpdateRevocationTransaction.m │ │ │ ├── DSProviderUpdateServiceTransaction.h │ │ │ └── DSProviderUpdateServiceTransaction.m │ │ └── Quorums │ │ │ ├── DSQuorumCommitmentTransaction.h │ │ │ └── DSQuorumCommitmentTransaction.m │ └── Wallet │ │ ├── DSAccount.h │ │ ├── DSAccount.m │ │ ├── DSBIP39Mnemonic.h │ │ ├── DSBIP39Mnemonic.m │ │ ├── DSMnemonic.h │ │ ├── DSSpecialTransactionsWalletHolder.h │ │ ├── DSSpecialTransactionsWalletHolder.m │ │ ├── DSWallet+Protected.h │ │ ├── DSWallet.h │ │ ├── DSWallet.m │ │ └── DSWalletConstants.m │ ├── TestnetFixedPeers.plist │ ├── bg.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── cs.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── dac-contract.json │ ├── dashpay-contract.json │ ├── dashthumbnail-contract.json │ ├── de.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── dpns-contract.json │ ├── el.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── en.lproj │ ├── BIP39Words.plist │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── es.lproj │ ├── BIP39Words.plist │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── fr.lproj │ ├── BIP39Words.plist │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── id.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── it.lproj │ ├── BIP39Words.plist │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── ja.lproj │ ├── BIP39Words.plist │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── ko.lproj │ ├── BIP39Words.plist │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── nl.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── pl.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── pt.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── ru.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── sk.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── th.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── tr.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── uk.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── vi.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict │ ├── zh-Hans.lproj │ ├── BIP39Words.plist │ ├── Localizable.strings │ └── Localizable.stringsdict │ └── zh-Hant-TW.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── Docs └── github-dashsync-image.jpg ├── Example ├── .bartycrouch.toml ├── .clang-format ├── .oclint ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DAPI-GRPC.podspec ├── DashSync.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── DashSync-Example.xcscheme │ │ └── NetworkInfo.xcscheme ├── DashSync.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── DashSync │ ├── Actions.storyboard │ ├── BRBubbleView.h │ ├── BRBubbleView.m │ ├── BRCopyLabel.h │ ├── BRCopyLabel.m │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BlockchainIdentities.storyboard │ ├── Contacts.storyboard │ ├── DSAccountChooserTableViewCell.h │ ├── DSAccountChooserTableViewCell.m │ ├── DSAccountChooserViewController.h │ ├── DSAccountChooserViewController.m │ ├── DSAccountTableViewCell.h │ ├── DSAccountTableViewCell.m │ ├── DSAccountsDerivationPathsViewController.h │ ├── DSAccountsDerivationPathsViewController.m │ ├── DSAccountsViewController.h │ ├── DSAccountsViewController.m │ ├── DSActionsViewController.h │ ├── DSActionsViewController.m │ ├── DSAddDAPViewController.h │ ├── DSAddDAPViewController.m │ ├── DSAddDevnetAddIPAddressTableViewCell.h │ ├── DSAddDevnetAddIPAddressTableViewCell.m │ ├── DSAddDevnetIPAddressTableViewCell.h │ ├── DSAddDevnetIPAddressTableViewCell.m │ ├── DSAddDevnetViewController.h │ ├── DSAddDevnetViewController.m │ ├── DSAddressTableViewCell.h │ ├── DSAddressTableViewCell.m │ ├── DSAddressesExporterViewController.h │ ├── DSAddressesExporterViewController.m │ ├── DSAddressesTransactionsViewController.h │ ├── DSAddressesTransactionsViewController.m │ ├── DSAppDelegate.h │ ├── DSAppDelegate.m │ ├── DSAuthenticationKeysDerivationPathsAddressesViewController.h │ ├── DSAuthenticationKeysDerivationPathsAddressesViewController.m │ ├── DSBlockchainExplorerViewController.h │ ├── DSBlockchainExplorerViewController.m │ ├── DSBlockchainIdentitiesViewController.h │ ├── DSBlockchainIdentitiesViewController.m │ ├── DSBlockchainIdentityActionsViewController.h │ ├── DSBlockchainIdentityActionsViewController.m │ ├── DSBlockchainIdentityChooserTableViewCell.h │ ├── DSBlockchainIdentityChooserTableViewCell.m │ ├── DSBlockchainIdentityKeyTableViewCell.h │ ├── DSBlockchainIdentityKeyTableViewCell.m │ ├── DSBlockchainIdentityKeysViewController.h │ ├── DSBlockchainIdentityKeysViewController.m │ ├── DSBlockchainIdentitySearchTableViewCell.h │ ├── DSBlockchainIdentitySearchTableViewCell.m │ ├── DSBlockchainIdentityTableViewCell.h │ ├── DSBlockchainIdentityTableViewCell.m │ ├── DSBlockchainIdentityTransitionsViewController.h │ ├── DSBlockchainIdentityTransitionsViewController.m │ ├── DSChainTableViewCell.h │ ├── DSChainTableViewCell.m │ ├── DSChainsViewController.h │ ├── DSChainsViewController.m │ ├── DSClaimMasternodeViewController.h │ ├── DSClaimMasternodeViewController.m │ ├── DSCoinJoinViewController.h │ ├── DSCoinJoinViewController.m │ ├── DSContactBaseTransactionsTableViewController.h │ ├── DSContactBaseTransactionsTableViewController.m │ ├── DSContactProfileAvatarView.h │ ├── DSContactProfileAvatarView.m │ ├── DSContactProfileViewController.h │ ├── DSContactProfileViewController.m │ ├── DSContactReceivedTransactionsTableViewController.h │ ├── DSContactReceivedTransactionsTableViewController.m │ ├── DSContactRelationshipActionsViewController.h │ ├── DSContactRelationshipActionsViewController.m │ ├── DSContactRelationshipInfoViewController.h │ ├── DSContactRelationshipInfoViewController.m │ ├── DSContactSendDashViewController.h │ ├── DSContactSendDashViewController.m │ ├── DSContactSentTransactionsTableViewController.h │ ├── DSContactSentTransactionsTableViewController.m │ ├── DSContactTableViewCell.h │ ├── DSContactTableViewCell.m │ ├── DSContactTransactionTableViewCell.h │ ├── DSContactTransactionTableViewCell.m │ ├── DSContactTransactionTableViewCell.xib │ ├── DSContactsNavigationController.h │ ├── DSContactsNavigationController.m │ ├── DSContactsTabBarViewController.h │ ├── DSContactsTabBarViewController.m │ ├── DSContactsViewController.h │ ├── DSContactsViewController.m │ ├── DSContractTableViewCell.h │ ├── DSContractTableViewCell.m │ ├── DSCreateBlockchainIdentityFromInvitationViewController.h │ ├── DSCreateBlockchainIdentityFromInvitationViewController.m │ ├── DSCreateBlockchainIdentityViewController.h │ ├── DSCreateBlockchainIdentityViewController.m │ ├── DSCreateInvitationViewController.h │ ├── DSCreateInvitationViewController.m │ ├── DSDAPICallsViewController.h │ ├── DSDAPICallsViewController.m │ ├── DSDAPIGetAddressSummaryViewController.h │ ├── DSDAPIGetAddressSummaryViewController.m │ ├── DSDAPIGetTransactionInformationViewController.h │ ├── DSDAPIGetTransactionInformationViewController.m │ ├── DSDAPIGetUserInfoViewController.h │ ├── DSDAPIGetUserInfoViewController.m │ ├── DSDAPListViewController.h │ ├── DSDAPListViewController.m │ ├── DSDerivationPathTableViewCell.h │ ├── DSDerivationPathTableViewCell.m │ ├── DSDoubleDerivationPathsAddressesViewController.h │ ├── DSDoubleDerivationPathsAddressesViewController.m │ ├── DSErrorSimulationsViewController.h │ ├── DSErrorSimulationsViewController.m │ ├── DSFetchedResultsTableViewController.h │ ├── DSFetchedResultsTableViewController.m │ ├── DSGovernanceObjectListViewController.h │ ├── DSGovernanceObjectListViewController.m │ ├── DSIdentityAuthenticationDerivationPathsAddressesViewController.h │ ├── DSIdentityAuthenticationDerivationPathsAddressesViewController.m │ ├── DSIdentityChooserViewController.h │ ├── DSIdentityChooserViewController.m │ ├── DSIncomingContactsTableViewController.h │ ├── DSIncomingContactsTableViewController.m │ ├── DSInvitationDetailViewController.h │ ├── DSInvitationDetailViewController.m │ ├── DSInvitationTableViewCell.h │ ├── DSInvitationTableViewCell.m │ ├── DSInvitationsViewController.h │ ├── DSInvitationsViewController.m │ ├── DSKeyValueTableViewCell.h │ ├── DSKeyValueTableViewCell.m │ ├── DSLayer2ViewController.h │ ├── DSLayer2ViewController.m │ ├── DSMasternodeDetailViewController.h │ ├── DSMasternodeDetailViewController.m │ ├── DSMasternodeListTableViewCell.h │ ├── DSMasternodeListTableViewCell.m │ ├── DSMasternodeListsViewController.h │ ├── DSMasternodeListsViewController.m │ ├── DSMasternodeTableViewCell.h │ ├── DSMasternodeTableViewCell.m │ ├── DSMasternodeViewController.h │ ├── DSMasternodeViewController.m │ ├── DSMerkleBlockTableViewCell.h │ ├── DSMerkleBlockTableViewCell.m │ ├── DSMiningViewController.h │ ├── DSMiningViewController.m │ ├── DSOutgoingContactsTableViewController.h │ ├── DSOutgoingContactsTableViewController.m │ ├── DSPeerTableViewCell.h │ ├── DSPeerTableViewCell.m │ ├── DSPeersViewController.h │ ├── DSPeersViewController.m │ ├── DSProposalCreatorViewController.h │ ├── DSProposalCreatorViewController.m │ ├── DSProposalTableViewCell.h │ ├── DSProposalTableViewCell.m │ ├── DSProviderUpdateRegistrarTableViewCell.h │ ├── DSProviderUpdateRegistrarTableViewCell.m │ ├── DSProviderUpdateRegistrarTransactionsViewController.h │ ├── DSProviderUpdateRegistrarTransactionsViewController.m │ ├── DSProviderUpdateServiceTableViewCell.h │ ├── DSProviderUpdateServiceTableViewCell.m │ ├── DSProviderUpdateServiceTransactionsViewController.h │ ├── DSProviderUpdateServiceTransactionsViewController.m │ ├── DSQuorumListViewController.h │ ├── DSQuorumListViewController.m │ ├── DSQuorumTableViewCell.h │ ├── DSQuorumTableViewCell.m │ ├── DSReclaimMasternodeViewController.h │ ├── DSReclaimMasternodeViewController.m │ ├── DSRegisterContractsViewController.h │ ├── DSRegisterContractsViewController.m │ ├── DSRegisterMasternodeViewController.h │ ├── DSRegisterMasternodeViewController.m │ ├── DSRegisterTLDViewController.h │ ├── DSRegisterTLDViewController.m │ ├── DSSearchBlockchainIdentitiesViewController.h │ ├── DSSearchBlockchainIdentitiesViewController.m │ ├── DSSendAmountViewController.h │ ├── DSSendAmountViewController.m │ ├── DSSettingsViewController.h │ ├── DSSettingsViewController.m │ ├── DSSignPayloadViewController.h │ ├── DSSignPayloadViewController.m │ ├── DSSpecializedDerivationPathsViewController.h │ ├── DSSpecializedDerivationPathsViewController.m │ ├── DSSporkTableViewCell.h │ ├── DSSporkTableViewCell.m │ ├── DSSporksViewController.h │ ├── DSSporksViewController.m │ ├── DSStandaloneAddressesViewController.h │ ├── DSStandaloneAddressesViewController.m │ ├── DSStandaloneDerivationPathKeyInputViewController.h │ ├── DSStandaloneDerivationPathKeyInputViewController.m │ ├── DSStandaloneDerivationPathTableViewCell.h │ ├── DSStandaloneDerivationPathTableViewCell.m │ ├── DSStandaloneDerivationPathViewController.h │ ├── DSStandaloneDerivationPathViewController.m │ ├── DSSyncViewController.h │ ├── DSSyncViewController.m │ ├── DSTopupBlockchainIdentityViewController.h │ ├── DSTopupBlockchainIdentityViewController.m │ ├── DSTransactionAmountTableViewCell.h │ ├── DSTransactionAmountTableViewCell.m │ ├── DSTransactionDetailTableViewCell.h │ ├── DSTransactionDetailTableViewCell.m │ ├── DSTransactionDetailViewController.h │ ├── DSTransactionDetailViewController.m │ ├── DSTransactionFloodingViewController.h │ ├── DSTransactionFloodingViewController.m │ ├── DSTransactionIdentifierTableViewCell.h │ ├── DSTransactionIdentifierTableViewCell.m │ ├── DSTransactionStatusTableViewCell.h │ ├── DSTransactionStatusTableViewCell.m │ ├── DSTransactionTableViewCell.h │ ├── DSTransactionTableViewCell.m │ ├── DSTransactionsViewController.h │ ├── DSTransactionsViewController.m │ ├── DSTransitionTableViewCell.h │ ├── DSTransitionTableViewCell.m │ ├── DSUpdateMasternodeRegistrarViewController.h │ ├── DSUpdateMasternodeRegistrarViewController.m │ ├── DSUpdateMasternodeRevocationViewController.h │ ├── DSUpdateMasternodeRevocationViewController.m │ ├── DSUpdateMasternodeServiceViewController.h │ ├── DSUpdateMasternodeServiceViewController.m │ ├── DSUsernameTableViewCell.h │ ├── DSUsernameTableViewCell.m │ ├── DSWalletChooserTableViewCell.h │ ├── DSWalletChooserTableViewCell.m │ ├── DSWalletChooserViewController.h │ ├── DSWalletChooserViewController.m │ ├── DSWalletDetailViewController.h │ ├── DSWalletDetailViewController.m │ ├── DSWalletInputPhraseViewController.h │ ├── DSWalletInputPhraseViewController.m │ ├── DSWalletTableViewCell.h │ ├── DSWalletTableViewCell.m │ ├── DSWalletViewController.h │ ├── DSWalletViewController.m │ ├── DashSync-Info.plist │ ├── DashSync-Prefix.pch │ ├── Forms │ │ ├── BaseFormCellModel.h │ │ ├── BaseFormCellModel.m │ │ ├── FormSectionModel.h │ │ ├── FormSectionModel.m │ │ ├── FormTableViewController.h │ │ ├── FormTableViewController.m │ │ ├── Selector │ │ │ ├── NamedObject.h │ │ │ ├── SelectorFormCellModel.h │ │ │ ├── SelectorFormCellModel.m │ │ │ ├── SelectorFormTableViewCell.h │ │ │ ├── SelectorFormTableViewCell.m │ │ │ └── SelectorFormTableViewCell.xib │ │ ├── Switcher │ │ │ ├── SwitcherFormCellModel.h │ │ │ ├── SwitcherFormCellModel.m │ │ │ ├── SwitcherFormTableViewCell.h │ │ │ ├── SwitcherFormTableViewCell.m │ │ │ └── SwitcherFormTableViewCell.xib │ │ ├── TextField │ │ │ ├── NumberTextFieldFormCellModel.h │ │ │ ├── NumberTextFieldFormCellModel.m │ │ │ ├── TextFieldFormCellModel.h │ │ │ ├── TextFieldFormCellModel.m │ │ │ ├── TextFieldFormTableViewCell.h │ │ │ ├── TextFieldFormTableViewCell.m │ │ │ └── TextFieldFormTableViewCell.xib │ │ ├── TextInputFormTableViewCell.h │ │ └── TextView │ │ │ ├── PlaceholderTextView.h │ │ │ ├── PlaceholderTextView.m │ │ │ ├── TextViewFormCellModel.h │ │ │ ├── TextViewFormCellModel.m │ │ │ ├── TextViewFormTableViewCell.h │ │ │ ├── TextViewFormTableViewCell.m │ │ │ └── TextViewFormTableViewCell.xib │ ├── Governance.storyboard │ ├── Helpers.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── icon_dash_currency.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_dash_currency.png │ │ │ ├── icon_dash_currency@2x.png │ │ │ └── icon_dash_currency@3x.png │ │ ├── lock.imageset │ │ │ ├── Contents.json │ │ │ └── lock.png │ │ ├── settings.imageset │ │ │ ├── Contents.json │ │ │ └── settings.png │ │ └── shapeshift.imageset │ │ │ ├── Contents.json │ │ │ └── Shapeshift.png │ ├── Invitations.storyboard │ ├── Layer2.storyboard │ ├── Masternodes.storyboard │ ├── Quorums.storyboard │ ├── SearchIdentity.storyboard │ ├── Wallets.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── fr.lproj │ │ ├── InfoPlist.strings │ │ └── LaunchScreen.strings │ └── main.m ├── NetworkInfo │ ├── DSNetworkInfo.h │ ├── DSNetworkInfo.m │ └── main.m ├── Podfile ├── Podfile.lock ├── Tests │ ├── BlocksForReorgTests │ │ ├── devnet-mobile-2-10-b4adedf813c18c51ab640b34f404a00cb24c2e001f82b4c9640f6f88dee89248.block │ │ ├── devnet-mobile-2-100-67c7d9e9e92268a198f1c38dececad014e6d5f1511fb8a0b260908b45b4fa319.block │ │ ├── devnet-mobile-2-101-eda7cca3ad4109de60099e47cfc1446fa22e0ccd7072f573a9de9acf9ba2f61c.block │ │ ├── devnet-mobile-2-102-f8a18aab4a77f2157f4c4409e20c7bcb073c9b14b13312c819da7a89522f8430.block │ │ ├── devnet-mobile-2-103-8ed8e738706817ad56e213dad0c35175834594ba0c3fe5ec5a3e9bd698b85901.block │ │ ├── devnet-mobile-2-104-827d225189b2cad48ecbed28ee093f24e08a994b314c20883d78dd94a72bdf17.block │ │ ├── devnet-mobile-2-105-384621d0c5b5e0f84fe336d37e4cce7d9c2d56493102cf88234254721dd3f35c.block │ │ ├── devnet-mobile-2-106-ffef3e0fb056df29bb835b4fe93e2ef7abd72552ddd7532b1276e3817e6c2967.block │ │ ├── devnet-mobile-2-107-6df21c2de0eaa944db2eca06295b07cc295319319bfbd7b331b216ada6650034.block │ │ ├── devnet-mobile-2-108-38f8fc2cb17efd209de2d5b8769e660ce04509e939c37fe66d0f88ee70c47432.block │ │ ├── devnet-mobile-2-109-c531065a652b5fcb1174994285623b1c201d519e3fec07245491037a9c826600.block │ │ ├── devnet-mobile-2-11-388bfd3200c59bda1344f037d1c4998fcd0e6ca89eaf3295def67f9663cbef31.block │ │ ├── devnet-mobile-2-110-adc04fb6b012674d2e8def645c532c35a3b8eda8ad89cd662c43122ce6541b45.block │ │ ├── devnet-mobile-2-111-6cf7599666d2c5c3ff82f6e21cfb46b07ff93bdd51d05a892e9f2185efac1c70.block │ │ ├── devnet-mobile-2-112-247464375964f25b6f14c3bec6313f9f4d6b6b1d617c42f266433419c7532f5e.block │ │ ├── devnet-mobile-2-113-c6227673d21f7ef0a1d946189b85478a1a40f2402f32dfca88fad955d3632660.block │ │ ├── devnet-mobile-2-114-4d29f31dd200ad97eb24440159ca8de39ac7c06b2a57ad51297fd6f24afdc80a.block │ │ ├── devnet-mobile-2-115-24677f5bde818dc3d3289c1089c2b6ed527778e143b915147b0a8cce5dd6e14d.block │ │ ├── devnet-mobile-2-116-1dc9eb32b5232b4d0912399f60164b2a1fbc1cae92f5a337113aa31fdb505304.block │ │ ├── devnet-mobile-2-117-89d6a3fce7eda00457d7e9998eef1fef56f77243d86b415b5f0174c8d9f20170.block │ │ ├── devnet-mobile-2-118-95791b55e832c18cc6b77c83186d9d67834f21790cf4060bffa624c420cae477.block │ │ ├── devnet-mobile-2-119-74f2778702e0230f3092e91f5bba90469be21aa8b5570dbe1ba1e7a19af98e50.block │ │ ├── devnet-mobile-2-12-1998da7027df7a0e1ef30e00bb2011ffb4880e9a75d2715e45104d899d14d46b.block │ │ ├── devnet-mobile-2-120-c90984b5efbe1092f57ab65bcc915c1e6752f1b9de6cb4592c1588b6077b504d.block │ │ ├── devnet-mobile-2-121-ace09b6b5cb027eddc8f9410ea3bde04429884e675f45bc78dc87deae9875263.block │ │ ├── devnet-mobile-2-122-922a644e84b1a3fd46122ec39616b62ed18f832c1059eff378a278b3760b7e23.block │ │ ├── devnet-mobile-2-123-ec39dcf67f331429dfb0d5d081cdbaca10329ee9ad21bd8a4313c6c60e52e817.block │ │ ├── devnet-mobile-2-124-c21410ec2c310cae5b29aa92d5c936e33930a3402f4626e8d20f67654d60a60f.block │ │ ├── devnet-mobile-2-125-9c9c54917bb438606515fee4bb42c1db62708060e90d7cb43c1816410b928457.block │ │ ├── devnet-mobile-2-126-47aa44259cd904e7a67f5d83cd3a9cf0fddec62b78ed846c895922c10c276e4d.block │ │ ├── devnet-mobile-2-127-d0f0e7d4547d1ea20e088f5eb2505a831e94d89dbae63dd45ddd55e5dfa9cf7e.block │ │ ├── devnet-mobile-2-128-795e3b241d91e9ffbeab8cd26121db3e67fa221aabd2bca77e15d4c296fe020d.block │ │ ├── devnet-mobile-2-129-7088a0c2b9abad7c1063f2854600f76e4df1fd002516edf6b3348f148a717036.block │ │ ├── devnet-mobile-2-13-bb09d9899e974bccdac54bd93339784be63881f648e1962d44fa4de9b76f2b5c.block │ │ ├── devnet-mobile-2-130-a55e2b208d1283e8418cf72668087fc3d3f6319eab5683ab4e19317ec0a5a778.block │ │ ├── devnet-mobile-2-131-24793bce76f11baa2be598c5f099f873306f47dc5daacd16ebefa56bee99bb43.block │ │ ├── devnet-mobile-2-132-367f3ca9f28e9b30b62d683a088dd5644f6495b374136028b81f88cb12d9b562.block │ │ ├── devnet-mobile-2-133-93f79818497556e6ab43a9bde2a825c83d7943948609918dd9cb1543aa88a505.block │ │ ├── devnet-mobile-2-134-b041e02df8bc4bdc17ca6bfa83418986397fe8f70e6ae743506b7e55efe92e03.block │ │ ├── devnet-mobile-2-135-f30b969f7f236686293473582a2d7085fc9eaccf42fdc9cd2789e817ac05ca3e.block │ │ ├── devnet-mobile-2-136-47b528e517a155d1c516c5322df4b8fc073ecc6007a03c9ff2c122e904b98a6d.block │ │ ├── devnet-mobile-2-137-5f53f4b63949f4fe6be6fb6e08cc420afd64065b37da4bc98dd9f99dacd9b549.block │ │ ├── devnet-mobile-2-138-858f627403e75fb82a747868a33fa31cfaf760f9be59f9cb365dc77e5d36333b.block │ │ ├── devnet-mobile-2-139-31bfb6af4e969f7bb3a8cbc5301134609d31beb51899fdbf7e1d1aa10247012d.block │ │ ├── devnet-mobile-2-14-0e0777dd7c1ba071c94734eab7b8a6e3ca96ecac179a0666866688187de32d55.block │ │ ├── devnet-mobile-2-140-bcfb01c15125397505fef240987deae45eec036387880ef225da270ce526d86c.block │ │ ├── devnet-mobile-2-141-178feb7998d0d0717d45001a1ac83f68e7eda5eedc4767f7fcd9ab817c1de109.block │ │ ├── devnet-mobile-2-142-90f0eb6724c2821e0c56129f93a00ed65231f6a2a4006054785327820e494d33.block │ │ ├── devnet-mobile-2-143-f32d7e33e90c52b57a11c6bb3c4f3504616ad700f65bb771fc84b1717684b530.block │ │ ├── devnet-mobile-2-144-4b099638f458dafa9441033007da6d1326c3a4079071653dcb7a97ed4d0a5732.block │ │ ├── devnet-mobile-2-145-ab125ace37ca902f06f3aaefb5746e1516d4004f242d90bf2a16d3d5da247356.block │ │ ├── devnet-mobile-2-146-6ead4082a92789d2f6b56695613ddc7517402e2d7574840b2887308c37577f03.block │ │ ├── devnet-mobile-2-147-805837d2b762d133a601f550349cf97066372940b1b0521798a1f363677ec20a.block │ │ ├── devnet-mobile-2-148-c8bda63f981ff0c959379c5201ce896e9feca663be44a964cb8943776ef72f21.block │ │ ├── devnet-mobile-2-149-bc95116a8e267881538b22438866a8dc9fc7f7f8898c8cbb94d0638b8b865177.block │ │ ├── devnet-mobile-2-15-fe89c65f46343c8fbb6762e2d8a8515af023f7a428326d6be4f4b2bd410acc50.block │ │ ├── devnet-mobile-2-150-2f648516d7e3aa0ff49d61d6494af12344d7588844f38c73bccf3e9cc9652c46.block │ │ ├── devnet-mobile-2-16-8255c0b784c7dcffa49ac58c10a4d859ff4098799189ec833f4700b312301429.block │ │ ├── devnet-mobile-2-17-f5f132aa31719a542cc2773cde38cfbb1b67d771748918e6a8c685f0641b5b57.block │ │ ├── devnet-mobile-2-18-35cdec61fe5ee3549201c1e340b87962f152fe05bf2a9800470546e961b9275d.block │ │ ├── devnet-mobile-2-19-7f1f9ddd404d3bfb8709df1c321ac46dddf46082e3bed11c8306a4372f527b47.block │ │ ├── devnet-mobile-2-2-4dfa92d54fee6b6f7cc7d23d2c1ae3ef8a5179c07a08acb91c9d3826fd627214.block │ │ ├── devnet-mobile-2-20-12bbc13d5c6c9be5e7b5b165fa22a2b96dbef9babae50b30d9b7ea9ab9f37c27.block │ │ ├── devnet-mobile-2-21-2146a19b02773c4b0627623ac5221d883560191cfdbffe7d8d66146d7b0b9138.block │ │ ├── devnet-mobile-2-22-addd0ddcae4f518d640dc7590024758722848a19678a8cdd9eede695865ecd23.block │ │ ├── devnet-mobile-2-23-f90b9b42a9e10182fc0b4ca397fbce913904c1433eb5ea2654171d3586243131.block │ │ ├── devnet-mobile-2-24-e3f26ae7188ce3210e881c001b55132873dda3b322e2547cbd5370e155466742.block │ │ ├── devnet-mobile-2-25-7adfe1628020e4644589fc0b94e8aa4774edac60c1d12dcc3d094694b34dd163.block │ │ ├── devnet-mobile-2-26-0a0db67a83dbd1ce336259a2a1b88b4cb0b9ff55fcfb3a0afdc1ef239c55ad15.block │ │ ├── devnet-mobile-2-27-d7371622cee7d2e73784bfe359b71bd645b68536008519034f3867ee88b62165.block │ │ ├── devnet-mobile-2-28-359b14e1c7cef1929a8d0d05a686fb96bd668362dfdf5185f21a6b7b5975633e.block │ │ ├── devnet-mobile-2-29-4030c76b97037bb5cb15a8244ff16685c70d13646d7499bbfce0537768667e0c.block │ │ ├── devnet-mobile-2-3-0a6c0b73bdae044df65865faefb7b775b66ecddff33b10acada0cf880d43961f.block │ │ ├── devnet-mobile-2-30-455e40ac39d702c3d4be14ba17d9dbcf5b384daf60624d0464b9843fe2b58d6f.block │ │ ├── devnet-mobile-2-31-7475b3cc688893f72504f50da4ac2767adcce89a5cc5ca7a962482133d0cbb15.block │ │ ├── devnet-mobile-2-32-2c970a8938dce7d1e42b2b419f317294a10067dcb38007a0aebf1ef74e074d69.block │ │ ├── devnet-mobile-2-33-4611abae2d129bbe43f72bc1ca4243e61b442c7745a55efee9947b416d073c26.block │ │ ├── devnet-mobile-2-34-08483ea4e11908f6b766aed07824e88b2d7db0c8a3a5d5cc74ac2f3d12a22964.block │ │ ├── devnet-mobile-2-35-56f3eca20d64719b7462abfca48b63e1a516daec38ac6be2d88386f715323f2c.block │ │ ├── devnet-mobile-2-36-0d0979003bbea3eb1746a238cca59fabea210cb8af9dcfd7a81c2c02cf22044b.block │ │ ├── devnet-mobile-2-37-d5c8bbdb47983080c9118c86805c46cd5e7d5be5d7b480bacca58139ddf10b18.block │ │ ├── devnet-mobile-2-38-8b0122c66bc0e1fc821bbb0a63bc0b0e7b6f01f94af282b5465b0fc988adf172.block │ │ ├── devnet-mobile-2-39-413c5f24d7dfc53d0cb54da8f9dbc464f09ed3db77b98f309c25acc30aad797c.block │ │ ├── devnet-mobile-2-4-5731f58ed316daaae1d19a049089da0e237bcb0c1f02425d839178a5d54c8117.block │ │ ├── devnet-mobile-2-40-d1f2b7673a586f540343bbdbd55b209a96a2ed133f149f1184c090c0fe0e6d25.block │ │ ├── devnet-mobile-2-41-dbfe219aa724e60e22149136801a52e3b7841abb4bf8d399fa9213d04be42128.block │ │ ├── devnet-mobile-2-42-360a84155ab844c17d5b6dc8f6cfff828fb81296c2dfb52314910a87bc7c035a.block │ │ ├── devnet-mobile-2-43-065d056d1f8cea2b708bba366820102abcc9dc86657f69681515660838d57169.block │ │ ├── devnet-mobile-2-44-a2b92466c0ce0fcc0ba9ec4d85c0af11e17583eb04c2c50f8ecc14b4295a4d63.block │ │ ├── devnet-mobile-2-45-a69c875aa0443d12a21133d4fa0a80e491ef662c9e5d66525c0d6c8f57239e49.block │ │ ├── devnet-mobile-2-46-6e61a4fc124ddc8639b92e0dfc8bd06883fc5b8a3da0e71b3b8f08342d408d56.block │ │ ├── devnet-mobile-2-47-e6f74de938b78687a715abc281dcddedfd48c643b6738fef2f2b6b389f4c5d1f.block │ │ ├── devnet-mobile-2-48-add109f42503b50917264c9da1eb91aa43f1230917053569b504a1e24f995246.block │ │ ├── devnet-mobile-2-49-7306adc31579eea19def6613d36f4adeb00c7ad5a5e965368ec97d534000425d.block │ │ ├── devnet-mobile-2-5-1c3c1ab8d1e3eb5a4d3357eef2cd1366149cbfacae59e194be11fb4ef575d160.block │ │ ├── devnet-mobile-2-50-0778d17b05512a5bd02bc96d3760c9c32b9b9ba67eee93e24893717559b98d78.block │ │ ├── devnet-mobile-2-51-cd225d62e2c3120631efdf28dfecee235bc39710117b90a7dfe897418e976465.block │ │ ├── devnet-mobile-2-52-1edd407ef8eee96354dfbac3a7d437a0418c612e7d44b7b16b05faf1d87a9f72.block │ │ ├── devnet-mobile-2-53-9f6460248b95b02b7194f494c1f6ef85934754db3b1d28776c1f7b4ad9a1a11f.block │ │ ├── devnet-mobile-2-54-cc304dece1b40c7ecd61adc6133c40db858b920c26a8ec022c7b6107fb739f76.block │ │ ├── devnet-mobile-2-55-be681910fea3a7fb37ac28cd22203e243145e48af20e870946176be390c01507.block │ │ ├── devnet-mobile-2-56-037d46e26bdec05c48c2535eb78d64c3d4e9f945cc9966a5b1ee65207653aa0c.block │ │ ├── devnet-mobile-2-57-16e81e5ab01ff2506b6a1c62aeec5d8569f3baefd58924f3a4679ff9d5307502.block │ │ ├── devnet-mobile-2-58-2004cbdbbdb8aba50fe6102dcf3f2b809251df8871dec7d9929f6e62c1740123.block │ │ ├── devnet-mobile-2-59-17c4aac07cd1bb332e00267562a0f83e0cdd1ea4ffef6097b6cfbef0abaaa077.block │ │ ├── devnet-mobile-2-6-d7b5884a29398dce86c0ec90e59f5ac182755da457de0a06e3e3031de7beb431.block │ │ ├── devnet-mobile-2-60-8090697d5b36899097f56ee02c6dd82b31f46e33fa2aa4224372d2ea50a2a243.block │ │ ├── devnet-mobile-2-61-9590b40c5d061c33d732d46e6913bf5fbcc7ec1eec00e6612d232cfaba2a0748.block │ │ ├── devnet-mobile-2-62-e92d849b19cfaa1bd4d27bdcfdca5cdb9088658c85d3b7382d9f0435a6bb8d36.block │ │ ├── devnet-mobile-2-63-f0bc987206425cdcaba4f4141da0ad7e89ad19acd5354daa70158235b4893978.block │ │ ├── devnet-mobile-2-64-167aff5e0a279569a441a48e929802173d7fa7fd06803c0bf7becf99b306b945.block │ │ ├── devnet-mobile-2-65-9ab79313e6233f216ee8fb77ac335cd56040cbbf697444a4ea35bb8510303977.block │ │ ├── devnet-mobile-2-66-496e00128253f5ae7b6320e8c26c9fa12ee5e4e9b8989df1108c0781c995191a.block │ │ ├── devnet-mobile-2-67-ff6823041405b53c7847e21a26b57cca7197dffd71b6ddd46e6d31ea6d8e5a7f.block │ │ ├── devnet-mobile-2-68-9f8262598478af5f56c580452471659e5333d24d0e1a4c18d424b9651a6e8e41.block │ │ ├── devnet-mobile-2-69-1983d4579f54d1614200bd282f84820e3dbb9a33e841110c0c35fbfddc25242d.block │ │ ├── devnet-mobile-2-7-e7b5c3710e1ebbcc5e7e673dbad29f32bcf6beb70d5430c38f0204675fe8c267.block │ │ ├── devnet-mobile-2-70-530b2a329c3524877a553e3f74ef92f6bcf905fa9edee65531287a81bb520869.block │ │ ├── devnet-mobile-2-71-4e86971c42953982698f61b28b0e040eb7b1759140d1a648b3570709b2e9bf15.block │ │ ├── devnet-mobile-2-72-789769aa3daf5c084817baaad3e8eea7a7f2971e243a102628f7994a0e1cfd7b.block │ │ ├── devnet-mobile-2-73-959f6cadff8bcce2e99816f7ef060474205c61969d10f51f2de3ba2fe67c5354.block │ │ ├── devnet-mobile-2-74-f7e5081a38fbb6fe7a6872aa2885d33da825c6e49d35f266835374320ebcc474.block │ │ ├── devnet-mobile-2-75-df6ae34a1158aeb2e461edb43c342534e735210cf838a404959f25441aa78a55.block │ │ ├── devnet-mobile-2-76-5fcfaabd5557a16b7aaebb0a9d72c4128e6982b4fb8fcb235417066e3acdf617.block │ │ ├── devnet-mobile-2-77-e9b1aa60031085e709d1b6e255a795409fca9c5b824c5bea2a0696d44f073b2f.block │ │ ├── devnet-mobile-2-78-43b87e24ad50837dc882b2f0b831168c4fbd842b0b7a6cc2cfdf7ecaa83b1476.block │ │ ├── devnet-mobile-2-79-61a36a0fd5b273cc7a7a5867b13c35bfdfa0be7cb4ad2e8b8325b6ab5c06642d.block │ │ ├── devnet-mobile-2-8-334656bd0564d306fbdd9a2a80f0f88ee82318fb233a7dc52225a5a78432d26b.block │ │ ├── devnet-mobile-2-80-de9cdd1e1c9c488d63d307a22bcced839631f8e63e13929d328fe8a69232677f.block │ │ ├── devnet-mobile-2-81-da7502b30a2938d306a27195ed12db1dd8ad86e55727ef286a390050da2f686b.block │ │ ├── devnet-mobile-2-82-3fc7cb8e4479956fc63b4517b58afb31a4290ab01d41cd1885ade3b50076ae03.block │ │ ├── devnet-mobile-2-83-19a0840c014599ec80ccdaf37e37ead9db541eddfc2c65e4b260f7cfde01b930.block │ │ ├── devnet-mobile-2-84-576114543145f3458341efd562e1131a09e81443ce9178c0e360c0224c69067f.block │ │ ├── devnet-mobile-2-85-3738b3fd058f928321c852f245c1bb6320c115e2b648db5b5d6a4b305a0cfa0e.block │ │ ├── devnet-mobile-2-86-99e40eaab61c0f0947f9bb86dbe10e3a7e870b654b5d8ada56f487fd33ca3937.block │ │ ├── devnet-mobile-2-87-75e28bb1b42030b8811a9446c7d73b35ce066c93975d0d498e17bfe688e0d623.block │ │ ├── devnet-mobile-2-88-639a8720c852af46c5b418464626d729ea6bb819ef0dc4133c88292d7a4b255e.block │ │ ├── devnet-mobile-2-89-d999162b98c9051b5550d7f50a76ee175c6e5bef0fed8f5a1594e9fd988df312.block │ │ ├── devnet-mobile-2-9-9a99a5718dd9f816e76126d7735101db1fc9cf17d7cde951bef2b5a5c5306565.block │ │ ├── devnet-mobile-2-90-77bd6ad19eddf08e52305720abdb576bc76e8a198db969b2c0fbd7206a131429.block │ │ ├── devnet-mobile-2-91-c9ebdfd577edac9976a57ab3aeb314178e5afa6bda8793e37322de45dc932962.block │ │ ├── devnet-mobile-2-92-2ad19fcdc7e992479c73a9ec6c045d716a5214fa61d83a07d7564023d6e82a27.block │ │ ├── devnet-mobile-2-93-a9027de590b485aa686c6e20c3dbefbc379c13fd9718a2a251a4ae73163a9707.block │ │ ├── devnet-mobile-2-94-f941e1b3a7e52dc29771da6619b08e025f3c7617fcaf999b52b4e918ce191971.block │ │ ├── devnet-mobile-2-95-acece8a2afacc0e6214fe1275ce7e6adbc542844143b283a2dd701aff69ca45e.block │ │ ├── devnet-mobile-2-96-f2efb75bd621e59c7115e5c4bdadae772d178f587687c715f88f7f414d34c66b.block │ │ ├── devnet-mobile-2-97-be0efe037df807088a90535dcfdabe65f2be2692f10b4c4dcb60cfcbcccab346.block │ │ ├── devnet-mobile-2-98-122a74b9aa8c11f9268478b6730c742fc5327a48d3f62786b668834b4a76b53a.block │ │ └── devnet-mobile-2-99-512602b2809102bc0344daa90efea6ad944d199e86eba1f7f82f466570e99b39.block │ ├── CoinJoinTests.xctestplan │ ├── CryptoTests.xctestplan │ ├── DSAttackTests.m │ ├── DSBIP32Tests.m │ ├── DSBIP39Tests.m │ ├── DSBigNumberTests.m │ ├── DSBloomFilterTests.m │ ├── DSChainLockTests.m │ ├── DSChainTests.m │ ├── DSChainedSigningTests.m │ ├── DSCoinJoinSessionTest.m │ ├── DSDIP14Tests.m │ ├── DSDataTests.m │ ├── DSDeterministicMasternodeListTests.m │ ├── DSGovernanceTests.m │ ├── DSHashTests.m │ ├── DSIESEncryptedDataTests.mm │ ├── DSInstantSendLockTests.m │ ├── DSInvitationsTests.m │ ├── DSKeyTests.m │ ├── DSMainnetE2ETests.m │ ├── DSMainnetMetricSyncTests.m │ ├── DSMainnetSyncTests.m │ ├── DSMiningTests.m │ ├── DSPaymentProtocolTests.m │ ├── DSPaymentRequestTests.m │ ├── DSProviderTransactionsTests.m │ ├── DSSparseMerkleTreeTests.m │ ├── DSTestnetE2ETests.m │ ├── DSTestnetMetricSyncTests.m │ ├── DSTestnetSyncTests.m │ ├── DSTransactionTests.m │ ├── DSTransitionTests.m │ ├── DSUInt256IndexPathTests.m │ ├── DSWalletTests.m │ ├── DerivationTests.xctestplan │ ├── DiffListTestnet119064to119200.dat │ ├── FullUnitTestPlan.xctestplan │ ├── GovernanceTests.xctestplan │ ├── LibraryTests.xctestplan │ ├── LockTests.xctestplan │ ├── MDCDamerauLevenshteinTests │ │ ├── MDCDamerauLevenshteinDistanceTests.m │ │ └── MDCLevenshteinDistanceTests.m │ ├── ML_at_122088.dat │ ├── MNLIST_1746460.dat │ ├── MNL_0_1090944.dat │ ├── MNL_0_1092888.dat │ ├── MNL_0_1093824.dat │ ├── MNL_0_1094976.dat │ ├── MNL_0_1095720.dat │ ├── MNL_0_1096704.dat │ ├── MNL_0_122064.dat │ ├── MNL_0_122928.dat │ ├── MNL_0_370368.dat │ ├── MNL_0_379567.dat │ ├── MNL_1090944_1091520.dat │ ├── MNL_1091520_1091808.dat │ ├── MNL_1091808_1092096.dat │ ├── MNL_1092096_1092336.dat │ ├── MNL_1092336_1092360.dat │ ├── MNL_1092360_1092384.dat │ ├── MNL_1092384_1092408.dat │ ├── MNL_1092408_1092432.dat │ ├── MNL_1092432_1092456.dat │ ├── MNL_1092456_1092480.dat │ ├── MNL_1092480_1092504.dat │ ├── MNL_1092504_1092528.dat │ ├── MNL_1092528_1092552.dat │ ├── MNL_1092552_1092576.dat │ ├── MNL_1092576_1092600.dat │ ├── MNL_1092600_1092624.dat │ ├── MNL_1092624_1092648.dat │ ├── MNL_1092648_1092672.dat │ ├── MNL_1092672_1092696.dat │ ├── MNL_1092696_1092720.dat │ ├── MNL_1092720_1092744.dat │ ├── MNL_1092744_1092768.dat │ ├── MNL_1092768_1092792.dat │ ├── MNL_1092792_1092816.dat │ ├── MNL_1092816_1092840.dat │ ├── MNL_1092840_1092864.dat │ ├── MNL_1092864_1092888.dat │ ├── MNL_1092888_1092912.dat │ ├── MNL_1092888_1092916.dat │ ├── MNL_1092916_1092940.dat │ ├── MNL_1093824_1094400.dat │ ├── MNL_1094400_1094976.dat │ ├── MNL_1094976_1095264.dat │ ├── MNL_1095264_1095432.dat │ ├── MNL_1095432_1095456.dat │ ├── MNL_1095456_1095480.dat │ ├── MNL_1095480_1095504.dat │ ├── MNL_1095504_1095528.dat │ ├── MNL_1095528_1095552.dat │ ├── MNL_1095552_1095576.dat │ ├── MNL_1095576_1095600.dat │ ├── MNL_1095600_1095624.dat │ ├── MNL_1095624_1095648.dat │ ├── MNL_1095648_1095672.dat │ ├── MNL_1095672_1095696.dat │ ├── MNL_1095696_1095720.dat │ ├── MNL_1095720_1095744.dat │ ├── MNL_1095744_1095768.dat │ ├── MNL_1095768_1095792.dat │ ├── MNL_1095792_1095816.dat │ ├── MNL_1095816_1095840.dat │ ├── MNL_1095840_1095864.dat │ ├── MNL_1095864_1095888.dat │ ├── MNL_1095888_1095912.dat │ ├── MNL_1095912_1095936.dat │ ├── MNL_1095936_1095960.dat │ ├── MNL_1095960_1095984.dat │ ├── MNL_1095984_1096003.dat │ ├── MNL_1096704_1097280.dat │ ├── MNL_1097280_1097856.dat │ ├── MNL_1097856_1098144.dat │ ├── MNL_1098144_1098432.dat │ ├── MNL_1098432_1098456.dat │ ├── MNL_1098456_1098480.dat │ ├── MNL_1098480_1098504.dat │ ├── MNL_1098504_1098528.dat │ ├── MNL_1098528_1098552.dat │ ├── MNL_1098552_1098576.dat │ ├── MNL_1098576_1098600.dat │ ├── MNL_1098600_1098624.dat │ ├── MNL_1098624_1098648.dat │ ├── MNL_1098648_1098672.dat │ ├── MNL_1098672_1098696.dat │ ├── MNL_1098696_1098720.dat │ ├── MNL_1098720_1098744.dat │ ├── MNL_1098744_1098768.dat │ ├── MNL_1098768_1098792.dat │ ├── MNL_1098792_1098816.dat │ ├── MNL_1098816_1098840.dat │ ├── MNL_1098840_1098864.dat │ ├── MNL_1098864_1098888.dat │ ├── MNL_1098888_1098912.dat │ ├── MNL_1098912_1098936.dat │ ├── MNL_1098936_1098960.dat │ ├── MNL_1098960_1098984.dat │ ├── MNL_1098984_1099008.dat │ ├── MNL_122064_122088.dat │ ├── MNL_122928_123000.dat │ ├── MNL_1316160_1334592.dat │ ├── MNL_1316160_1336879.dat │ ├── MNL_1334592_1335168.dat │ ├── MNL_1335168_1335744.dat │ ├── MNL_1335744_1336032.dat │ ├── MNL_1336032_1336296.dat │ ├── MNL_1336296_1336320.dat │ ├── MNL_1336320_1336344.dat │ ├── MNL_1336344_1336368.dat │ ├── MNL_1336368_1336392.dat │ ├── MNL_1336392_1336416.dat │ ├── MNL_1336416_1336440.dat │ ├── MNL_1336440_1336464.dat │ ├── MNL_1336464_1336488.dat │ ├── MNL_1336488_1336512.dat │ ├── MNL_1336512_1336536.dat │ ├── MNL_1336536_1336560.dat │ ├── MNL_1336560_1336584.dat │ ├── MNL_1336584_1336608.dat │ ├── MNL_1336608_1336632.dat │ ├── MNL_1336632_1336656.dat │ ├── MNL_1336656_1336680.dat │ ├── MNL_1336680_1336704.dat │ ├── MNL_1336704_1336728.dat │ ├── MNL_1336728_1336752.dat │ ├── MNL_1336752_1336776.dat │ ├── MNL_1336776_1336800.dat │ ├── MNL_1336800_1336824.dat │ ├── MNL_1336824_1336848.dat │ ├── MNL_1336848_1336872.dat │ ├── MNL_1336848_1336879.dat │ ├── MNL_1336879_1336885.dat │ ├── MNL_1336879_1336896.dat │ ├── MNL_1336879_1336911.dat │ ├── MNL_1336896_1336911.dat │ ├── MNL_1746460_1746516.dat │ ├── MNL_370368_370944.dat │ ├── MainnetSyncTests.xctestplan │ ├── MasternodeList1088800.dat │ ├── MasternodeListTestnet119064.dat │ ├── MasternodeListTests.xctestplan │ ├── Metrics.xctestplan │ ├── PaymentTests.xctestplan │ ├── PlatformTransitionTests.xctestplan │ ├── TestnetE2ETests.xctestplan │ ├── TestnetSyncTests.xctestplan │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── TransactionTests.xctestplan │ ├── WalletTests.xctestplan │ ├── en.lproj │ │ └── InfoPlist.strings │ └── fr.lproj │ │ └── InfoPlist.strings ├── check_lint.sh └── run_oclint.sh ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── Scripts ├── export_currencies.swift └── fixedpeers-check.py ├── _Pods.xcodeproj └── dapi-grpc-pod-installer ├── Podfile ├── Podfile.lock ├── dapi-grpc-pod-installer.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── dapi-grpc-pod-installer.xcworkspace └── contents.xcworkspacedata └── dapi-grpc-pod-installer ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── SceneDelegate.h ├── SceneDelegate.m ├── ViewController.h ├── ViewController.m └── main.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/e2eTestsTestnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/e2eTestsTestnet.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/network.yml -------------------------------------------------------------------------------- /.github/workflows/syncTestMainnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/syncTestMainnet.yml -------------------------------------------------------------------------------- /.github/workflows/syncTestTestnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/syncTestTestnet.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/.tx/config -------------------------------------------------------------------------------- /ChainResources/HeightTransactionZones_Mainnet.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/ChainResources/HeightTransactionZones_Mainnet.dat -------------------------------------------------------------------------------- /ChainResources/MaxTransactionInfo_Mainnet.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/ChainResources/MaxTransactionInfo_Mainnet.dat -------------------------------------------------------------------------------- /DAPI-GRPC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DAPI-GRPC.podspec -------------------------------------------------------------------------------- /DashSync.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync.podspec -------------------------------------------------------------------------------- /DashSync/iOS/Categories/UIColor+DSStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Categories/UIColor+DSStyle.h -------------------------------------------------------------------------------- /DashSync/iOS/Categories/UIColor+DSStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Categories/UIColor+DSStyle.m -------------------------------------------------------------------------------- /DashSync/iOS/Categories/UIImage+DSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Categories/UIImage+DSUtils.h -------------------------------------------------------------------------------- /DashSync/iOS/Categories/UIImage+DSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Categories/UIImage+DSUtils.m -------------------------------------------------------------------------------- /DashSync/iOS/Categories/UIWindow+DSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Categories/UIWindow+DSUtils.h -------------------------------------------------------------------------------- /DashSync/iOS/Categories/UIWindow+DSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Categories/UIWindow+DSUtils.m -------------------------------------------------------------------------------- /DashSync/iOS/Models/Device/DSPasteboardAddressExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Models/Device/DSPasteboardAddressExtractor.h -------------------------------------------------------------------------------- /DashSync/iOS/Models/Device/DSPasteboardAddressExtractor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/iOS/Models/Device/DSPasteboardAddressExtractor.m -------------------------------------------------------------------------------- /DashSync/macOS/Categories/NSColor+DSStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/macOS/Categories/NSColor+DSStyle.h -------------------------------------------------------------------------------- /DashSync/macOS/Categories/NSColor+DSStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/macOS/Categories/NSColor+DSStyle.m -------------------------------------------------------------------------------- /DashSync/macOS/Categories/NSImage+DSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/macOS/Categories/NSImage+DSUtils.h -------------------------------------------------------------------------------- /DashSync/macOS/Categories/NSImage+DSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/macOS/Categories/NSImage+DSUtils.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/BigIntTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/BigIntTypes.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/DSTransaction+Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/DSTransaction+Utils.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/DSTransaction+Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/DSTransaction+Utils.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSArray+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSArray+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSArray+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSArray+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSCoder+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSCoder+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSCoder+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSCoder+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSData+DSHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSData+DSHash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSData+DSHash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSData+DSHash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSData+DSMerkAVLTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSData+DSMerkAVLTree.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSData+DSMerkAVLTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSData+DSMerkAVLTree.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSData+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSData+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSData+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSData+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSMutableData+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSMutableData+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSData/NSMutableData+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSData/NSMutableData+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSDate+Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSDate+Utils.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSDate+Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSDate+Utils.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSDictionary+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSDictionary+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSDictionary+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSDictionary+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSIndexPath+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSIndexPath+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSIndexPath+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSIndexPath+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSIndexPath+FFI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSIndexPath+FFI.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSIndexPath+FFI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSIndexPath+FFI.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSManagedObject+Sugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSManagedObject+Sugar.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSManagedObject+Sugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSManagedObject+Sugar.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSManagedObjectContext+DSSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSManagedObjectContext+DSSugar.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSManagedObjectContext+DSSugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSManagedObjectContext+DSSugar.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSMutableArray+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSMutableArray+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSMutableArray+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSMutableArray+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSMutableSet+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSMutableSet+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSMutableSet+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSMutableSet+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSPredicate+DSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSPredicate+DSUtils.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSPredicate+DSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSPredicate+DSUtils.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSSet+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSSet+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSSet+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSSet+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSString+Bitcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSString+Bitcoin.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSString+Bitcoin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSString+Bitcoin.m -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSString+Dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSString+Dash.h -------------------------------------------------------------------------------- /DashSync/shared/Categories/NSString+Dash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Categories/NSString+Dash.m -------------------------------------------------------------------------------- /DashSync/shared/CurrenciesByCode.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/CurrenciesByCode.plist -------------------------------------------------------------------------------- /DashSync/shared/DashSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/DashSync.h -------------------------------------------------------------------------------- /DashSync/shared/DashSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/DashSync.m -------------------------------------------------------------------------------- /DashSync/shared/DashSync.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/DashSync.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /DashSync/shared/FixedPeers.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/FixedPeers.plist -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSLogger.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSLogger.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSMerkleTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSMerkleTree.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSMerkleTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSMerkleTree.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSMutableOrderedDataKeyDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSMutableOrderedDataKeyDictionary.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSMutableOrderedDataKeyDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSMutableOrderedDataKeyDictionary.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSPermissionNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSPermissionNotification.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSPermissionNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSPermissionNotification.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSPlatformRootMerkleTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSPlatformRootMerkleTree.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSPlatformRootMerkleTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSPlatformRootMerkleTree.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSReachabilityManager.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSReachabilityManager.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSUInt256IndexPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSUInt256IndexPath.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/DSUInt256IndexPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/DSUInt256IndexPath.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/IntervalTree/IntervalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/IntervalTree/IntervalTree.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/IntervalTree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/IntervalTree/LICENSE -------------------------------------------------------------------------------- /DashSync/shared/Libraries/IntervalTree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/IntervalTree/README.md -------------------------------------------------------------------------------- /DashSync/shared/Libraries/IntervalTree/RHIntervalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/IntervalTree/RHIntervalTree.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/IntervalTree/RHIntervalTree.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/IntervalTree/RHIntervalTree.mm -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Logs/CompressingLogFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Logs/CompressingLogFileManager.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Logs/CompressingLogFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Logs/CompressingLogFileManager.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/MDCDamerauLevenshtein/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/MDCDamerauLevenshtein/LICENSE -------------------------------------------------------------------------------- /DashSync/shared/Libraries/MDCDamerauLevenshtein/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/MDCDamerauLevenshtein/README.md -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/DSNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/DSNetworking.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPCancellationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPCancellationToken.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPLoader.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPLoader.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPLoaderAuthoriser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPLoaderAuthoriser.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPLoaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPLoaderDelegate.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPLoaderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPLoaderFactory.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPLoaderFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPLoaderFactory.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRateLimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRateLimiter.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRateLimiter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRateLimiter.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRateLimiterMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRateLimiterMap.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRateLimiterMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRateLimiterMap.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRequestOperation.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPRequestOperation.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPResponse.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPResponse.m -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPService.h -------------------------------------------------------------------------------- /DashSync/shared/Libraries/Networking/HTTPService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Libraries/Networking/HTTPService.m -------------------------------------------------------------------------------- /DashSync/shared/MainnetFixedPeers.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/MainnetFixedPeers.plist -------------------------------------------------------------------------------- /DashSync/shared/MasternodeLists/ML1088640__70218.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/MasternodeLists/ML1088640__70218.dat -------------------------------------------------------------------------------- /DashSync/shared/MasternodeLists/ML1720000__70218.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/MasternodeLists/ML1720000__70218.dat -------------------------------------------------------------------------------- /DashSync/shared/MasternodeLists/MNT530000__70228.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/MasternodeLists/MNT530000__70228.dat -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSBlock+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSBlock+Protected.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSBlock.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSBlock.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSChain+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSChain+Protected.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSChain.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSChain.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSChainCheckpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSChainCheckpoints.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSChainConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSChainConstants.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSChainLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSChainLock.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSChainLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSChainLock.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSCheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSCheckpoint.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSCheckpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSCheckpoint.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSFullBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSFullBlock.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSFullBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSFullBlock.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSMerkleBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSMerkleBlock.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Chain/DSMerkleBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Chain/DSMerkleBlock.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinControl.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinControl.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinJoinBalance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinJoinBalance.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinJoinBalance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinJoinBalance.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinJoinManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinJoinManager.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinJoinManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinJoinManager.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinJoinWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinJoinWrapper.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCoinJoinWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCoinJoinWrapper.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCompactTallyItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCompactTallyItem.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSCompactTallyItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSCompactTallyItem.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSInputCoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSInputCoin.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSInputCoin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSInputCoin.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSTransaction+CoinJoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSTransaction+CoinJoin.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSTransaction+CoinJoin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSTransaction+CoinJoin.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSTransactionInput+CoinJoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSTransactionInput+CoinJoin.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/DSTransactionInput+CoinJoin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/DSTransactionInput+CoinJoin.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/Utils/DSBackoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/Utils/DSBackoff.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/Utils/DSBackoff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/Utils/DSBackoff.m -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/Utils/DSMasternodeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/Utils/DSMasternodeGroup.h -------------------------------------------------------------------------------- /DashSync/shared/Models/CoinJoin/Utils/DSMasternodeGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/CoinJoin/Utils/DSMasternodeGroup.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Crypto/DSSparseMerkleTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Crypto/DSSparseMerkleTree.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Crypto/DSSparseMerkleTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Crypto/DSSparseMerkleTree.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSDAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSDAPIClient.h -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSDAPIClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSDAPIClient.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformDocumentsRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformDocumentsRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformDocumentsRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformDocumentsRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformPathQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformPathQuery.h -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformPathQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformPathQuery.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformQuery.h -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformQuery.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformTreeQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformTreeQuery.h -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DSPlatformTreeQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DSPlatformTreeQuery.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DashPlatformProtocol+DashSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DashPlatformProtocol+DashSync.h -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/DashPlatformProtocol+DashSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/DashPlatformProtocol+DashSync.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/NSPredicate+CBORData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/NSPredicate+CBORData.h -------------------------------------------------------------------------------- /DashSync/shared/Models/DAPI/NSPredicate+CBORData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DAPI/NSPredicate+CBORData.m -------------------------------------------------------------------------------- /DashSync/shared/Models/DSSocketHelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/DSSocketHelpers.c -------------------------------------------------------------------------------- /DashSync/shared/Models/Derivation Paths/DSDerivationPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Derivation Paths/DSDerivationPath.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Derivation Paths/DSDerivationPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Derivation Paths/DSDerivationPath.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Entities/DSChainEntity+CoreDataClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Entities/DSChainEntity+CoreDataClass.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Entities/DSContactRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Entities/DSContactRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Entities/DSContactRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Entities/DSContactRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Governance/DSGovernanceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Governance/DSGovernanceObject.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Governance/DSGovernanceObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Governance/DSGovernanceObject.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Governance/DSGovernanceVote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Governance/DSGovernanceVote.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Governance/DSGovernanceVote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Governance/DSGovernanceVote.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSBlockchainIdentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSBlockchainIdentity.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSBlockchainIdentity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSBlockchainIdentity.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSBlockchainInvitation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSBlockchainInvitation.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSBlockchainInvitation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSBlockchainInvitation.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSPotentialContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSPotentialContact.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSPotentialContact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSPotentialContact.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSTransientDashpayUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSTransientDashpayUser.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Identity/DSTransientDashpayUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Identity/DSTransientDashpayUser.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Keys/DSKeySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Keys/DSKeySequence.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Keys/NSData+Encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Keys/NSData+Encryption.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Keys/NSData+Encryption.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Keys/NSData+Encryption.mm -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSLocalMasternode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSLocalMasternode.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSLocalMasternode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSLocalMasternode.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSMasternodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSMasternodeList.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSMasternodeList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSMasternodeList.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSMasternodeListStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSMasternodeListStore.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSMasternodeListStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSMasternodeListStore.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSQuorumEntry+Mndiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSQuorumEntry+Mndiff.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSQuorumEntry+Mndiff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSQuorumEntry+Mndiff.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSQuorumEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSQuorumEntry.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSQuorumEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSQuorumEntry.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSQuorumSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSQuorumSnapshot.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Masternode/DSQuorumSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Masternode/DSQuorumSnapshot.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSAddrRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSAddrRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSAddrRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSAddrRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSFilterLoadRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSFilterLoadRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSFilterLoadRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSFilterLoadRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSGetBlocksRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSGetBlocksRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSGetBlocksRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSGetBlocksRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSGetDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSGetDataRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSGetDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSGetDataRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSGetHeadersRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSGetHeadersRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSGetHeadersRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSGetHeadersRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSInvRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSInvRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSInvRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSInvRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSMessageRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSMessageRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSMessageRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSMessageRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSNotFoundRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSNotFoundRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSNotFoundRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSNotFoundRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSPingRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSPingRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSPingRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSPingRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSVersionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSVersionRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Messages/DSVersionRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Messages/DSVersionRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Network/DSBloomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Network/DSBloomFilter.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Network/DSBloomFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Network/DSBloomFilter.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Network/DSPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Network/DSPeer.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Network/DSPeer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Network/DSPeer.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Notifications/DSSyncState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Notifications/DSSyncState.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Notifications/DSSyncState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Notifications/DSSyncState.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Payment/DSPaymentProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Payment/DSPaymentProtocol.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Payment/DSPaymentProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Payment/DSPaymentProtocol.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Payment/DSPaymentRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Payment/DSPaymentRequest.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Payment/DSPaymentRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Payment/DSPaymentRequest.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Persistence/DSDataController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Persistence/DSDataController.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Persistence/DSDataController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Persistence/DSDataController.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Base/DPBaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Base/DPBaseObject.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Base/DPBaseObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Base/DPBaseObject.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Base/DPTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Base/DPTypes.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Contract/DPContract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Contract/DPContract.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Contract/DPContract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Contract/DPContract.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Contract/DSDocumentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Contract/DSDocumentType.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Contract/DSDocumentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Contract/DSDocumentType.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/DPErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/DPErrors.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/DPErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/DPErrors.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/DSDashPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/DSDashPlatform.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/DSDashPlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/DSDashPlatform.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Document/DPDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Document/DPDocument.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Document/DPDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Document/DPDocument.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Document/DPDocumentState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Document/DPDocumentState.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Document/DPDocumentState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Document/DPDocumentState.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Transitions/DSTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Transitions/DSTransition.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Platform/Transitions/DSTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Platform/Transitions/DSTransition.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Spork/DSSpork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Spork/DSSpork.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Spork/DSSpork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Spork/DSSpork.m -------------------------------------------------------------------------------- /DashSync/shared/Models/System/DSEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/System/DSEnvironment.h -------------------------------------------------------------------------------- /DashSync/shared/Models/System/DSEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/System/DSEnvironment.m -------------------------------------------------------------------------------- /DashSync/shared/Models/System/DSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/System/DSError.h -------------------------------------------------------------------------------- /DashSync/shared/Models/System/DSError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/System/DSError.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Transactions/Base/DSTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Transactions/Base/DSTransaction.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Transactions/Base/DSTransaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Transactions/Base/DSTransaction.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Transactions/DSTransactionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Transactions/DSTransactionFactory.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Transactions/DSTransactionFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Transactions/DSTransactionFactory.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSAccount.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSAccount.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSBIP39Mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSBIP39Mnemonic.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSBIP39Mnemonic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSBIP39Mnemonic.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSMnemonic.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSWallet+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSWallet+Protected.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSWallet.h -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSWallet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSWallet.m -------------------------------------------------------------------------------- /DashSync/shared/Models/Wallet/DSWalletConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/Models/Wallet/DSWalletConstants.m -------------------------------------------------------------------------------- /DashSync/shared/TestnetFixedPeers.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/TestnetFixedPeers.plist -------------------------------------------------------------------------------- /DashSync/shared/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/bg.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/bg.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/cs.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/cs.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/dac-contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/dac-contract.json -------------------------------------------------------------------------------- /DashSync/shared/dashpay-contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/dashpay-contract.json -------------------------------------------------------------------------------- /DashSync/shared/dashthumbnail-contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/dashthumbnail-contract.json -------------------------------------------------------------------------------- /DashSync/shared/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/de.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/de.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/dpns-contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/dpns-contract.json -------------------------------------------------------------------------------- /DashSync/shared/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/el.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/el.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/en.lproj/BIP39Words.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/en.lproj/BIP39Words.plist -------------------------------------------------------------------------------- /DashSync/shared/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/es.lproj/BIP39Words.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/es.lproj/BIP39Words.plist -------------------------------------------------------------------------------- /DashSync/shared/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/es.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/es.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/fr.lproj/BIP39Words.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/fr.lproj/BIP39Words.plist -------------------------------------------------------------------------------- /DashSync/shared/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/fr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/fr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/id.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/id.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/it.lproj/BIP39Words.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/it.lproj/BIP39Words.plist -------------------------------------------------------------------------------- /DashSync/shared/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/it.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/it.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/ja.lproj/BIP39Words.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ja.lproj/BIP39Words.plist -------------------------------------------------------------------------------- /DashSync/shared/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/ja.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ja.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/ko.lproj/BIP39Words.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ko.lproj/BIP39Words.plist -------------------------------------------------------------------------------- /DashSync/shared/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/ko.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ko.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/nl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/nl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/pl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/pl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/pt.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/pt.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/ru.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/ru.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/sk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/sk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/th.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/th.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/tr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/tr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/uk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/uk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/vi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/vi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/zh-Hans.lproj/BIP39Words.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/zh-Hans.lproj/BIP39Words.plist -------------------------------------------------------------------------------- /DashSync/shared/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/zh-Hans.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/zh-Hans.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashSync/shared/zh-Hant-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/zh-Hant-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashSync/shared/zh-Hant-TW.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/DashSync/shared/zh-Hant-TW.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Docs/github-dashsync-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Docs/github-dashsync-image.jpg -------------------------------------------------------------------------------- /Example/.bartycrouch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/.bartycrouch.toml -------------------------------------------------------------------------------- /Example/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/.clang-format -------------------------------------------------------------------------------- /Example/.oclint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/.oclint -------------------------------------------------------------------------------- /Example/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Example/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/DAPI-GRPC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DAPI-GRPC.podspec -------------------------------------------------------------------------------- /Example/DashSync.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DashSync.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DashSync/Actions.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Actions.storyboard -------------------------------------------------------------------------------- /Example/DashSync/BRBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/BRBubbleView.h -------------------------------------------------------------------------------- /Example/DashSync/BRBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/BRBubbleView.m -------------------------------------------------------------------------------- /Example/DashSync/BRCopyLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/BRCopyLabel.h -------------------------------------------------------------------------------- /Example/DashSync/BRCopyLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/BRCopyLabel.m -------------------------------------------------------------------------------- /Example/DashSync/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/DashSync/BlockchainIdentities.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/BlockchainIdentities.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Contacts.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Contacts.storyboard -------------------------------------------------------------------------------- /Example/DashSync/DSAccountChooserTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountChooserTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSAccountChooserTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountChooserTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSAccountChooserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountChooserViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSAccountChooserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountChooserViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSAccountTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSAccountTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSAccountsDerivationPathsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountsDerivationPathsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSAccountsDerivationPathsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountsDerivationPathsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSAccountsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSAccountsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAccountsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSActionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSActionsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSActionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSActionsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSAddDAPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDAPViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSAddDAPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDAPViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSAddDevnetAddIPAddressTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDevnetAddIPAddressTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSAddDevnetAddIPAddressTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDevnetAddIPAddressTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSAddDevnetIPAddressTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDevnetIPAddressTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSAddDevnetIPAddressTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDevnetIPAddressTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSAddDevnetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDevnetViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSAddDevnetViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddDevnetViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSAddressTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddressTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSAddressTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddressTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSAddressesExporterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddressesExporterViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSAddressesExporterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddressesExporterViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSAddressesTransactionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddressesTransactionsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSAddressesTransactionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAddressesTransactionsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAppDelegate.h -------------------------------------------------------------------------------- /Example/DashSync/DSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSAppDelegate.m -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainExplorerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainExplorerViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainExplorerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainExplorerViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentitiesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentitiesViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentitiesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentitiesViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentityKeyTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentityKeyTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentityKeyTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentityKeyTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentityKeysViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentityKeysViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentityKeysViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentityKeysViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentitySearchTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentitySearchTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentitySearchTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentitySearchTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentityTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentityTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSBlockchainIdentityTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSBlockchainIdentityTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSChainTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSChainTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSChainTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSChainTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSChainsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSChainsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSChainsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSChainsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSClaimMasternodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSClaimMasternodeViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSClaimMasternodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSClaimMasternodeViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSCoinJoinViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSCoinJoinViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSCoinJoinViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSCoinJoinViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactProfileAvatarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactProfileAvatarView.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactProfileAvatarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactProfileAvatarView.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactProfileViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactProfileViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactRelationshipInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactRelationshipInfoViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactRelationshipInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactRelationshipInfoViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactSendDashViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactSendDashViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactSendDashViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactSendDashViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactTransactionTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactTransactionTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactTransactionTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactTransactionTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactTransactionTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactTransactionTableViewCell.xib -------------------------------------------------------------------------------- /Example/DashSync/DSContactsNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactsNavigationController.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactsNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactsNavigationController.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactsTabBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactsTabBarViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactsTabBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactsTabBarViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSContactsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSContactsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContactsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSContractTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContractTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSContractTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSContractTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSCreateInvitationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSCreateInvitationViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSCreateInvitationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSCreateInvitationViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSDAPICallsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPICallsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSDAPICallsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPICallsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSDAPIGetAddressSummaryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPIGetAddressSummaryViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSDAPIGetAddressSummaryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPIGetAddressSummaryViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSDAPIGetUserInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPIGetUserInfoViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSDAPIGetUserInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPIGetUserInfoViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSDAPListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPListViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSDAPListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDAPListViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSDerivationPathTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDerivationPathTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSDerivationPathTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSDerivationPathTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSErrorSimulationsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSErrorSimulationsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSErrorSimulationsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSErrorSimulationsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSFetchedResultsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSFetchedResultsTableViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSFetchedResultsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSFetchedResultsTableViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSGovernanceObjectListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSGovernanceObjectListViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSGovernanceObjectListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSGovernanceObjectListViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSIdentityChooserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSIdentityChooserViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSIdentityChooserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSIdentityChooserViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSIncomingContactsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSIncomingContactsTableViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSIncomingContactsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSIncomingContactsTableViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSInvitationDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSInvitationDetailViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSInvitationDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSInvitationDetailViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSInvitationTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSInvitationTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSInvitationTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSInvitationTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSInvitationsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSInvitationsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSInvitationsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSInvitationsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSKeyValueTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSKeyValueTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSKeyValueTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSKeyValueTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSLayer2ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSLayer2ViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSLayer2ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSLayer2ViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeDetailViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeDetailViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeListTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeListTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeListTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeListTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeListsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeListsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeListsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeListsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSMasternodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMasternodeViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSMerkleBlockTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMerkleBlockTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSMerkleBlockTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMerkleBlockTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSMiningViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMiningViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSMiningViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSMiningViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSOutgoingContactsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSOutgoingContactsTableViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSOutgoingContactsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSOutgoingContactsTableViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSPeerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSPeerTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSPeerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSPeerTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSPeersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSPeersViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSPeersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSPeersViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSProposalCreatorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProposalCreatorViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSProposalCreatorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProposalCreatorViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSProposalTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProposalTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSProposalTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProposalTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSProviderUpdateRegistrarTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProviderUpdateRegistrarTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSProviderUpdateRegistrarTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProviderUpdateRegistrarTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSProviderUpdateServiceTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProviderUpdateServiceTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSProviderUpdateServiceTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSProviderUpdateServiceTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSQuorumListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSQuorumListViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSQuorumListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSQuorumListViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSQuorumTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSQuorumTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSQuorumTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSQuorumTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSReclaimMasternodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSReclaimMasternodeViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSReclaimMasternodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSReclaimMasternodeViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSRegisterContractsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSRegisterContractsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSRegisterContractsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSRegisterContractsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSRegisterMasternodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSRegisterMasternodeViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSRegisterMasternodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSRegisterMasternodeViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSRegisterTLDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSRegisterTLDViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSRegisterTLDViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSRegisterTLDViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSSendAmountViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSendAmountViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSSendAmountViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSendAmountViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSettingsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSettingsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSSignPayloadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSignPayloadViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSSignPayloadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSignPayloadViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSSporkTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSporkTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSSporkTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSporkTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSSporksViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSporksViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSSporksViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSporksViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSStandaloneAddressesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSStandaloneAddressesViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSStandaloneAddressesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSStandaloneAddressesViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSStandaloneDerivationPathTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSStandaloneDerivationPathTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSStandaloneDerivationPathTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSStandaloneDerivationPathTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSSyncViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSyncViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSSyncViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSSyncViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSTopupBlockchainIdentityViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTopupBlockchainIdentityViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSTopupBlockchainIdentityViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTopupBlockchainIdentityViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionAmountTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionAmountTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionAmountTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionAmountTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionDetailTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionDetailTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionDetailTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionDetailTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionDetailViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionDetailViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionFloodingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionFloodingViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionFloodingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionFloodingViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionIdentifierTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionIdentifierTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionIdentifierTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionIdentifierTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionStatusTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionStatusTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionStatusTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionStatusTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionsViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransactionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransactionsViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSTransitionTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransitionTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSTransitionTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSTransitionTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSUpdateMasternodeServiceViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSUpdateMasternodeServiceViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSUpdateMasternodeServiceViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSUpdateMasternodeServiceViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSUsernameTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSUsernameTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSUsernameTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSUsernameTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSWalletChooserTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletChooserTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSWalletChooserTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletChooserTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSWalletChooserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletChooserViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSWalletChooserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletChooserViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSWalletDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletDetailViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSWalletDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletDetailViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSWalletInputPhraseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletInputPhraseViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSWalletInputPhraseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletInputPhraseViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DSWalletTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/DSWalletTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletTableViewCell.m -------------------------------------------------------------------------------- /Example/DashSync/DSWalletViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletViewController.h -------------------------------------------------------------------------------- /Example/DashSync/DSWalletViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DSWalletViewController.m -------------------------------------------------------------------------------- /Example/DashSync/DashSync-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DashSync-Info.plist -------------------------------------------------------------------------------- /Example/DashSync/DashSync-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/DashSync-Prefix.pch -------------------------------------------------------------------------------- /Example/DashSync/Forms/BaseFormCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/BaseFormCellModel.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/BaseFormCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/BaseFormCellModel.m -------------------------------------------------------------------------------- /Example/DashSync/Forms/FormSectionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/FormSectionModel.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/FormSectionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/FormSectionModel.m -------------------------------------------------------------------------------- /Example/DashSync/Forms/FormTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/FormTableViewController.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/FormTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/FormTableViewController.m -------------------------------------------------------------------------------- /Example/DashSync/Forms/Selector/NamedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/Selector/NamedObject.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/Selector/SelectorFormCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/Selector/SelectorFormCellModel.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/Selector/SelectorFormCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/Selector/SelectorFormCellModel.m -------------------------------------------------------------------------------- /Example/DashSync/Forms/Switcher/SwitcherFormCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/Switcher/SwitcherFormCellModel.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/Switcher/SwitcherFormCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/Switcher/SwitcherFormCellModel.m -------------------------------------------------------------------------------- /Example/DashSync/Forms/TextField/TextFieldFormCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/TextField/TextFieldFormCellModel.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/TextField/TextFieldFormCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/TextField/TextFieldFormCellModel.m -------------------------------------------------------------------------------- /Example/DashSync/Forms/TextInputFormTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/TextInputFormTableViewCell.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/TextView/PlaceholderTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/TextView/PlaceholderTextView.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/TextView/PlaceholderTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/TextView/PlaceholderTextView.m -------------------------------------------------------------------------------- /Example/DashSync/Forms/TextView/TextViewFormCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/TextView/TextViewFormCellModel.h -------------------------------------------------------------------------------- /Example/DashSync/Forms/TextView/TextViewFormCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Forms/TextView/TextViewFormCellModel.m -------------------------------------------------------------------------------- /Example/DashSync/Governance.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Governance.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Helpers.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Helpers.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/DashSync/Images.xcassets/lock.imageset/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Images.xcassets/lock.imageset/lock.png -------------------------------------------------------------------------------- /Example/DashSync/Invitations.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Invitations.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Layer2.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Layer2.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Masternodes.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Masternodes.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Quorums.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Quorums.storyboard -------------------------------------------------------------------------------- /Example/DashSync/SearchIdentity.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/SearchIdentity.storyboard -------------------------------------------------------------------------------- /Example/DashSync/Wallets.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/Wallets.storyboard -------------------------------------------------------------------------------- /Example/DashSync/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Example/DashSync/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Example/DashSync/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/DashSync/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/DashSync/main.m -------------------------------------------------------------------------------- /Example/NetworkInfo/DSNetworkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/NetworkInfo/DSNetworkInfo.h -------------------------------------------------------------------------------- /Example/NetworkInfo/DSNetworkInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/NetworkInfo/DSNetworkInfo.m -------------------------------------------------------------------------------- /Example/NetworkInfo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/NetworkInfo/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/CoinJoinTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/CoinJoinTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/CryptoTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/CryptoTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/DSAttackTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSAttackTests.m -------------------------------------------------------------------------------- /Example/Tests/DSBIP32Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSBIP32Tests.m -------------------------------------------------------------------------------- /Example/Tests/DSBIP39Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSBIP39Tests.m -------------------------------------------------------------------------------- /Example/Tests/DSBigNumberTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSBigNumberTests.m -------------------------------------------------------------------------------- /Example/Tests/DSBloomFilterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSBloomFilterTests.m -------------------------------------------------------------------------------- /Example/Tests/DSChainLockTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSChainLockTests.m -------------------------------------------------------------------------------- /Example/Tests/DSChainTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSChainTests.m -------------------------------------------------------------------------------- /Example/Tests/DSChainedSigningTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSChainedSigningTests.m -------------------------------------------------------------------------------- /Example/Tests/DSCoinJoinSessionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSCoinJoinSessionTest.m -------------------------------------------------------------------------------- /Example/Tests/DSDIP14Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSDIP14Tests.m -------------------------------------------------------------------------------- /Example/Tests/DSDataTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSDataTests.m -------------------------------------------------------------------------------- /Example/Tests/DSDeterministicMasternodeListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSDeterministicMasternodeListTests.m -------------------------------------------------------------------------------- /Example/Tests/DSGovernanceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSGovernanceTests.m -------------------------------------------------------------------------------- /Example/Tests/DSHashTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSHashTests.m -------------------------------------------------------------------------------- /Example/Tests/DSIESEncryptedDataTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSIESEncryptedDataTests.mm -------------------------------------------------------------------------------- /Example/Tests/DSInstantSendLockTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSInstantSendLockTests.m -------------------------------------------------------------------------------- /Example/Tests/DSInvitationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSInvitationsTests.m -------------------------------------------------------------------------------- /Example/Tests/DSKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSKeyTests.m -------------------------------------------------------------------------------- /Example/Tests/DSMainnetE2ETests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSMainnetE2ETests.m -------------------------------------------------------------------------------- /Example/Tests/DSMainnetMetricSyncTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSMainnetMetricSyncTests.m -------------------------------------------------------------------------------- /Example/Tests/DSMainnetSyncTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSMainnetSyncTests.m -------------------------------------------------------------------------------- /Example/Tests/DSMiningTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSMiningTests.m -------------------------------------------------------------------------------- /Example/Tests/DSPaymentProtocolTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSPaymentProtocolTests.m -------------------------------------------------------------------------------- /Example/Tests/DSPaymentRequestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSPaymentRequestTests.m -------------------------------------------------------------------------------- /Example/Tests/DSProviderTransactionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSProviderTransactionsTests.m -------------------------------------------------------------------------------- /Example/Tests/DSSparseMerkleTreeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSSparseMerkleTreeTests.m -------------------------------------------------------------------------------- /Example/Tests/DSTestnetE2ETests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSTestnetE2ETests.m -------------------------------------------------------------------------------- /Example/Tests/DSTestnetMetricSyncTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSTestnetMetricSyncTests.m -------------------------------------------------------------------------------- /Example/Tests/DSTestnetSyncTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSTestnetSyncTests.m -------------------------------------------------------------------------------- /Example/Tests/DSTransactionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSTransactionTests.m -------------------------------------------------------------------------------- /Example/Tests/DSTransitionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSTransitionTests.m -------------------------------------------------------------------------------- /Example/Tests/DSUInt256IndexPathTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSUInt256IndexPathTests.m -------------------------------------------------------------------------------- /Example/Tests/DSWalletTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DSWalletTests.m -------------------------------------------------------------------------------- /Example/Tests/DerivationTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DerivationTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/DiffListTestnet119064to119200.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/DiffListTestnet119064to119200.dat -------------------------------------------------------------------------------- /Example/Tests/FullUnitTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/FullUnitTestPlan.xctestplan -------------------------------------------------------------------------------- /Example/Tests/GovernanceTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/GovernanceTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/LibraryTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/LibraryTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/LockTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/LockTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/ML_at_122088.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/ML_at_122088.dat -------------------------------------------------------------------------------- /Example/Tests/MNLIST_1746460.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNLIST_1746460.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_1090944.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_1090944.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_1092888.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_1092888.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_1093824.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_1093824.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_1094976.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_1094976.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_1095720.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_1095720.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_1096704.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_1096704.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_122064.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_122064.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_122928.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_122928.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_370368.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_370368.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_0_379567.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_0_379567.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1090944_1091520.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1090944_1091520.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1091520_1091808.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1091520_1091808.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1091808_1092096.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1091808_1092096.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092096_1092336.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092096_1092336.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092336_1092360.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092336_1092360.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092360_1092384.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092360_1092384.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092384_1092408.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092384_1092408.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092408_1092432.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092408_1092432.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092432_1092456.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092432_1092456.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092456_1092480.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092456_1092480.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092480_1092504.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092480_1092504.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092504_1092528.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092504_1092528.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092528_1092552.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092528_1092552.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092552_1092576.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092552_1092576.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092576_1092600.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092576_1092600.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092600_1092624.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092600_1092624.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092624_1092648.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092624_1092648.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092648_1092672.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092648_1092672.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092672_1092696.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092672_1092696.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092696_1092720.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092696_1092720.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092720_1092744.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092720_1092744.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092744_1092768.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092744_1092768.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092768_1092792.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092768_1092792.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092792_1092816.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092792_1092816.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092816_1092840.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092816_1092840.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092840_1092864.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092840_1092864.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092864_1092888.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092864_1092888.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092888_1092912.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092888_1092912.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092888_1092916.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092888_1092916.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1092916_1092940.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1092916_1092940.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1093824_1094400.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1093824_1094400.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1094400_1094976.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1094400_1094976.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1094976_1095264.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1094976_1095264.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095264_1095432.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095264_1095432.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095432_1095456.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095432_1095456.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095456_1095480.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095456_1095480.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095480_1095504.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095480_1095504.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095504_1095528.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095504_1095528.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095528_1095552.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095528_1095552.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095552_1095576.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095552_1095576.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095576_1095600.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095576_1095600.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095600_1095624.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095600_1095624.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095624_1095648.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095624_1095648.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095648_1095672.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095648_1095672.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095672_1095696.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095672_1095696.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095696_1095720.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095696_1095720.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095720_1095744.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095720_1095744.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095744_1095768.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095744_1095768.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095768_1095792.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095768_1095792.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095792_1095816.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095792_1095816.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095816_1095840.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095816_1095840.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095840_1095864.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095840_1095864.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095864_1095888.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095864_1095888.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095888_1095912.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095888_1095912.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095912_1095936.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095912_1095936.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095936_1095960.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095936_1095960.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095960_1095984.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095960_1095984.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1095984_1096003.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1095984_1096003.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1096704_1097280.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1096704_1097280.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1097280_1097856.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1097280_1097856.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1097856_1098144.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1097856_1098144.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098144_1098432.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098144_1098432.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098432_1098456.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098432_1098456.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098456_1098480.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098456_1098480.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098480_1098504.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098480_1098504.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098504_1098528.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098504_1098528.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098528_1098552.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098528_1098552.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098552_1098576.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098552_1098576.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098576_1098600.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098576_1098600.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098600_1098624.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098600_1098624.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098624_1098648.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098624_1098648.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098648_1098672.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098648_1098672.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098672_1098696.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098672_1098696.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098696_1098720.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098696_1098720.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098720_1098744.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098720_1098744.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098744_1098768.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098744_1098768.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098768_1098792.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098768_1098792.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098792_1098816.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098792_1098816.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098816_1098840.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098816_1098840.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098840_1098864.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098840_1098864.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098864_1098888.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098864_1098888.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098888_1098912.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098888_1098912.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098912_1098936.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098912_1098936.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098936_1098960.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098936_1098960.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098960_1098984.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098960_1098984.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1098984_1099008.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1098984_1099008.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_122064_122088.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_122064_122088.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_122928_123000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_122928_123000.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1316160_1334592.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1316160_1334592.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1316160_1336879.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1316160_1336879.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1334592_1335168.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1334592_1335168.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1335168_1335744.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1335168_1335744.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1335744_1336032.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1335744_1336032.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336032_1336296.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336032_1336296.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336296_1336320.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336296_1336320.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336320_1336344.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336320_1336344.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336344_1336368.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336344_1336368.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336368_1336392.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336368_1336392.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336392_1336416.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336392_1336416.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336416_1336440.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336416_1336440.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336440_1336464.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336440_1336464.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336464_1336488.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336464_1336488.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336488_1336512.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336488_1336512.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336512_1336536.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336512_1336536.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336536_1336560.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336536_1336560.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336560_1336584.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336560_1336584.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336584_1336608.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336584_1336608.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336608_1336632.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336608_1336632.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336632_1336656.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336632_1336656.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336656_1336680.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336656_1336680.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336680_1336704.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336680_1336704.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336704_1336728.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336704_1336728.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336728_1336752.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336728_1336752.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336752_1336776.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336752_1336776.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336776_1336800.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336776_1336800.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336800_1336824.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336800_1336824.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336824_1336848.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336824_1336848.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336848_1336872.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336848_1336872.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336848_1336879.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336848_1336879.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336879_1336885.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336879_1336885.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336879_1336896.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336879_1336896.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336879_1336911.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336879_1336911.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1336896_1336911.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1336896_1336911.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_1746460_1746516.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_1746460_1746516.dat -------------------------------------------------------------------------------- /Example/Tests/MNL_370368_370944.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MNL_370368_370944.dat -------------------------------------------------------------------------------- /Example/Tests/MainnetSyncTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MainnetSyncTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/MasternodeList1088800.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MasternodeList1088800.dat -------------------------------------------------------------------------------- /Example/Tests/MasternodeListTestnet119064.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MasternodeListTestnet119064.dat -------------------------------------------------------------------------------- /Example/Tests/MasternodeListTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/MasternodeListTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/Metrics.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/Metrics.xctestplan -------------------------------------------------------------------------------- /Example/Tests/PaymentTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/PaymentTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/PlatformTransitionTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/PlatformTransitionTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/TestnetE2ETests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/TestnetE2ETests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/TestnetSyncTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/TestnetSyncTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/TransactionTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/TransactionTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/WalletTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/Tests/WalletTests.xctestplan -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Example/check_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/check_lint.sh -------------------------------------------------------------------------------- /Example/run_oclint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Example/run_oclint.sh -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/export_currencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Scripts/export_currencies.swift -------------------------------------------------------------------------------- /Scripts/fixedpeers-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/Scripts/fixedpeers-check.py -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /dapi-grpc-pod-installer/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/dapi-grpc-pod-installer/Podfile -------------------------------------------------------------------------------- /dapi-grpc-pod-installer/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/dapi-grpc-pod-installer/Podfile.lock -------------------------------------------------------------------------------- /dapi-grpc-pod-installer/dapi-grpc-pod-installer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/dapi-grpc-pod-installer/dapi-grpc-pod-installer/Info.plist -------------------------------------------------------------------------------- /dapi-grpc-pod-installer/dapi-grpc-pod-installer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashsync-iOS/HEAD/dapi-grpc-pod-installer/dapi-grpc-pod-installer/main.m --------------------------------------------------------------------------------