├── .gitignore ├── LICENSE ├── Lykke.Service.EthereumCore.sln ├── client ├── Lykke.Job.EthereumCore.Contracts │ ├── Cqrs │ │ ├── Commands │ │ │ ├── AddToPassWhiteListCommand.cs │ │ │ ├── AssignErc223DepositToUserCommand.cs │ │ │ ├── StartCashoutCommand.cs │ │ │ └── StartTransferCommand.cs │ │ ├── EthereumBoundedContext.cs │ │ └── Events │ │ │ ├── CashoutCompletedEvent.cs │ │ │ ├── Erc223DepositAssignedToUserEvent.cs │ │ │ └── TransferCompletedEvent.cs │ ├── Enums │ │ ├── CoinEventType.cs │ │ ├── HotWalletEventType.cs │ │ └── LykkePay │ │ │ ├── EventType.cs │ │ │ ├── SenderType.cs │ │ │ └── WorkflowType.cs │ ├── Events │ │ ├── CoinAdapterCreationEvent.cs │ │ ├── CoinEvent.cs │ │ ├── HotWalletEvent.cs │ │ └── LykkePay │ │ │ └── TransferEvent.cs │ └── Lykke.Job.EthereumCore.Contracts.csproj └── Lykke.Service.EthereumCore.Client │ ├── EthereumCoreAPI.Extend.cs │ ├── EthereumCoreAPI.cs │ ├── EthereumCoreAPIExtensions.cs │ ├── EthereumServiceClientSettings.cs │ ├── IEthereumCoreAPI.cs │ ├── Lykke.Service.EthereumCore.Client.csproj │ ├── Models │ ├── AddressHistoryResponse.cs │ ├── AddressTokenBalanceContainerResponse.cs │ ├── AddressTokenBalanceResponse.cs │ ├── AddressTransactions.cs │ ├── AirlinesTransferFromDepositRequest.cs │ ├── ApiError.cs │ ├── ApiException.cs │ ├── BalanceModel.cs │ ├── BaseCoinRequestModel.cs │ ├── BaseCoinRequestParametersModel.cs │ ├── CashoutModel.cs │ ├── CheckIdResponse.cs │ ├── CheckPendingModel.cs │ ├── CheckPendingResponse.cs │ ├── CheckSignModel.cs │ ├── CheckSignResponse.cs │ ├── CoinResult.cs │ ├── CreateAssetModel.cs │ ├── CreateExternalTokenModel.cs │ ├── CreateTransitionContractModel.cs │ ├── CurrentBlockModel.cs │ ├── ErrorResponse.cs │ ├── EstimatedGasModel.cs │ ├── EstimatedGasModelV2.cs │ ├── EthTransactionRaw.cs │ ├── EthereumAddressRequest.cs │ ├── EthereumAddressResponse.cs │ ├── ExceptionType.cs │ ├── ExistsModel.cs │ ├── ExternalTokenModel.cs │ ├── FilteredAddressHistoryResponse.cs │ ├── FilteredInternalMessagessResponse.cs │ ├── FilteredTokenAddressHistoryResponse.cs │ ├── FilteredTransactionsResponse.cs │ ├── GasPriceModel.cs │ ├── GetErcBalance.cs │ ├── HashResponse.cs │ ├── HashResponseWithId.cs │ ├── HotWalletCashoutRequest.cs │ ├── InternalMessageResponse.cs │ ├── IsAddressValidResponse.cs │ ├── IsAliveResponse.cs │ ├── IssueIndicator.cs │ ├── IssueTokensModel.cs │ ├── ListResultCoinResult.cs │ ├── ListResultExternalTokenModel.cs │ ├── OperationIdResponse.cs │ ├── PrivateWalletDataTransaction.cs │ ├── PrivateWalletErc20EstimateTransaction.cs │ ├── PrivateWalletErc20Transaction.cs │ ├── PrivateWalletEstimateTransaction.cs │ ├── PrivateWalletEthSignedTransaction.cs │ ├── PrivateWalletEthTransaction.cs │ ├── RegisterResponse.cs │ ├── TokenAddressHistoryResponse.cs │ ├── TokenAddressTransactions.cs │ ├── TransactionResponse.cs │ ├── TransferFromDepositRequest.cs │ ├── TransferModel.cs │ └── TransferWithChangeModel.cs │ ├── readme.md │ └── update.ps1 ├── patch ├── package.json └── patch-project-json.js ├── src ├── ApiRunner │ ├── .dockerignore │ ├── ApiRunner.csproj │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── docker-compose.yml ├── ContractBuilder │ ├── ContractBuilder.csproj │ ├── ContractTransferJob.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ ├── local-publish.ps1 │ │ │ ├── local.pubxml │ │ │ └── publish-module.psm1 │ ├── contracts │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Erc223DepositContract.sol │ │ ├── bin │ │ │ ├── LuCyToken.abi │ │ │ ├── LuCyToken.bin │ │ │ ├── LuCyToken.json │ │ │ ├── LyCI.abi │ │ │ ├── LyCI.bin │ │ │ └── LyCI.json │ │ ├── coin.sol │ │ ├── coinContract.sol │ │ ├── contractSettings.json │ │ ├── debugContract.sol │ │ ├── depositContract.sol │ │ ├── erc20DepositContract.sol │ │ ├── ethContract.sol │ │ ├── ethTransferContract.sol │ │ ├── interfaces │ │ │ └── manyOwnersBaseContract.sol │ │ ├── mainExchange.sol │ │ ├── mainExchangeManyOwners.sol │ │ ├── mainExchangeNM.sol │ │ ├── token │ │ │ ├── DENT │ │ │ │ └── BurnableToken.sol │ │ │ ├── Erc223 │ │ │ │ ├── LyCI.sol │ │ │ │ ├── SafeMath.sol │ │ │ │ ├── contractReceiver.sol │ │ │ │ ├── emissiveErc223Token.sol │ │ │ │ ├── erc223Contract.sol │ │ │ │ ├── erc223Token.sol │ │ │ │ ├── lykkeTokenErc223Base.sol │ │ │ │ └── nonEmissiveToken.sol │ │ │ ├── SafeMath.sol │ │ │ ├── emissiveToken.sol │ │ │ ├── erc20Contract.sol │ │ │ ├── erc20Token.sol │ │ │ ├── lykkeTokenBase.sol │ │ │ └── nonEmissiveToken.sol │ │ ├── tokenTransferContract.sol │ │ └── transferBaseContract.sol │ ├── generalsettings_template.json │ └── transferTransaction.txt ├── DepostContractResolver │ ├── Commands │ │ ├── CommandFactory.cs │ │ ├── ICommand.cs │ │ ├── ScanDepositAndWithdrawCommand.cs │ │ ├── ScanDepositBalancesCommand.cs │ │ ├── TransferFromAdapterCommand.cs │ │ └── TransferFromDepositCommand.cs │ ├── CommandsRegistration │ │ ├── CommandRegistrationAttribute.cs │ │ ├── ICommandRegistration.cs │ │ ├── ScanDepositAndWithdrawCommandRegistration.cs │ │ ├── ScanDepositBalancesCommandRegistration.cs │ │ ├── TransferFromAdapterCommandRegistration.cs │ │ └── TransferFromDepositCommandRegistration.cs │ ├── DepositContractResolver.csproj │ ├── Helpers │ │ ├── ConfigurationHelper.cs │ │ └── IConfigurationHelper.cs │ └── Program.cs ├── ErcDepositFix │ ├── Commands │ │ ├── CommandFactory.cs │ │ ├── FixDepositAddressesCommand.cs │ │ └── ICommand.cs │ ├── CommandsRegistration │ │ ├── CommandRegistrationAttribute.cs │ │ ├── FixDepositAddressesCommandRegistration.cs │ │ └── ICommandRegistration.cs │ ├── Csv │ │ └── EtherscanTx.cs │ ├── ErcDepositFix.csproj │ ├── Helpers │ │ ├── ConfigurationHelper.cs │ │ └── IConfigurationHelper.cs │ └── Program.cs ├── EthereumSamuraiApiCaller │ ├── EthereumSamuraiApi.cs │ ├── EthereumSamuraiApiCaller.csproj │ ├── EthereumSamuraiApiExtensions.cs │ ├── IEthereumSamuraiApi.cs │ └── Models │ │ ├── AddressHistoryResponse.cs │ │ ├── ApiError.cs │ │ ├── ApiException.cs │ │ ├── BalanceResponse.cs │ │ ├── BlockResponse.cs │ │ ├── Erc20BalanceResponse.cs │ │ ├── Erc20TokenResponse.cs │ │ ├── Erc20TransferHistoryResponse.cs │ │ ├── FilteredAddressHistoryResponse.cs │ │ ├── FilteredInternalMessageResponse.cs │ │ ├── FilteredTransactionsResponse.cs │ │ ├── GetErc20BalanceRequest.cs │ │ ├── GetErc20TransferHistoryRequest.cs │ │ ├── GetErc20TransferHistoryV2Request.cs │ │ ├── InternalMessageResponse.cs │ │ ├── TransactionFullInfoResponse.cs │ │ └── TransactionResponse.cs ├── JobRunner │ ├── .dockerignore │ ├── Dockerfile │ ├── JobRunner.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── appsettings.json │ └── docker-compose.yml ├── Lykke.Job.EthereumCore │ ├── Config │ │ └── RegisterDependency.cs │ ├── Controllers │ │ ├── IsAliveController.cs │ │ └── OperationsController.cs │ ├── Job │ │ ├── Airlines │ │ │ ├── AirlinesHotWalletMonitoringTransactionJob.cs │ │ │ ├── Erc20DepositTransferStarterJob.cs │ │ │ └── TransferNotificationJob.cs │ │ ├── CashinIndexingJob.cs │ │ ├── CoinEventResubmittJob.cs │ │ ├── Erc20DepositContractPoolJob.cs │ │ ├── Erc20DepositContractPoolRenewJob.cs │ │ ├── Erc20DepositMonitoringCashinTransactions.cs │ │ ├── Erc20DepositMonitoringContracts.cs │ │ ├── HotWalletCashoutJob.cs │ │ ├── HotWalletMonitoringTransactionJob.cs │ │ ├── LykkePay │ │ │ ├── LykkePayErc20DepositTransferStarterJob.cs │ │ │ ├── LykkePayHotWalletMonitoringTransactionJob.cs │ │ │ ├── LykkePayIndexingJob.cs │ │ │ └── LykkePayTransferNotificationJob.cs │ │ ├── MonitoringCoinTransactionJob.cs │ │ ├── MonitoringOperationJob.cs │ │ ├── MonitoringTransferContracts.cs │ │ ├── MonitoringTransferTransactions.cs │ │ ├── PoolRenewJob.cs │ │ ├── TransferContractPoolJob.cs │ │ ├── TransferContractUserAssignmentJob.cs │ │ └── TransferTransactionQueueJob.cs │ ├── Lykke.Job.EthereumCore.csproj │ ├── Modules │ │ ├── CqrsModule.cs │ │ └── JobModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Startup.cs │ └── Workflow │ │ ├── EthServiceHelpers.cs │ │ └── Handlers │ │ ├── BlockPassCommandHandler.cs │ │ ├── CashoutCommandHandler.cs │ │ ├── Erc223DepositAssignCommandHandler.cs │ │ └── TransferCommandHandler.cs ├── Lykke.Service.EthereumCore..Models │ ├── Attributes │ │ └── EthereumAddressAttribute.cs │ ├── EthereumApi.Models.csproj │ ├── Indexer │ │ └── TransactionIndexerResponse.cs │ └── Models │ │ ├── AddWalletModel.cs │ │ ├── AddressHistoryResponse.cs │ │ ├── AddressTokenBalanceResponse.cs │ │ ├── AddressTransactions.cs │ │ ├── Airlines │ │ └── TransferFromDepositRequest.cs │ │ ├── BalanceModel.cs │ │ ├── BaseCoinRequestModel.cs │ │ ├── CashInModel.cs │ │ ├── CashoutModel.cs │ │ ├── CheckIdResponse.cs │ │ ├── CheckPendingModel.cs │ │ ├── CheckSignResponse.cs │ │ ├── CoinResult.cs │ │ ├── CreateAssetModel.cs │ │ ├── CreateExternalTokenModel.cs │ │ ├── CreateTransitionContractModel.cs │ │ ├── CurrentBlockModel.cs │ │ ├── EstimatedGasModel.cs │ │ ├── EthTransactionRaw.cs │ │ ├── EthereumAddressRequest.cs │ │ ├── ExistsModel.cs │ │ ├── ExternalTokenModel.cs │ │ ├── GasPriceModel.cs │ │ ├── GetErcBalance.cs │ │ ├── HashResponse.cs │ │ ├── HotWalletCashoutRequest.cs │ │ ├── IsAddressValidResponse.cs │ │ ├── IssueTokens.cs │ │ ├── ListResult.cs │ │ ├── LykkePay │ │ └── TransferFromDepositRequest.cs │ │ ├── PrivateWalletEthTransaction.cs │ │ ├── ReceivePaymentWithoutEstimationRequest.cs │ │ ├── ReceivePaymentWithoutEstimationResponse.cs │ │ ├── RegisterResponse.cs │ │ ├── SwapModel.cs │ │ ├── TransactionResponse.cs │ │ └── TransferModel.cs ├── Lykke.Service.EthereumCore.AzureRepositories │ ├── Lykke.Service.EthereumCore.AzureRepositories.csproj │ ├── Notifiers │ │ └── SlackNotifier.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueFactory.cs │ ├── RegisterRepos.cs │ └── Repositories │ │ ├── AddressStatisticsRepository.cs │ │ ├── AppSettingsRepository.cs │ │ ├── BlackListAddressesRepository.cs │ │ ├── BlockSyncedByHashRepository.cs │ │ ├── BlockSyncedRepository.cs │ │ ├── CashinEventRepository.cs │ │ ├── CoinContractFilterRepository.cs │ │ ├── CoinEventRepository.cs │ │ ├── CoinRepository.cs │ │ ├── CoinTransactionRepository.cs │ │ ├── Erc20BlackListAddressesRepository.cs │ │ ├── Erc20DepositContractRepository.cs │ │ ├── EthereumContractPoolRepository.cs │ │ ├── EventTraceRepository.cs │ │ ├── ExternalTokenRepository.cs │ │ ├── GasPriceRepository.cs │ │ ├── HotWalletOperationRepository.cs │ │ ├── HotWalletTransactionRepository.cs │ │ ├── IPendingTransactionRepository.cs │ │ ├── NonceRepository.cs │ │ ├── OperationResubmittRepository.cs │ │ ├── OperationToHashMatchRepository.cs │ │ ├── OverrideNonceRepository.cs │ │ ├── OwnerRepository.cs │ │ ├── PendingOperationRepository.cs │ │ ├── TransferContractRepository.cs │ │ ├── UserAssignmentFailRepository.cs │ │ ├── UserPaymentHistoryRepository.cs │ │ ├── UserPaymentRepository.cs │ │ ├── UserTransferWalletRepository.cs │ │ └── WhiteListAddressesRepository.cs ├── Lykke.Service.EthereumCore.BusinessModels │ ├── AddressHistoryModel.cs │ ├── AddressNonceModel.cs │ ├── AddressTransactions.cs │ ├── Erc20 │ │ └── AddressTokenBalance.cs │ ├── InternalMessageModel.cs │ ├── Lykke.Service.EthereumCore.BusinessModels.csproj │ ├── PrivateWallet │ │ ├── DataTransaction.cs │ │ ├── Erc20Transaction.cs │ │ ├── EthTransaction.cs │ │ └── TransactionBase.cs │ ├── TransactionContentModel.cs │ └── TransactionModel.cs ├── Lykke.Service.EthereumCore.Core │ ├── Airlines │ │ └── IErc20DepositContractService.cs │ ├── BigDecimal.cs │ ├── Common │ │ ├── IAggregatedErc20DepositContractLocatorService.cs │ │ ├── IErc20DepositContractLocatorService.cs │ │ ├── IdCheckResult.cs │ │ └── WorkflowType.cs │ ├── Constants.cs │ ├── ContractEvents │ │ └── UserPaymentEvent.cs │ ├── Exceptions │ │ ├── ClientSideException.cs │ │ └── ExceptionType.cs │ ├── Health │ │ ├── HealthIssue.cs │ │ └── HealthIssuesCollection.cs │ ├── IQueueFactory.cs │ ├── Lykke.Service.EthereumCore.Core.csproj │ ├── LykkePay │ │ └── ILykkePayEventsService.cs │ ├── Messages │ │ ├── HotWallet │ │ │ └── HotWalletCashoutMessage.cs │ │ └── LykkePay │ │ │ ├── LykkePayErc20TransferMessage.cs │ │ │ └── LykkePayErc20TransferNotificationMessage.cs │ ├── Notifiers │ │ └── SlackNotifier.cs │ ├── PassToken │ │ └── IBlockPassService.cs │ ├── PrivateWallet │ │ ├── IEstimationService.cs │ │ └── OperationEstimationV2Result.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueHelper.cs │ ├── Repositories │ │ ├── IAddressesStatisticsRepository.cs │ │ ├── IAppSettingsRepository.cs │ │ ├── IBlackListAddressesRepository.cs │ │ ├── IBlockSyncedByHashRepository.cs │ │ ├── IBlockSyncedRepository.cs │ │ ├── ICashinEventRepository.cs │ │ ├── ICoinContractFilterRepository.cs │ │ ├── ICoinEventRepository.cs │ │ ├── ICoinRepository.cs │ │ ├── ICoinTransactionRepository.cs │ │ ├── IErc20BlackListAddressesRepository.cs │ │ ├── IErc20DepositContractRepository.cs │ │ ├── IEthereumContractPoolRepository.cs │ │ ├── IEthereumContractRepository.cs │ │ ├── IEventTraceRepository.cs │ │ ├── IExternalTokenRepository.cs │ │ ├── IGasPriceRepository.cs │ │ ├── IHotWalletCashout.cs │ │ ├── IHotWalletCashoutTransactionRepository.cs │ │ ├── IMonitoringRepository.cs │ │ ├── INonceRepository.cs │ │ ├── IOperationLogRepository.cs │ │ ├── IOperationResubmittRepository.cs │ │ ├── IOverrideNonceRepository.cs │ │ ├── IOwnerRepository.cs │ │ ├── IPendingOperationRepository.cs │ │ ├── IPendingTransactionsRepository.cs │ │ ├── ITransferContractRepository.cs │ │ ├── IUserAssignmentFailRepository.cs │ │ ├── IUserPaymentHistoryRepository.cs │ │ ├── IUserPaymentRepository.cs │ │ ├── IUserTransferWalletRepository.cs │ │ └── IWhiteListAddressesRepository.cs │ ├── Services │ │ ├── IHealthService.cs │ │ ├── IShutdownManager.cs │ │ └── IStartupManager.cs │ ├── Settings │ │ ├── AirlinesSettings.cs │ │ ├── AppSettings.cs │ │ ├── BaseSettings.cs │ │ ├── BlockPassClientSettings.cs │ │ └── GeneralSettingsReader.cs │ ├── Shared │ │ ├── Erc20SharedService.cs │ │ ├── Erc223SharedService.cs │ │ └── TransferWalletSharedService.cs │ └── Utils │ │ ├── ChaosKitty.cs │ │ ├── Encryption.cs │ │ ├── EthUtils.cs │ │ ├── ExceptionExtensions.cs │ │ ├── JsonExtensions.cs │ │ ├── QueueMessageBase.cs │ │ ├── RetryPolicy.cs │ │ ├── TaskExtensions.cs │ │ └── Utils.cs ├── Lykke.Service.EthereumCore.PassTokenIntegration │ ├── BlockPassClientFactory.cs │ ├── DelegatingHandlers │ │ ├── ApiKeyHeaderHandler.cs │ │ ├── ContentTypeHandler.cs │ │ └── ResponseHandler.cs │ ├── Exceptions │ │ └── NotOkException.cs │ ├── IBlockPassClient.cs │ ├── Lykke.Service.EthereumCore.PassTokenIntegration.csproj │ └── Models │ │ ├── Requests │ │ └── EthAddressRequest.cs │ │ └── Responses │ │ ├── ErrorResponse.cs │ │ └── EthAddressResponse.cs ├── Lykke.Service.EthereumCore.RabbitMQ │ ├── BytesSerializer.cs │ ├── Lykke.Service.RabbitMQ.csproj │ ├── RabbitPublisher.cs │ └── RegisterRabbitQueue.cs ├── Lykke.Service.EthereumCore │ ├── Attributes │ │ └── ApiKeyAuthorizeAttribute.cs │ ├── Controllers │ │ ├── Airlines │ │ │ └── LykkePayErc20DepositContractsController.cs │ │ ├── AssetController.cs │ │ ├── BlockController.cs │ │ ├── BlockpassWhitelistController.cs │ │ ├── Erc20BalanceController.cs │ │ ├── Erc20BlackListController.cs │ │ ├── Erc20DepositContractsController.cs │ │ ├── Erc20WalletController.cs │ │ ├── EstimationController.cs │ │ ├── ExchangeController.cs │ │ ├── ExternalTokenController.cs │ │ ├── GasPriceController.cs │ │ ├── HashController.cs │ │ ├── HomeController.cs │ │ ├── HotWalletController.cs │ │ ├── InternalMessageController.cs │ │ ├── LykkePay │ │ │ └── LykkePayErc20DepositContractsController.cs │ │ ├── PrivateWalletController.cs │ │ ├── RpcController.cs │ │ ├── SystemController.cs │ │ ├── TransactionController.cs │ │ ├── TransitionContractsController.cs │ │ ├── ValidationController.cs │ │ └── WhiteListController.cs │ ├── Filters │ │ └── Swagger │ │ │ └── ApiKeyHeaderAccessTokenOperationFilter.cs │ ├── GlobalExceptionFilter.cs │ ├── Lykke.Service.EthereumCore.csproj │ ├── Middleware │ │ └── ApiExceptionHandler.cs │ ├── Modules │ │ ├── ControllerModule.cs │ │ ├── CqrsModule.cs │ │ └── ServiceModule.cs │ ├── Project_Readme.html │ ├── Properties │ │ └── launchSettings.json │ ├── Service References │ │ └── Application Insights │ │ │ └── ConnectedService.json │ ├── Startup.cs │ ├── Utils │ │ ├── ModelStateHelper.cs │ │ └── TimeoutPolicy.cs │ ├── Workflow │ │ └── Sagas │ │ │ └── Erc223DepositSaga.cs │ ├── settings.txt │ └── web.config ├── PassTokenAddressExporter │ ├── Commands │ │ ├── CommandFactory.cs │ │ ├── ExportDepositAddressesCommand.cs │ │ └── ICommand.cs │ ├── CommandsRegistration │ │ ├── CommandRegistrationAttribute.cs │ │ ├── ExportDepositAddressesCommandRegistration.cs │ │ └── ICommandRegistration.cs │ ├── Helpers │ │ ├── ConfigurationHelper.cs │ │ └── IConfigurationHelper.cs │ ├── PassTokenAddressExporter.csproj │ └── Program.cs ├── Service.UnitTests │ ├── BaseTest.cs │ ├── Config.cs │ ├── Jobs │ │ ├── MonitoringCoinTransactionJobUnitTest.cs │ │ └── MonitoringOperationJobUnitTest.cs │ ├── Mocks │ │ ├── MockEthereumSamuraiApi.cs │ │ └── MockNonceCalculator.cs │ ├── PrivateWallet │ │ ├── Erc20ServiceUnitTest.cs │ │ ├── EthereumIndexerServiceUnitTest.cs │ │ └── PrivateWalletServiceUnitTest.cs │ ├── Service.UnitTests.csproj │ └── TestConstants.cs ├── Services │ ├── Airlines │ │ ├── Erc20DepositContractPoolService.cs │ │ └── Erc20DepositContractService.cs │ ├── AssetContractService.cs │ ├── CoinEventPublisherService.cs │ ├── CoinEventService.cs │ ├── Coins │ │ ├── CoinTransactionService.cs │ │ ├── ExchangeContractService.cs │ │ └── Models │ │ │ ├── CoinContractPublicEvent.cs │ │ │ ├── CoinTransactionCompleteEvent.cs │ │ │ ├── CoinTransactionMessage.cs │ │ │ └── Events │ │ │ ├── CoinContractCashInEvent.cs │ │ │ ├── CoinContractCashOutEvent.cs │ │ │ └── CoinContractTransferEvent.cs │ ├── Common │ │ ├── AggregatedDepositContractLocatorService.cs │ │ ├── ChainIdService.cs │ │ └── EventsServiceCommon.cs │ ├── Erc20 │ │ └── Erc20BalanceService.cs │ ├── Erc20DepositContractPoolService.cs │ ├── Erc20DepositContractQueueService.cs │ ├── Erc20DepositContractQueueServiceFactory.cs │ ├── Erc20DepositContractService.cs │ ├── Erc20DepositTransactionService.cs │ ├── ErcInterfaceService.cs │ ├── ExternalTokenService.cs │ ├── GasPriceService.cs │ ├── HashCalculator.cs │ ├── HotWallet │ │ ├── HotWalletService.cs │ │ └── IHotWalletService.cs │ ├── IErc20DepositContractQueueService.cs │ ├── IErc20DepositContractQueueServiceFactory.cs │ ├── Infrastructure │ │ ├── HealthService.cs │ │ ├── ShutdownManager.cs │ │ └── StartupManager.cs │ ├── Lykke.Service.EthereumCore.Services.csproj │ ├── LykkePay │ │ ├── Erc20DepositContractPoolService.cs │ │ ├── LykkePayErc20DepositContractService.cs │ │ └── LykkePayEventsService.cs │ ├── Model │ │ └── CashoutOperationEstimationResult.cs │ ├── New │ │ ├── Models │ │ │ ├── CoinCashinEvent.cs │ │ │ ├── CoinEventCashinCompletedMessage.cs │ │ │ ├── ContractDeploymentInfo.cs │ │ │ └── OperationHashMatchMessage.cs │ │ ├── OwnerBlockchainService.cs │ │ ├── OwnerService.cs │ │ ├── PendingOperationService.cs │ │ └── TransactionEventsService.cs │ ├── Old │ │ ├── ContractQueueService.cs │ │ ├── ContractService.cs │ │ ├── EthereumQueueOutService.cs │ │ ├── EthereumTransactionService.cs │ │ └── PaymentService.cs │ ├── OperationsService.cs │ ├── PassToken │ │ └── BlockPassService.cs │ ├── PrivateWallet │ │ ├── Erc20Service.cs │ │ ├── EstimationService.cs │ │ ├── EthereumIndexerService.cs │ │ └── PrivateWalletService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RegisterDependency.cs │ ├── Signature │ │ ├── INonceCalculator.cs │ │ ├── ITransactionRouter.cs │ │ ├── LykkeSignedTransactionManager.cs │ │ ├── NonceCalculator.cs │ │ ├── SignatureChecker.cs │ │ ├── SignatureInterceptor.cs │ │ ├── SignatureService.cs │ │ └── TransactionRouter.cs │ ├── Transactions │ │ ├── RawTransactionSubmitter.cs │ │ └── TransactionValidationService.cs │ ├── TransferContractPoolService.cs │ ├── TransferContractQueueService.cs │ ├── TransferContractQueueServiceFactory.cs │ ├── TransferContractService.cs │ ├── TransferContractTransactionService.cs │ ├── TransferContractUserAssignmentQueueService.cs │ └── Utils │ │ └── DateUtils.cs ├── SigningServiceApiCaller │ ├── DelegatingHandlers │ │ └── ApiKeyHandler.cs │ ├── ILykkeSigningAPI.cs │ ├── LykkeSigningAPI.cs │ ├── LykkeSigningAPIExtensions.cs │ ├── Models │ │ ├── AddKeyRequest.cs │ │ ├── BitcoinTransactionSignRequest.cs │ │ ├── EthereumAddressResponse.cs │ │ ├── EthereumHashSignRequest.cs │ │ ├── EthereumTransactionSignRequest.cs │ │ ├── HashSignResponse.cs │ │ ├── IsAliveResponse.cs │ │ ├── PrivateKeyResponse.cs │ │ ├── PubKeyResponse.cs │ │ └── TransactionSignResponse.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SigningServiceApiCaller.csproj ├── TestRunner │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestRunner.csproj ├── TokenDeployer │ ├── Contracts │ │ ├── EmissiveErc223Token.abi │ │ ├── EmissiveErc223Token.bin │ │ ├── EmissiveErc223Token.json │ │ ├── LyCI.abi │ │ ├── LyCI.bin │ │ ├── LyCI.json │ │ ├── NonEmissiveErc223Token.abi │ │ ├── NonEmissiveErc223Token.bin │ │ └── NonEmissiveErc223Token.json │ ├── Program.cs │ ├── TokenCfg.cs │ ├── TokenCfg.json │ └── TokenDeployer.csproj └── TransactionResubmit │ ├── HashForResubmit.json │ ├── Program.cs │ ├── RabbitResubmit.cs │ ├── ResubmitModel.cs │ ├── TransactionResubmit.csproj │ └── TransactionsForResubmit.json └── tests ├── Lykke.Service.PassClientTest.Console ├── Lykke.Service.PassClientTest.Console.csproj └── Program.cs ├── Service.Tests.New ├── BaseTest.cs ├── BigDecimalTests.cs ├── BugReproduction │ ├── EventTraceTest.cs │ ├── GasPriceTest.cs │ └── WrongSignBug.cs ├── Erc20ServiceTest.cs ├── EthereumTransactionServiceTest.cs ├── ExchangeServiceTests.cs ├── HashCalculationTest.cs ├── Init │ └── Config.cs ├── JavascriptTestData.cs ├── JobTests │ ├── CheckPaymentsToUserContractsJobTests.cs │ ├── MonitoringContractBalanceJobTests.cs │ ├── MonitoringJobTests.cs │ └── TransferTransactionQueueJobTests.cs ├── Old │ ├── CoinEventServiceTest.cs │ ├── ContractQueueServiceTests.cs │ ├── EthereumQueueOutTests.cs │ ├── PaymentServiceTests.cs │ └── TestContracts.cs ├── PrivateWalletServiceTest.cs ├── RepoTest │ └── PendingTransactionTest.cs ├── Service.IntegrationTests.csproj ├── TestResult.xml ├── configurationUrl.url └── testdata.txt └── Service.Tests.xproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/LICENSE -------------------------------------------------------------------------------- /Lykke.Service.EthereumCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/Lykke.Service.EthereumCore.sln -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/AddToPassWhiteListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/AddToPassWhiteListCommand.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/AssignErc223DepositToUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/AssignErc223DepositToUserCommand.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/StartCashoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/StartCashoutCommand.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/StartTransferCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/Commands/StartTransferCommand.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/EthereumBoundedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/EthereumBoundedContext.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/Events/CashoutCompletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/Events/CashoutCompletedEvent.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/Events/Erc223DepositAssignedToUserEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/Events/Erc223DepositAssignedToUserEvent.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Cqrs/Events/TransferCompletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Cqrs/Events/TransferCompletedEvent.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Enums/CoinEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Enums/CoinEventType.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Enums/HotWalletEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Enums/HotWalletEventType.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Enums/LykkePay/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Enums/LykkePay/EventType.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Enums/LykkePay/SenderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Enums/LykkePay/SenderType.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Enums/LykkePay/WorkflowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Enums/LykkePay/WorkflowType.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Events/CoinAdapterCreationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Events/CoinAdapterCreationEvent.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Events/CoinEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Events/CoinEvent.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Events/HotWalletEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Events/HotWalletEvent.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Events/LykkePay/TransferEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Events/LykkePay/TransferEvent.cs -------------------------------------------------------------------------------- /client/Lykke.Job.EthereumCore.Contracts/Lykke.Job.EthereumCore.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Job.EthereumCore.Contracts/Lykke.Job.EthereumCore.Contracts.csproj -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/EthereumCoreAPI.Extend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/EthereumCoreAPI.Extend.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/EthereumCoreAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/EthereumCoreAPI.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/EthereumCoreAPIExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/EthereumCoreAPIExtensions.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/EthereumServiceClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/EthereumServiceClientSettings.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/IEthereumCoreAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/IEthereumCoreAPI.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Lykke.Service.EthereumCore.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Lykke.Service.EthereumCore.Client.csproj -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/AddressHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/AddressHistoryResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/AddressTokenBalanceContainerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/AddressTokenBalanceContainerResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/AddressTokenBalanceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/AddressTokenBalanceResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/AddressTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/AddressTransactions.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/AirlinesTransferFromDepositRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/AirlinesTransferFromDepositRequest.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ApiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ApiError.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ApiException.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/BalanceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/BalanceModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/BaseCoinRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/BaseCoinRequestModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/BaseCoinRequestParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/BaseCoinRequestParametersModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CashoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CashoutModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CheckIdResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CheckIdResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CheckPendingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CheckPendingModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CheckPendingResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CheckPendingResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CheckSignModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CheckSignModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CheckSignResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CheckSignResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CoinResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CoinResult.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CreateAssetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CreateAssetModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CreateExternalTokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CreateExternalTokenModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CreateTransitionContractModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CreateTransitionContractModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/CurrentBlockModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/CurrentBlockModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ErrorResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/EstimatedGasModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/EstimatedGasModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/EstimatedGasModelV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/EstimatedGasModelV2.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/EthTransactionRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/EthTransactionRaw.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/EthereumAddressRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/EthereumAddressRequest.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/EthereumAddressResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/EthereumAddressResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ExceptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ExceptionType.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ExistsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ExistsModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ExternalTokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ExternalTokenModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/FilteredAddressHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/FilteredAddressHistoryResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/FilteredInternalMessagessResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/FilteredInternalMessagessResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/FilteredTokenAddressHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/FilteredTokenAddressHistoryResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/FilteredTransactionsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/FilteredTransactionsResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/GasPriceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/GasPriceModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/GetErcBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/GetErcBalance.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/HashResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/HashResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/HashResponseWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/HashResponseWithId.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/HotWalletCashoutRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/HotWalletCashoutRequest.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/InternalMessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/InternalMessageResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/IsAddressValidResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/IsAddressValidResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/IsAliveResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/IsAliveResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/IssueIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/IssueIndicator.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/IssueTokensModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/IssueTokensModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ListResultCoinResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ListResultCoinResult.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/ListResultExternalTokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/ListResultExternalTokenModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/OperationIdResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/OperationIdResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletDataTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletDataTransaction.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletErc20EstimateTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletErc20EstimateTransaction.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletErc20Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletErc20Transaction.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletEstimateTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletEstimateTransaction.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletEthSignedTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletEthSignedTransaction.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletEthTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/PrivateWalletEthTransaction.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/RegisterResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/RegisterResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/TokenAddressHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/TokenAddressHistoryResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/TokenAddressTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/TokenAddressTransactions.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/TransactionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/TransactionResponse.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/TransferFromDepositRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/TransferFromDepositRequest.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/TransferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/TransferModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/Models/TransferWithChangeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/Models/TransferWithChangeModel.cs -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/client/Lykke.Service.EthereumCore.Client/readme.md -------------------------------------------------------------------------------- /client/Lykke.Service.EthereumCore.Client/update.ps1: -------------------------------------------------------------------------------- 1 | autorest readme.md -------------------------------------------------------------------------------- /patch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/patch/package.json -------------------------------------------------------------------------------- /patch/patch-project-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/patch/patch-project-json.js -------------------------------------------------------------------------------- /src/ApiRunner/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ApiRunner/.dockerignore -------------------------------------------------------------------------------- /src/ApiRunner/ApiRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ApiRunner/ApiRunner.csproj -------------------------------------------------------------------------------- /src/ApiRunner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ApiRunner/Dockerfile -------------------------------------------------------------------------------- /src/ApiRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ApiRunner/Program.cs -------------------------------------------------------------------------------- /src/ApiRunner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ApiRunner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ApiRunner/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ApiRunner/docker-compose.yml -------------------------------------------------------------------------------- /src/ContractBuilder/ContractBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/ContractBuilder.csproj -------------------------------------------------------------------------------- /src/ContractBuilder/ContractTransferJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/ContractTransferJob.cs -------------------------------------------------------------------------------- /src/ContractBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/Program.cs -------------------------------------------------------------------------------- /src/ContractBuilder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ContractBuilder/Properties/PublishProfiles/local-publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/Properties/PublishProfiles/local-publish.ps1 -------------------------------------------------------------------------------- /src/ContractBuilder/Properties/PublishProfiles/local.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/Properties/PublishProfiles/local.pubxml -------------------------------------------------------------------------------- /src/ContractBuilder/Properties/PublishProfiles/publish-module.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/Properties/PublishProfiles/publish-module.psm1 -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/Erc223DepositContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/Erc223DepositContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/bin/LuCyToken.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/bin/LuCyToken.abi -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/bin/LuCyToken.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/bin/LuCyToken.bin -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/bin/LuCyToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/bin/LuCyToken.json -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/bin/LyCI.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/bin/LyCI.abi -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/bin/LyCI.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/bin/LyCI.bin -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/bin/LyCI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/bin/LyCI.json -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/coin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/coin.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/coinContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/coinContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/contractSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/contractSettings.json -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/debugContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/debugContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/depositContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/depositContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/erc20DepositContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/erc20DepositContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/ethContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/ethContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/ethTransferContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/ethTransferContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/interfaces/manyOwnersBaseContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/interfaces/manyOwnersBaseContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/mainExchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/mainExchange.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/mainExchangeManyOwners.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/mainExchangeManyOwners.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/mainExchangeNM.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/mainExchangeNM.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/DENT/BurnableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/DENT/BurnableToken.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/LyCI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/LyCI.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/SafeMath.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/contractReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/contractReceiver.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/emissiveErc223Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/emissiveErc223Token.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/erc223Contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/erc223Contract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/erc223Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/erc223Token.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/lykkeTokenErc223Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/lykkeTokenErc223Base.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/Erc223/nonEmissiveToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/Erc223/nonEmissiveToken.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/SafeMath.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/emissiveToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/emissiveToken.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/erc20Contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/erc20Contract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/erc20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/erc20Token.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/lykkeTokenBase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/lykkeTokenBase.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/token/nonEmissiveToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/token/nonEmissiveToken.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/tokenTransferContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/tokenTransferContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/contracts/transferBaseContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/contracts/transferBaseContract.sol -------------------------------------------------------------------------------- /src/ContractBuilder/generalsettings_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/generalsettings_template.json -------------------------------------------------------------------------------- /src/ContractBuilder/transferTransaction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ContractBuilder/transferTransaction.txt -------------------------------------------------------------------------------- /src/DepostContractResolver/Commands/CommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Commands/CommandFactory.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Commands/ICommand.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/Commands/ScanDepositAndWithdrawCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Commands/ScanDepositAndWithdrawCommand.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/Commands/ScanDepositBalancesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Commands/ScanDepositBalancesCommand.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/Commands/TransferFromAdapterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Commands/TransferFromAdapterCommand.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/Commands/TransferFromDepositCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Commands/TransferFromDepositCommand.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/CommandsRegistration/CommandRegistrationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/CommandsRegistration/CommandRegistrationAttribute.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/CommandsRegistration/ICommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/CommandsRegistration/ICommandRegistration.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/CommandsRegistration/ScanDepositAndWithdrawCommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/CommandsRegistration/ScanDepositAndWithdrawCommandRegistration.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/CommandsRegistration/ScanDepositBalancesCommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/CommandsRegistration/ScanDepositBalancesCommandRegistration.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/CommandsRegistration/TransferFromAdapterCommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/CommandsRegistration/TransferFromAdapterCommandRegistration.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/CommandsRegistration/TransferFromDepositCommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/CommandsRegistration/TransferFromDepositCommandRegistration.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/DepositContractResolver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/DepositContractResolver.csproj -------------------------------------------------------------------------------- /src/DepostContractResolver/Helpers/ConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Helpers/ConfigurationHelper.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/Helpers/IConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Helpers/IConfigurationHelper.cs -------------------------------------------------------------------------------- /src/DepostContractResolver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/DepostContractResolver/Program.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/Commands/CommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/Commands/CommandFactory.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/Commands/FixDepositAddressesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/Commands/FixDepositAddressesCommand.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/Commands/ICommand.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/CommandsRegistration/CommandRegistrationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/CommandsRegistration/CommandRegistrationAttribute.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/CommandsRegistration/FixDepositAddressesCommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/CommandsRegistration/FixDepositAddressesCommandRegistration.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/CommandsRegistration/ICommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/CommandsRegistration/ICommandRegistration.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/Csv/EtherscanTx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/Csv/EtherscanTx.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/ErcDepositFix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/ErcDepositFix.csproj -------------------------------------------------------------------------------- /src/ErcDepositFix/Helpers/ConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/Helpers/ConfigurationHelper.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/Helpers/IConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/Helpers/IConfigurationHelper.cs -------------------------------------------------------------------------------- /src/ErcDepositFix/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/ErcDepositFix/Program.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/EthereumSamuraiApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/EthereumSamuraiApi.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/EthereumSamuraiApiCaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/EthereumSamuraiApiCaller.csproj -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/EthereumSamuraiApiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/EthereumSamuraiApiExtensions.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/IEthereumSamuraiApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/IEthereumSamuraiApi.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/AddressHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/AddressHistoryResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/ApiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/ApiError.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/ApiException.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/BalanceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/BalanceResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/BlockResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/BlockResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/Erc20BalanceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/Erc20BalanceResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/Erc20TokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/Erc20TokenResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/Erc20TransferHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/Erc20TransferHistoryResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/FilteredAddressHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/FilteredAddressHistoryResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/FilteredInternalMessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/FilteredInternalMessageResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/FilteredTransactionsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/FilteredTransactionsResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/GetErc20BalanceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/GetErc20BalanceRequest.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/GetErc20TransferHistoryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/GetErc20TransferHistoryRequest.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/GetErc20TransferHistoryV2Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/GetErc20TransferHistoryV2Request.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/InternalMessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/InternalMessageResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/TransactionFullInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/TransactionFullInfoResponse.cs -------------------------------------------------------------------------------- /src/EthereumSamuraiApiCaller/Models/TransactionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/EthereumSamuraiApiCaller/Models/TransactionResponse.cs -------------------------------------------------------------------------------- /src/JobRunner/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/JobRunner/.dockerignore -------------------------------------------------------------------------------- /src/JobRunner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/JobRunner/Dockerfile -------------------------------------------------------------------------------- /src/JobRunner/JobRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/JobRunner/JobRunner.csproj -------------------------------------------------------------------------------- /src/JobRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/JobRunner/Program.cs -------------------------------------------------------------------------------- /src/JobRunner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/JobRunner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JobRunner/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/JobRunner/appsettings.json -------------------------------------------------------------------------------- /src/JobRunner/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/JobRunner/docker-compose.yml -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Config/RegisterDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Config/RegisterDependency.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Controllers/IsAliveController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Controllers/IsAliveController.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Controllers/OperationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Controllers/OperationsController.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/Airlines/AirlinesHotWalletMonitoringTransactionJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/Airlines/AirlinesHotWalletMonitoringTransactionJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/Airlines/Erc20DepositTransferStarterJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/Airlines/Erc20DepositTransferStarterJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/Airlines/TransferNotificationJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/Airlines/TransferNotificationJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/CashinIndexingJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/CashinIndexingJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/CoinEventResubmittJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/CoinEventResubmittJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/Erc20DepositContractPoolJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/Erc20DepositContractPoolJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/Erc20DepositContractPoolRenewJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/Erc20DepositContractPoolRenewJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/Erc20DepositMonitoringCashinTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/Erc20DepositMonitoringCashinTransactions.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/Erc20DepositMonitoringContracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/Erc20DepositMonitoringContracts.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/HotWalletCashoutJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/HotWalletCashoutJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/HotWalletMonitoringTransactionJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/HotWalletMonitoringTransactionJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayErc20DepositTransferStarterJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayErc20DepositTransferStarterJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayHotWalletMonitoringTransactionJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayHotWalletMonitoringTransactionJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayIndexingJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayIndexingJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayTransferNotificationJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/LykkePay/LykkePayTransferNotificationJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/MonitoringCoinTransactionJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/MonitoringCoinTransactionJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/MonitoringOperationJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/MonitoringOperationJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/MonitoringTransferContracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/MonitoringTransferContracts.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/MonitoringTransferTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/MonitoringTransferTransactions.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/PoolRenewJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/PoolRenewJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/TransferContractPoolJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/TransferContractPoolJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/TransferContractUserAssignmentJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/TransferContractUserAssignmentJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Job/TransferTransactionQueueJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Job/TransferTransactionQueueJob.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Lykke.Job.EthereumCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Lykke.Job.EthereumCore.csproj -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Modules/CqrsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Modules/CqrsModule.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Modules/JobModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Modules/JobModule.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Startup.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Workflow/EthServiceHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Workflow/EthServiceHelpers.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Workflow/Handlers/BlockPassCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Workflow/Handlers/BlockPassCommandHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Workflow/Handlers/CashoutCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Workflow/Handlers/CashoutCommandHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Workflow/Handlers/Erc223DepositAssignCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Workflow/Handlers/Erc223DepositAssignCommandHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Job.EthereumCore/Workflow/Handlers/TransferCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Job.EthereumCore/Workflow/Handlers/TransferCommandHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Attributes/EthereumAddressAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Attributes/EthereumAddressAttribute.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/EthereumApi.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/EthereumApi.Models.csproj -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Indexer/TransactionIndexerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Indexer/TransactionIndexerResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/AddWalletModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/AddWalletModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/AddressHistoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/AddressHistoryResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/AddressTokenBalanceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/AddressTokenBalanceResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/AddressTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/AddressTransactions.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/Airlines/TransferFromDepositRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/Airlines/TransferFromDepositRequest.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/BalanceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/BalanceModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/BaseCoinRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/BaseCoinRequestModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CashInModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CashInModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CashoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CashoutModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CheckIdResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CheckIdResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CheckPendingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CheckPendingModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CheckSignResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CheckSignResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CoinResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CoinResult.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CreateAssetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CreateAssetModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CreateExternalTokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CreateExternalTokenModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CreateTransitionContractModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CreateTransitionContractModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/CurrentBlockModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/CurrentBlockModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/EstimatedGasModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/EstimatedGasModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/EthTransactionRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/EthTransactionRaw.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/EthereumAddressRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/EthereumAddressRequest.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/ExistsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/ExistsModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/ExternalTokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/ExternalTokenModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/GasPriceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/GasPriceModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/GetErcBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/GetErcBalance.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/HashResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/HashResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/HotWalletCashoutRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/HotWalletCashoutRequest.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/IsAddressValidResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/IsAddressValidResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/IssueTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/IssueTokens.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/ListResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/ListResult.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/LykkePay/TransferFromDepositRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/LykkePay/TransferFromDepositRequest.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/PrivateWalletEthTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/PrivateWalletEthTransaction.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/ReceivePaymentWithoutEstimationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/ReceivePaymentWithoutEstimationRequest.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/ReceivePaymentWithoutEstimationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/ReceivePaymentWithoutEstimationResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/RegisterResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/RegisterResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/SwapModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/SwapModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/TransactionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/TransactionResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore..Models/Models/TransferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore..Models/Models/TransferModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Lykke.Service.EthereumCore.AzureRepositories.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Lykke.Service.EthereumCore.AzureRepositories.csproj -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Notifiers/SlackNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Notifiers/SlackNotifier.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/QueueFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/QueueFactory.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/RegisterRepos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/RegisterRepos.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/AddressStatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/AddressStatisticsRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/AppSettingsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/AppSettingsRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/BlackListAddressesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/BlackListAddressesRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/BlockSyncedByHashRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/BlockSyncedByHashRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/BlockSyncedRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/BlockSyncedRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CashinEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CashinEventRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinContractFilterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinContractFilterRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinEventRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinTransactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/CoinTransactionRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/Erc20BlackListAddressesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/Erc20BlackListAddressesRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/Erc20DepositContractRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/Erc20DepositContractRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/EthereumContractPoolRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/EthereumContractPoolRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/EventTraceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/EventTraceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/ExternalTokenRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/ExternalTokenRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/GasPriceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/GasPriceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/HotWalletOperationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/HotWalletOperationRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/HotWalletTransactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/HotWalletTransactionRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/IPendingTransactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/IPendingTransactionRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/NonceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/NonceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OperationResubmittRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OperationResubmittRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OperationToHashMatchRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OperationToHashMatchRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OverrideNonceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OverrideNonceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OwnerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/OwnerRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/PendingOperationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/PendingOperationRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/TransferContractRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/TransferContractRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserAssignmentFailRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserAssignmentFailRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserPaymentHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserPaymentHistoryRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserPaymentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserPaymentRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserTransferWalletRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/UserTransferWalletRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/WhiteListAddressesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.AzureRepositories/Repositories/WhiteListAddressesRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/AddressHistoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/AddressHistoryModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/AddressNonceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/AddressNonceModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/AddressTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/AddressTransactions.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/Erc20/AddressTokenBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/Erc20/AddressTokenBalance.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/InternalMessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/InternalMessageModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/Lykke.Service.EthereumCore.BusinessModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/Lykke.Service.EthereumCore.BusinessModels.csproj -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/DataTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/DataTransaction.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/Erc20Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/Erc20Transaction.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/EthTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/EthTransaction.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/TransactionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/PrivateWallet/TransactionBase.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/TransactionContentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/TransactionContentModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.BusinessModels/TransactionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.BusinessModels/TransactionModel.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Airlines/IErc20DepositContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Airlines/IErc20DepositContractService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/BigDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/BigDecimal.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Common/IAggregatedErc20DepositContractLocatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Common/IAggregatedErc20DepositContractLocatorService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Common/IErc20DepositContractLocatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Common/IErc20DepositContractLocatorService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Common/IdCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Common/IdCheckResult.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Common/WorkflowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Common/WorkflowType.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Constants.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/ContractEvents/UserPaymentEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/ContractEvents/UserPaymentEvent.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Exceptions/ClientSideException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Exceptions/ClientSideException.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Exceptions/ExceptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Exceptions/ExceptionType.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Health/HealthIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Health/HealthIssue.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Health/HealthIssuesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Health/HealthIssuesCollection.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/IQueueFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/IQueueFactory.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Lykke.Service.EthereumCore.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Lykke.Service.EthereumCore.Core.csproj -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/LykkePay/ILykkePayEventsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/LykkePay/ILykkePayEventsService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Messages/HotWallet/HotWalletCashoutMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Messages/HotWallet/HotWalletCashoutMessage.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Messages/LykkePay/LykkePayErc20TransferMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Messages/LykkePay/LykkePayErc20TransferMessage.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Messages/LykkePay/LykkePayErc20TransferNotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Messages/LykkePay/LykkePayErc20TransferNotificationMessage.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Notifiers/SlackNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Notifiers/SlackNotifier.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/PassToken/IBlockPassService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/PassToken/IBlockPassService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/PrivateWallet/IEstimationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/PrivateWallet/IEstimationService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/PrivateWallet/OperationEstimationV2Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/PrivateWallet/OperationEstimationV2Result.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/QueueHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/QueueHelper.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IAddressesStatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IAddressesStatisticsRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IAppSettingsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IAppSettingsRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IBlackListAddressesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IBlackListAddressesRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IBlockSyncedByHashRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IBlockSyncedByHashRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IBlockSyncedRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IBlockSyncedRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/ICashinEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/ICashinEventRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/ICoinContractFilterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/ICoinContractFilterRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/ICoinEventRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/ICoinEventRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/ICoinRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/ICoinRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/ICoinTransactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/ICoinTransactionRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IErc20BlackListAddressesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IErc20BlackListAddressesRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IErc20DepositContractRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IErc20DepositContractRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IEthereumContractPoolRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IEthereumContractPoolRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IEthereumContractRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IEthereumContractRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IEventTraceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IEventTraceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IExternalTokenRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IExternalTokenRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IGasPriceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IGasPriceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IHotWalletCashout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IHotWalletCashout.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IHotWalletCashoutTransactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IHotWalletCashoutTransactionRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IMonitoringRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IMonitoringRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/INonceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/INonceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IOperationLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IOperationLogRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IOperationResubmittRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IOperationResubmittRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IOverrideNonceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IOverrideNonceRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IOwnerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IOwnerRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IPendingOperationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IPendingOperationRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IPendingTransactionsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IPendingTransactionsRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/ITransferContractRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/ITransferContractRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IUserAssignmentFailRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IUserAssignmentFailRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IUserPaymentHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IUserPaymentHistoryRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IUserPaymentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IUserPaymentRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IUserTransferWalletRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IUserTransferWalletRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Repositories/IWhiteListAddressesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Repositories/IWhiteListAddressesRepository.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Services/IHealthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Services/IHealthService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Services/IShutdownManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Services/IShutdownManager.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Services/IStartupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Services/IStartupManager.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Settings/AirlinesSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Settings/AirlinesSettings.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Settings/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Settings/AppSettings.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Settings/BaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Settings/BaseSettings.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Settings/BlockPassClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Settings/BlockPassClientSettings.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Settings/GeneralSettingsReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Settings/GeneralSettingsReader.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Shared/Erc20SharedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Shared/Erc20SharedService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Shared/Erc223SharedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Shared/Erc223SharedService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Shared/TransferWalletSharedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Shared/TransferWalletSharedService.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/ChaosKitty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/ChaosKitty.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/Encryption.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/EthUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/EthUtils.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/JsonExtensions.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/QueueMessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/QueueMessageBase.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/RetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/RetryPolicy.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/TaskExtensions.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.Core/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.Core/Utils/Utils.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/BlockPassClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/BlockPassClientFactory.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/DelegatingHandlers/ApiKeyHeaderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/DelegatingHandlers/ApiKeyHeaderHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/DelegatingHandlers/ContentTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/DelegatingHandlers/ContentTypeHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/DelegatingHandlers/ResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/DelegatingHandlers/ResponseHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/Exceptions/NotOkException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/Exceptions/NotOkException.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/IBlockPassClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/IBlockPassClient.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/Lykke.Service.EthereumCore.PassTokenIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/Lykke.Service.EthereumCore.PassTokenIntegration.csproj -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/Models/Requests/EthAddressRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/Models/Requests/EthAddressRequest.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/Models/Responses/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/Models/Responses/ErrorResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.PassTokenIntegration/Models/Responses/EthAddressResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.PassTokenIntegration/Models/Responses/EthAddressResponse.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.RabbitMQ/BytesSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.RabbitMQ/BytesSerializer.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.RabbitMQ/Lykke.Service.RabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.RabbitMQ/Lykke.Service.RabbitMQ.csproj -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.RabbitMQ/RabbitPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.RabbitMQ/RabbitPublisher.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore.RabbitMQ/RegisterRabbitQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore.RabbitMQ/RegisterRabbitQueue.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Attributes/ApiKeyAuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Attributes/ApiKeyAuthorizeAttribute.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/Airlines/LykkePayErc20DepositContractsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/Airlines/LykkePayErc20DepositContractsController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/AssetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/AssetController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/BlockController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/BlockController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/BlockpassWhitelistController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/BlockpassWhitelistController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/Erc20BalanceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/Erc20BalanceController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/Erc20BlackListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/Erc20BlackListController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/Erc20DepositContractsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/Erc20DepositContractsController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/Erc20WalletController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/Erc20WalletController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/EstimationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/EstimationController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/ExchangeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/ExchangeController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/ExternalTokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/ExternalTokenController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/GasPriceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/GasPriceController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/HashController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/HashController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/HotWalletController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/HotWalletController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/InternalMessageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/InternalMessageController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/LykkePay/LykkePayErc20DepositContractsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/LykkePay/LykkePayErc20DepositContractsController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/PrivateWalletController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/PrivateWalletController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/RpcController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/RpcController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/SystemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/SystemController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/TransactionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/TransactionController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/TransitionContractsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/TransitionContractsController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/ValidationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/ValidationController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Controllers/WhiteListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Controllers/WhiteListController.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Filters/Swagger/ApiKeyHeaderAccessTokenOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Filters/Swagger/ApiKeyHeaderAccessTokenOperationFilter.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/GlobalExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/GlobalExceptionFilter.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Lykke.Service.EthereumCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Lykke.Service.EthereumCore.csproj -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Middleware/ApiExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Middleware/ApiExceptionHandler.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Modules/ControllerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Modules/ControllerModule.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Modules/CqrsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Modules/CqrsModule.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Modules/ServiceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Modules/ServiceModule.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Project_Readme.html -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Startup.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Utils/ModelStateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Utils/ModelStateHelper.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Utils/TimeoutPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Utils/TimeoutPolicy.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/Workflow/Sagas/Erc223DepositSaga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/Workflow/Sagas/Erc223DepositSaga.cs -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/settings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Lykke.Service.EthereumCore/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Lykke.Service.EthereumCore/web.config -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/Commands/CommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/Commands/CommandFactory.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/Commands/ExportDepositAddressesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/Commands/ExportDepositAddressesCommand.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/Commands/ICommand.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/CommandsRegistration/CommandRegistrationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/CommandsRegistration/CommandRegistrationAttribute.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/CommandsRegistration/ExportDepositAddressesCommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/CommandsRegistration/ExportDepositAddressesCommandRegistration.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/CommandsRegistration/ICommandRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/CommandsRegistration/ICommandRegistration.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/Helpers/ConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/Helpers/ConfigurationHelper.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/Helpers/IConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/Helpers/IConfigurationHelper.cs -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/PassTokenAddressExporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/PassTokenAddressExporter.csproj -------------------------------------------------------------------------------- /src/PassTokenAddressExporter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/PassTokenAddressExporter/Program.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/BaseTest.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/Config.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/Jobs/MonitoringCoinTransactionJobUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/Jobs/MonitoringCoinTransactionJobUnitTest.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/Jobs/MonitoringOperationJobUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/Jobs/MonitoringOperationJobUnitTest.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/Mocks/MockEthereumSamuraiApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/Mocks/MockEthereumSamuraiApi.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/Mocks/MockNonceCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/Mocks/MockNonceCalculator.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/PrivateWallet/Erc20ServiceUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/PrivateWallet/Erc20ServiceUnitTest.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/PrivateWallet/EthereumIndexerServiceUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/PrivateWallet/EthereumIndexerServiceUnitTest.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/PrivateWallet/PrivateWalletServiceUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/PrivateWallet/PrivateWalletServiceUnitTest.cs -------------------------------------------------------------------------------- /src/Service.UnitTests/Service.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/Service.UnitTests.csproj -------------------------------------------------------------------------------- /src/Service.UnitTests/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Service.UnitTests/TestConstants.cs -------------------------------------------------------------------------------- /src/Services/Airlines/Erc20DepositContractPoolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Airlines/Erc20DepositContractPoolService.cs -------------------------------------------------------------------------------- /src/Services/Airlines/Erc20DepositContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Airlines/Erc20DepositContractService.cs -------------------------------------------------------------------------------- /src/Services/AssetContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/AssetContractService.cs -------------------------------------------------------------------------------- /src/Services/CoinEventPublisherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/CoinEventPublisherService.cs -------------------------------------------------------------------------------- /src/Services/CoinEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/CoinEventService.cs -------------------------------------------------------------------------------- /src/Services/Coins/CoinTransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/CoinTransactionService.cs -------------------------------------------------------------------------------- /src/Services/Coins/ExchangeContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/ExchangeContractService.cs -------------------------------------------------------------------------------- /src/Services/Coins/Models/CoinContractPublicEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/Models/CoinContractPublicEvent.cs -------------------------------------------------------------------------------- /src/Services/Coins/Models/CoinTransactionCompleteEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/Models/CoinTransactionCompleteEvent.cs -------------------------------------------------------------------------------- /src/Services/Coins/Models/CoinTransactionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/Models/CoinTransactionMessage.cs -------------------------------------------------------------------------------- /src/Services/Coins/Models/Events/CoinContractCashInEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/Models/Events/CoinContractCashInEvent.cs -------------------------------------------------------------------------------- /src/Services/Coins/Models/Events/CoinContractCashOutEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/Models/Events/CoinContractCashOutEvent.cs -------------------------------------------------------------------------------- /src/Services/Coins/Models/Events/CoinContractTransferEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Coins/Models/Events/CoinContractTransferEvent.cs -------------------------------------------------------------------------------- /src/Services/Common/AggregatedDepositContractLocatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Common/AggregatedDepositContractLocatorService.cs -------------------------------------------------------------------------------- /src/Services/Common/ChainIdService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Common/ChainIdService.cs -------------------------------------------------------------------------------- /src/Services/Common/EventsServiceCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Common/EventsServiceCommon.cs -------------------------------------------------------------------------------- /src/Services/Erc20/Erc20BalanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Erc20/Erc20BalanceService.cs -------------------------------------------------------------------------------- /src/Services/Erc20DepositContractPoolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Erc20DepositContractPoolService.cs -------------------------------------------------------------------------------- /src/Services/Erc20DepositContractQueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Erc20DepositContractQueueService.cs -------------------------------------------------------------------------------- /src/Services/Erc20DepositContractQueueServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Erc20DepositContractQueueServiceFactory.cs -------------------------------------------------------------------------------- /src/Services/Erc20DepositContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Erc20DepositContractService.cs -------------------------------------------------------------------------------- /src/Services/Erc20DepositTransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Erc20DepositTransactionService.cs -------------------------------------------------------------------------------- /src/Services/ErcInterfaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/ErcInterfaceService.cs -------------------------------------------------------------------------------- /src/Services/ExternalTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/ExternalTokenService.cs -------------------------------------------------------------------------------- /src/Services/GasPriceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/GasPriceService.cs -------------------------------------------------------------------------------- /src/Services/HashCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/HashCalculator.cs -------------------------------------------------------------------------------- /src/Services/HotWallet/HotWalletService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/HotWallet/HotWalletService.cs -------------------------------------------------------------------------------- /src/Services/HotWallet/IHotWalletService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/HotWallet/IHotWalletService.cs -------------------------------------------------------------------------------- /src/Services/IErc20DepositContractQueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/IErc20DepositContractQueueService.cs -------------------------------------------------------------------------------- /src/Services/IErc20DepositContractQueueServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/IErc20DepositContractQueueServiceFactory.cs -------------------------------------------------------------------------------- /src/Services/Infrastructure/HealthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Infrastructure/HealthService.cs -------------------------------------------------------------------------------- /src/Services/Infrastructure/ShutdownManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Infrastructure/ShutdownManager.cs -------------------------------------------------------------------------------- /src/Services/Infrastructure/StartupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Infrastructure/StartupManager.cs -------------------------------------------------------------------------------- /src/Services/Lykke.Service.EthereumCore.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Lykke.Service.EthereumCore.Services.csproj -------------------------------------------------------------------------------- /src/Services/LykkePay/Erc20DepositContractPoolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/LykkePay/Erc20DepositContractPoolService.cs -------------------------------------------------------------------------------- /src/Services/LykkePay/LykkePayErc20DepositContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/LykkePay/LykkePayErc20DepositContractService.cs -------------------------------------------------------------------------------- /src/Services/LykkePay/LykkePayEventsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/LykkePay/LykkePayEventsService.cs -------------------------------------------------------------------------------- /src/Services/Model/CashoutOperationEstimationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Model/CashoutOperationEstimationResult.cs -------------------------------------------------------------------------------- /src/Services/New/Models/CoinCashinEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/Models/CoinCashinEvent.cs -------------------------------------------------------------------------------- /src/Services/New/Models/CoinEventCashinCompletedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/Models/CoinEventCashinCompletedMessage.cs -------------------------------------------------------------------------------- /src/Services/New/Models/ContractDeploymentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/Models/ContractDeploymentInfo.cs -------------------------------------------------------------------------------- /src/Services/New/Models/OperationHashMatchMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/Models/OperationHashMatchMessage.cs -------------------------------------------------------------------------------- /src/Services/New/OwnerBlockchainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/OwnerBlockchainService.cs -------------------------------------------------------------------------------- /src/Services/New/OwnerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/OwnerService.cs -------------------------------------------------------------------------------- /src/Services/New/PendingOperationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/PendingOperationService.cs -------------------------------------------------------------------------------- /src/Services/New/TransactionEventsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/New/TransactionEventsService.cs -------------------------------------------------------------------------------- /src/Services/Old/ContractQueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Old/ContractQueueService.cs -------------------------------------------------------------------------------- /src/Services/Old/ContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Old/ContractService.cs -------------------------------------------------------------------------------- /src/Services/Old/EthereumQueueOutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Old/EthereumQueueOutService.cs -------------------------------------------------------------------------------- /src/Services/Old/EthereumTransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Old/EthereumTransactionService.cs -------------------------------------------------------------------------------- /src/Services/Old/PaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Old/PaymentService.cs -------------------------------------------------------------------------------- /src/Services/OperationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/OperationsService.cs -------------------------------------------------------------------------------- /src/Services/PassToken/BlockPassService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/PassToken/BlockPassService.cs -------------------------------------------------------------------------------- /src/Services/PrivateWallet/Erc20Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/PrivateWallet/Erc20Service.cs -------------------------------------------------------------------------------- /src/Services/PrivateWallet/EstimationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/PrivateWallet/EstimationService.cs -------------------------------------------------------------------------------- /src/Services/PrivateWallet/EthereumIndexerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/PrivateWallet/EthereumIndexerService.cs -------------------------------------------------------------------------------- /src/Services/PrivateWallet/PrivateWalletService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/PrivateWallet/PrivateWalletService.cs -------------------------------------------------------------------------------- /src/Services/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Services/RegisterDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/RegisterDependency.cs -------------------------------------------------------------------------------- /src/Services/Signature/INonceCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/INonceCalculator.cs -------------------------------------------------------------------------------- /src/Services/Signature/ITransactionRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/ITransactionRouter.cs -------------------------------------------------------------------------------- /src/Services/Signature/LykkeSignedTransactionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/LykkeSignedTransactionManager.cs -------------------------------------------------------------------------------- /src/Services/Signature/NonceCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/NonceCalculator.cs -------------------------------------------------------------------------------- /src/Services/Signature/SignatureChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/SignatureChecker.cs -------------------------------------------------------------------------------- /src/Services/Signature/SignatureInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/SignatureInterceptor.cs -------------------------------------------------------------------------------- /src/Services/Signature/SignatureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/SignatureService.cs -------------------------------------------------------------------------------- /src/Services/Signature/TransactionRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Signature/TransactionRouter.cs -------------------------------------------------------------------------------- /src/Services/Transactions/RawTransactionSubmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Transactions/RawTransactionSubmitter.cs -------------------------------------------------------------------------------- /src/Services/Transactions/TransactionValidationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Transactions/TransactionValidationService.cs -------------------------------------------------------------------------------- /src/Services/TransferContractPoolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/TransferContractPoolService.cs -------------------------------------------------------------------------------- /src/Services/TransferContractQueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/TransferContractQueueService.cs -------------------------------------------------------------------------------- /src/Services/TransferContractQueueServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/TransferContractQueueServiceFactory.cs -------------------------------------------------------------------------------- /src/Services/TransferContractService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/TransferContractService.cs -------------------------------------------------------------------------------- /src/Services/TransferContractTransactionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/TransferContractTransactionService.cs -------------------------------------------------------------------------------- /src/Services/TransferContractUserAssignmentQueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/TransferContractUserAssignmentQueueService.cs -------------------------------------------------------------------------------- /src/Services/Utils/DateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/Services/Utils/DateUtils.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/DelegatingHandlers/ApiKeyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/DelegatingHandlers/ApiKeyHandler.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/ILykkeSigningAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/ILykkeSigningAPI.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/LykkeSigningAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/LykkeSigningAPI.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/LykkeSigningAPIExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/LykkeSigningAPIExtensions.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/AddKeyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/AddKeyRequest.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/BitcoinTransactionSignRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/BitcoinTransactionSignRequest.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/EthereumAddressResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/EthereumAddressResponse.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/EthereumHashSignRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/EthereumHashSignRequest.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/EthereumTransactionSignRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/EthereumTransactionSignRequest.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/HashSignResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/HashSignResponse.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/IsAliveResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/IsAliveResponse.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/PrivateKeyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/PrivateKeyResponse.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/PubKeyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/PubKeyResponse.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Models/TransactionSignResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Models/TransactionSignResponse.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SigningServiceApiCaller/SigningServiceApiCaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/SigningServiceApiCaller/SigningServiceApiCaller.csproj -------------------------------------------------------------------------------- /src/TestRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TestRunner/Program.cs -------------------------------------------------------------------------------- /src/TestRunner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TestRunner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestRunner/TestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TestRunner/TestRunner.csproj -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/EmissiveErc223Token.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/EmissiveErc223Token.abi -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/EmissiveErc223Token.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/EmissiveErc223Token.bin -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/EmissiveErc223Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/EmissiveErc223Token.json -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/LyCI.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/LyCI.abi -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/LyCI.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/LyCI.bin -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/LyCI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/LyCI.json -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/NonEmissiveErc223Token.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/NonEmissiveErc223Token.abi -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/NonEmissiveErc223Token.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/NonEmissiveErc223Token.bin -------------------------------------------------------------------------------- /src/TokenDeployer/Contracts/NonEmissiveErc223Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Contracts/NonEmissiveErc223Token.json -------------------------------------------------------------------------------- /src/TokenDeployer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/Program.cs -------------------------------------------------------------------------------- /src/TokenDeployer/TokenCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/TokenCfg.cs -------------------------------------------------------------------------------- /src/TokenDeployer/TokenCfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/TokenCfg.json -------------------------------------------------------------------------------- /src/TokenDeployer/TokenDeployer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TokenDeployer/TokenDeployer.csproj -------------------------------------------------------------------------------- /src/TransactionResubmit/HashForResubmit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TransactionResubmit/HashForResubmit.json -------------------------------------------------------------------------------- /src/TransactionResubmit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TransactionResubmit/Program.cs -------------------------------------------------------------------------------- /src/TransactionResubmit/RabbitResubmit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TransactionResubmit/RabbitResubmit.cs -------------------------------------------------------------------------------- /src/TransactionResubmit/ResubmitModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TransactionResubmit/ResubmitModel.cs -------------------------------------------------------------------------------- /src/TransactionResubmit/TransactionResubmit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TransactionResubmit/TransactionResubmit.csproj -------------------------------------------------------------------------------- /src/TransactionResubmit/TransactionsForResubmit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/src/TransactionResubmit/TransactionsForResubmit.json -------------------------------------------------------------------------------- /tests/Lykke.Service.PassClientTest.Console/Lykke.Service.PassClientTest.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Lykke.Service.PassClientTest.Console/Lykke.Service.PassClientTest.Console.csproj -------------------------------------------------------------------------------- /tests/Lykke.Service.PassClientTest.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Lykke.Service.PassClientTest.Console/Program.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/BaseTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/BigDecimalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/BigDecimalTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/BugReproduction/EventTraceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/BugReproduction/EventTraceTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/BugReproduction/GasPriceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/BugReproduction/GasPriceTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/BugReproduction/WrongSignBug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/BugReproduction/WrongSignBug.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Erc20ServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Erc20ServiceTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/EthereumTransactionServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/EthereumTransactionServiceTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/ExchangeServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/ExchangeServiceTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/HashCalculationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/HashCalculationTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Init/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Init/Config.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/JavascriptTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/JavascriptTestData.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/JobTests/CheckPaymentsToUserContractsJobTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/JobTests/CheckPaymentsToUserContractsJobTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/JobTests/MonitoringContractBalanceJobTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/JobTests/MonitoringContractBalanceJobTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/JobTests/MonitoringJobTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/JobTests/MonitoringJobTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/JobTests/TransferTransactionQueueJobTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/JobTests/TransferTransactionQueueJobTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Old/CoinEventServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Old/CoinEventServiceTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Old/ContractQueueServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Old/ContractQueueServiceTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Old/EthereumQueueOutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Old/EthereumQueueOutTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Old/PaymentServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Old/PaymentServiceTests.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Old/TestContracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Old/TestContracts.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/PrivateWalletServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/PrivateWalletServiceTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/RepoTest/PendingTransactionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/RepoTest/PendingTransactionTest.cs -------------------------------------------------------------------------------- /tests/Service.Tests.New/Service.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/Service.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests/Service.Tests.New/TestResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/TestResult.xml -------------------------------------------------------------------------------- /tests/Service.Tests.New/configurationUrl.url: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Service.Tests.New/testdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.New/testdata.txt -------------------------------------------------------------------------------- /tests/Service.Tests.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LykkeCity/EthereumApiDotNetCore/HEAD/tests/Service.Tests.xproj --------------------------------------------------------------------------------