├── .config └── dotnet-tools.json ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── images │ └── logo.svg ├── release-drafter.yml └── workflows │ ├── release_mgmt.yml │ └── update-documentation.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SECURITY.md ├── appveyor.yml ├── docfx ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── filterConfig.yml ├── images │ └── logo.svg ├── index.md ├── templates │ └── docfx-stellar-template │ │ ├── LICENSE.md │ │ └── src │ │ ├── partials │ │ ├── affix.tmpl.partial │ │ ├── class.header.tmpl.partial │ │ ├── class.tmpl.partial │ │ └── enum.tmpl.partial │ │ └── styles │ │ ├── main.css │ │ └── main.js ├── toc.yml └── tutorials │ ├── examples │ ├── export_transaction_to_xdr_base64.md │ ├── generate_account_keypair.md │ ├── get_account_balance.md │ ├── import_xdr_to_transaction_base64.md │ └── send_native_assets.md │ ├── index.md │ └── toc.yml ├── dotnet-stellar-sdk.nuspec ├── dotnetcore └── stellar-dotnetcore-sdk.csproj ├── dotnetstandard └── stellar-dotnetstandard-sdk.csproj ├── nuget.config ├── packages-microsoft-prod.deb ├── stellar-dotnet-sdk-console ├── Program.cs └── stellar-dotnet-sdk-console.csproj ├── stellar-dotnet-sdk-test ├── AccountFlagTest.cs ├── AccountTest.cs ├── AssetAmountTest.cs ├── AssetTest.cs ├── BalanceTests.cs ├── ChangeTrustAssetTest.cs ├── ClaimLiquidityAtomTest.cs ├── ClaimPredicateTest.cs ├── FakeHttpClient.cs ├── FederationTest.cs ├── FeeBumpTransactionTest.cs ├── Generators │ ├── AlphaNum12Generator.cs │ ├── AlphaNum4Generator.cs │ └── KeyPairGenerator.cs ├── KeyPairBIP39Tests.cs ├── KeyPairTest.cs ├── LedgerKeyTest.cs ├── LiquidityPoolIDTest.cs ├── LiquidityPoolShareTrustlineAssetTest.cs ├── MemoTest.cs ├── MuxedAccountTest.cs ├── NetworkTest.cs ├── OperationTest.cs ├── PriceTest.cs ├── ServerCheckMemoRequiredTest.cs ├── ServerTest.cs ├── SignedPayloadSignerTest.cs ├── SignerTest.cs ├── StrKeyTest.cs ├── TimeBoundsTest.cs ├── TransactionPreconditionsTest.cs ├── TransactionTest.cs ├── TrustlineAssetTest.cs ├── UtilTest.cs ├── WebAuthenticationTest.cs ├── federation │ ├── FakeHttpMessageHandler.cs │ └── FederationServerTest.cs ├── operations │ ├── FeeBumpOperationTest.cs │ ├── LiquidityPoolDepositOperationTest.cs │ ├── LiquidityPoolWithdrawOperationTest.cs │ └── SetOptionsOperationTest.cs ├── requests │ ├── AccountsRequestBuilderTest.cs │ ├── AssetsRequestBuilderTest.cs │ ├── ClaimableBalancesRequestBuilderTest.cs │ ├── ClientProtocolExceptionTest.cs │ ├── EffectsRequestBuilderTest.cs │ ├── FakeHttpMessageHandler.cs │ ├── FakeResponse.cs │ ├── FakeResponseWithIOError.cs │ ├── FakeResponseWithStream.cs │ ├── FeeRequestBuilderTest.cs │ ├── FriendBotRequestBuilderTest.cs │ ├── HttpResponseExceptionTest.cs │ ├── LedgersRequestBuilderTest.cs │ ├── LiquidityPoolRequestBuilder │ │ ├── Data.json │ │ ├── DataPage.json │ │ └── LiquidityPoolRequestBuilderTest.cs │ ├── OffersRequestBuilderTest.cs │ ├── OperationsRequestBuilderTest.cs │ ├── OrderBookRequestBuilderTest.cs │ ├── PathStrictReceiveRequestBuilderTest.cs │ ├── PathStrictSendRequestBuilderTest.cs │ ├── PathsRequestBuilderTest.cs │ ├── PaymentsRequestBuilderTest.cs │ ├── RequestBuilderStreamableTest.cs │ ├── StreamAction.cs │ ├── StreamableTest.cs │ ├── TooManyRequestsExceptionTest.cs │ ├── TradeAggregationsRequestBuilderTest.cs │ ├── TradesRequestBuilderTest.cs │ └── TransactionsRequestBuilderTest.cs ├── responses │ ├── AccountDeserializerTest.cs │ ├── AccountPageDeserializerTest.cs │ ├── AssetDeserializerTest.cs │ ├── AssetPageDeserializerTest.cs │ ├── ClaimableBalanceDeserializerTest.cs │ ├── EffectDeserializerTest.cs │ ├── EffectsPageDeserializerTest.cs │ ├── FeeStatsDeserializerTest.cs │ ├── FriendBotResponseTest.cs │ ├── LedgerDeserializeTest.cs │ ├── LedgerPageDeserializerTest.cs │ ├── LinkTest.cs │ ├── LiquidityPoolDeserializerTest.cs │ ├── LiquidityPoolPageDeserializerTest.cs │ ├── LiquidityPoolResponse │ │ ├── Data.json │ │ └── LiquidityPoolResponseTest.cs │ ├── OfferPageDeserializerTest.cs │ ├── OperationPageDeserializerTest.cs │ ├── OperationResultTest.cs │ ├── OrderBookDeserializerTest.cs │ ├── PathsPageDeserializerTest.cs │ ├── PredicateDeserializerTest.cs │ ├── RootDeserializerTest.cs │ ├── SubmitTransactionResponseTest.cs │ ├── TradeAggregationsPageDeserializerTest.cs │ ├── TradesPageDeserializerTest.cs │ ├── TransactionDeserializerTest.cs │ ├── TransactionPageDeserializeTest.cs │ ├── TransactionResultTest.cs │ ├── effects │ │ ├── LiquidityPoolCreatedEffectResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolCreatedEffectResponseTest.cs │ │ ├── LiquidityPoolDepositedEffectResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolDepositedEffectResponseTest.cs │ │ ├── LiquidityPoolRemovedEffectResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolRemovedEffectResponseTest.cs │ │ ├── LiquidityPoolRevokedEffectResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolRevokedEffectResponseTest.cs │ │ ├── LiquidityPoolTest.cs │ │ ├── LiquidityPoolTradeEffectResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolTradeEffectResponseTest.cs │ │ └── LiquidityPoolWithdrewEffectResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolWithdrewEffectResponseTest.cs │ ├── operations │ │ ├── AccountMergeOperationResponseTest.cs │ │ ├── AllowTrustOperationResponseTest.cs │ │ ├── BeginSponsoringFutureReservesOperationTest.cs │ │ ├── BumpSequenceOperationResponseTest.cs │ │ ├── ChangeTrustOperationResponseTest.cs │ │ ├── ClaimClaimableBalanceOperationResponseTest.cs │ │ ├── ClawbackClaimableBalanceOperationResponseTest.cs │ │ ├── ClawbackOperationResponseTest.cs │ │ ├── CreateAccountOperationResponseTest.cs │ │ ├── CreateClaimableBalanceOperationResponseTest.cs │ │ ├── CreatePassiveOfferOperationResponseTest.cs │ │ ├── EndSponsoringFutureReservesOperationResponseTest.cs │ │ ├── InflationOperationResponseTest.cs │ │ ├── LiquidityPoolDepositOperationResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolDepositOperationResponseTest.cs │ │ ├── LiquidityPoolWithdrawOperationResponse │ │ │ ├── Data.json │ │ │ └── LiquidityPoolWithdrawOperationResponseTest.cs │ │ ├── ManageBuyOfferOperationResponseTest.cs │ │ ├── ManageDataOperationResponseTest.cs │ │ ├── ManageOfferOperationResponseTest.cs │ │ ├── PathPaymentStrictReceiveOperationResponseTest.cs │ │ ├── PathPaymentStrictSendOperationResponseTest.cs │ │ ├── PaymentOperationResponseTest.cs │ │ ├── RevokeSponsorshipOperationResponseTest.cs │ │ ├── SetOptionsOperationResponseTest.cs │ │ ├── SetTrustlineFlagsOperationResponseTest.cs │ │ └── UnknownOperationResponseTest.cs │ └── results │ │ ├── AccountMergeResultTest.cs │ │ ├── AllowTrustResultTest.cs │ │ ├── BeginSponsoringFutureReservesResultTest.cs │ │ ├── BumpSequenceResultTest.cs │ │ ├── ChangeTrustResultTest.cs │ │ ├── ClaimClaimableBalanceResultTest.cs │ │ ├── ClawbackClaimableBalanceResultTest.cs │ │ ├── ClawbackResultTest.cs │ │ ├── CreateAccountResultTest.cs │ │ ├── CreateClaimableBalanceResultTest.cs │ │ ├── EndSponsoringFutureReservesResultTest.cs │ │ ├── InflationResultTest.cs │ │ ├── ManageDataResultTest.cs │ │ ├── ManageOfferResultTest.cs │ │ ├── PathPaymentStrictReceiveResultTest.cs │ │ ├── PathPaymentStrictSendResultTest.cs │ │ ├── PaymentResultTest.cs │ │ ├── RevokeSponsorshipResultTest.cs │ │ ├── SetOptionsResultTest.cs │ │ ├── SetTrustlineFlagsResultTest.cs │ │ └── Util.cs ├── stellar-dotnet-sdk-test.csproj ├── testdata │ ├── account.json │ ├── accountData.json │ ├── accountPage.json │ ├── accountsWithSigner.json │ ├── accountsWithTrustline.json │ ├── assetAssetTypeCredit.json │ ├── assetAssetTypeNative.json │ ├── assetPage.json │ ├── claimableBalance.json │ ├── effects │ │ ├── accountSponsorship │ │ │ ├── accountSponsorshipCreated.json │ │ │ ├── accountSponsorshipRemoved.json │ │ │ └── accountSponsorshipUpdated.json │ │ ├── claimableBalance │ │ │ ├── claimableBalanceClaimantCreated.json │ │ │ ├── claimableBalanceClaimed.json │ │ │ ├── claimableBalanceClawedBack.json │ │ │ ├── claimableBalanceCreated.json │ │ │ ├── claimableBalanceSponsorshipCreated.json │ │ │ ├── claimableBalanceSponsorshipRemoved.json │ │ │ └── claimableBalanceSponsorshipUpdated.json │ │ ├── dataSponsorship │ │ │ ├── dataSponsorshipCreated.json │ │ │ ├── dataSponsorshipRemoved.json │ │ │ └── dataSponsorshipUpdated.json │ │ ├── effectAccountCreated.json │ │ ├── effectAccountCredited.json │ │ ├── effectAccountDebited.json │ │ ├── effectAccountFlagsUpdated.json │ │ ├── effectAccountHomeDomainUpdated.json │ │ ├── effectAccountInflationUpdated.json │ │ ├── effectAccountRemoved.json │ │ ├── effectAccountThresholdsUpdated.json │ │ ├── effectDataCreated.json │ │ ├── effectDataRemoved.json │ │ ├── effectDataUpdated.json │ │ ├── effectOfferCreated.json │ │ ├── effectOfferRemoved.json │ │ ├── effectOfferUpdated.json │ │ ├── effectPage.json │ │ ├── effectSequenceBumped.json │ │ ├── effectSignerCreated.json │ │ ├── effectSignerRemoved.json │ │ ├── effectSignerUpdated.json │ │ ├── effectTrade.json │ │ ├── effectTradePre100.json │ │ ├── effectUnknown.json │ │ ├── signerSponsorship │ │ │ ├── signerSponsorshipCreated.json │ │ │ ├── signerSponsorshipRemoved.json │ │ │ └── signerSponsorshipUpdated.json │ │ ├── trustline │ │ │ ├── trustlineAuthorized.json │ │ │ ├── trustlineAuthorizedToMaintainLiabilities.json │ │ │ ├── trustlineCreated.json │ │ │ ├── trustlineDeAuthorized.json │ │ │ ├── trustlineFlagsUpdated.json │ │ │ ├── trustlineRemoved.json │ │ │ └── trustlineUpdated.json │ │ └── trustlineSponsorship │ │ │ ├── trustlineSponsorshipCreated.json │ │ │ ├── trustlineSponsorshipRemoved.json │ │ │ └── trustlineSponsorshipUpdated.json │ ├── feeStats.json │ ├── friendBotFail.json │ ├── friendBotSuccess.json │ ├── ledger.json │ ├── ledgerNullValues.json │ ├── ledgerPage.json │ ├── offerPage.json │ ├── offerPagePre100.json │ ├── operations │ │ ├── accountMerge │ │ │ ├── accountMerge.json │ │ │ └── accountMergeMuxed.json │ │ ├── allowTrust │ │ │ ├── allowTrust.json │ │ │ └── allowTrustMuxed.json │ │ ├── beginSponsoringFutureReserves │ │ │ └── beginSponsoringFutureReserves.json │ │ ├── bumpSequence │ │ │ └── bumpSequence.json │ │ ├── changeTrust │ │ │ ├── changeTrust.json │ │ │ └── changeTrustMuxed.json │ │ ├── claimClaimableBalance │ │ │ ├── claimClaimableBalance.json │ │ │ └── claimClaimableBalanceMuxed.json │ │ ├── clawback │ │ │ ├── clawback.json │ │ │ └── clawbackMuxed.json │ │ ├── clawbackClaimableBalance │ │ │ └── clawbackClaimableBalance.json │ │ ├── createAccount │ │ │ ├── createAccount.json │ │ │ └── createAccountMuxed.json │ │ ├── createClaimableBalance │ │ │ ├── createClaimableBalance.json │ │ │ └── createClaimableBalanceAbsBeforeMaxInt.json │ │ ├── createPassiveOffer │ │ │ └── createPassiveOffer.json │ │ ├── endSponsoringFutureReserves │ │ │ ├── endSponsoringFutureReserves.json │ │ │ └── endSponsoringFutureReservesMuxed.json │ │ ├── inflation │ │ │ └── inflation.json │ │ ├── manageBuyOffer │ │ │ ├── manageBuyOffer.json │ │ │ └── manageBuyOfferPre100.json │ │ ├── manageData │ │ │ ├── manageData.json │ │ │ └── manageDataValueEmpty.json │ │ ├── manageOffer │ │ │ └── manageOffer.json │ │ ├── operationPage.json │ │ ├── pathPaymentStrictReceive │ │ │ └── pathPaymentStrictReceive.json │ │ ├── pathPaymentStrictSend │ │ │ └── pathPaymentStrictSend.json │ │ ├── payment │ │ │ ├── payment.json │ │ │ ├── paymentMuxed.json │ │ │ └── paymentNonNative.json │ │ ├── revokeSponsorship │ │ │ ├── revokeSponsorshipAccountID.json │ │ │ ├── revokeSponsorshipClaimableBalance.json │ │ │ ├── revokeSponsorshipData.json │ │ │ ├── revokeSponsorshipOffer.json │ │ │ ├── revokeSponsorshipSignerKey.json │ │ │ └── revokeSponsorshipTrustline.json │ │ ├── setOptions │ │ │ ├── setOptions.json │ │ │ └── setOptionsNonEd25519Key.json │ │ ├── setTrustlineFlags │ │ │ └── setTrustlineFlags.json │ │ └── unknownOperation │ │ │ └── unknownOperation.json │ ├── orderBook.json │ ├── pathsPage.json │ ├── root.json │ ├── serverFailure.json │ ├── serverSuccess.json │ ├── submitTransactionNoOfferId.json │ ├── submitTransactionOperationFailure.json │ ├── submitTransactionSuccess.json │ ├── submitTransactionTransactionFailure.json │ ├── tradeAggregationsPage.json │ ├── tradeAggregationsPagePre100.json │ ├── tradesPage.json │ ├── transactionFeeBump.json │ ├── transactionMuxed.json │ ├── transactionPage.json │ ├── transactionTransaction.json │ ├── transactionTransactionPre020.json │ ├── transactionTransactionTextMemo.json │ ├── transactionTransactionWithMemo.json │ └── transactionTransactionWithoutMemo.json └── xdr │ ├── PaddingTest.cs │ ├── TransactionDecodeTest.cs │ └── XdrDataStreamTest.cs ├── stellar-dotnet-sdk-xdr ├── Stellar-SCP.x ├── Stellar-ledger-entries.x ├── Stellar-ledger.x ├── Stellar-overlay.x ├── Stellar-transaction.x ├── Stellar-types.x ├── XdrDataInputStream.cs ├── XdrDataOutputStream.cs ├── generate.bat ├── generated │ ├── AccountEntry.cs │ ├── AccountEntryExtensionV1.cs │ ├── AccountEntryExtensionV2.cs │ ├── AccountEntryExtensionV3.cs │ ├── AccountFlags.cs │ ├── AccountID.cs │ ├── AccountMergeResult.cs │ ├── AccountMergeResultCode.cs │ ├── AllowTrustOp.cs │ ├── AllowTrustResult.cs │ ├── AllowTrustResultCode.cs │ ├── AlphaNum12.cs │ ├── AlphaNum4.cs │ ├── Asset.cs │ ├── AssetCode.cs │ ├── AssetCode12.cs │ ├── AssetCode4.cs │ ├── AssetType.cs │ ├── Auth.cs │ ├── AuthCert.cs │ ├── AuthenticatedMessage.cs │ ├── BeginSponsoringFutureReservesOp.cs │ ├── BeginSponsoringFutureReservesResult.cs │ ├── BeginSponsoringFutureReservesResultCode.cs │ ├── BucketEntry.cs │ ├── BucketEntryType.cs │ ├── BucketMetadata.cs │ ├── BumpSequenceOp.cs │ ├── BumpSequenceResult.cs │ ├── BumpSequenceResultCode.cs │ ├── ChangeTrustAsset.cs │ ├── ChangeTrustOp.cs │ ├── ChangeTrustResult.cs │ ├── ChangeTrustResultCode.cs │ ├── ClaimAtom.cs │ ├── ClaimAtomType.cs │ ├── ClaimClaimableBalanceOp.cs │ ├── ClaimClaimableBalanceResult.cs │ ├── ClaimClaimableBalanceResultCode.cs │ ├── ClaimLiquidityAtom.cs │ ├── ClaimOfferAtom.cs │ ├── ClaimOfferAtomV0.cs │ ├── ClaimPredicate.cs │ ├── ClaimPredicateType.cs │ ├── ClaimableBalanceEntry.cs │ ├── ClaimableBalanceEntryExtensionV1.cs │ ├── ClaimableBalanceFlags.cs │ ├── ClaimableBalanceID.cs │ ├── ClaimableBalanceIDType.cs │ ├── Claimant.cs │ ├── ClaimantType.cs │ ├── ClawbackClaimableBalanceOp.cs │ ├── ClawbackClaimableBalanceResult.cs │ ├── ClawbackClaimableBalanceResultCode.cs │ ├── ClawbackOp.cs │ ├── ClawbackResult.cs │ ├── ClawbackResultCode.cs │ ├── CreateAccountOp.cs │ ├── CreateAccountResult.cs │ ├── CreateAccountResultCode.cs │ ├── CreateClaimableBalanceOp.cs │ ├── CreateClaimableBalanceResult.cs │ ├── CreateClaimableBalanceResultCode.cs │ ├── CreatePassiveSellOfferOp.cs │ ├── CryptoKeyType.cs │ ├── Curve25519Public.cs │ ├── Curve25519Secret.cs │ ├── DataEntry.cs │ ├── DataValue.cs │ ├── DecoratedSignature.cs │ ├── DontHave.cs │ ├── Duration.cs │ ├── EncryptedBody.cs │ ├── EndSponsoringFutureReservesResult.cs │ ├── EndSponsoringFutureReservesResultCode.cs │ ├── EnvelopeType.cs │ ├── Error.cs │ ├── ErrorCode.cs │ ├── ExtensionPoint.cs │ ├── FeeBumpTransaction.cs │ ├── FeeBumpTransactionEnvelope.cs │ ├── Hash.cs │ ├── HashIDPreimage.cs │ ├── Hello.cs │ ├── HmacSha256Key.cs │ ├── HmacSha256Mac.cs │ ├── IPAddrType.cs │ ├── InflationPayout.cs │ ├── InflationResult.cs │ ├── InflationResultCode.cs │ ├── InnerTransactionResult.cs │ ├── InnerTransactionResultPair.cs │ ├── Int32.cs │ ├── Int64.cs │ ├── LedgerBounds.cs │ ├── LedgerCloseMeta.cs │ ├── LedgerCloseMetaV0.cs │ ├── LedgerCloseValueSignature.cs │ ├── LedgerEntry.cs │ ├── LedgerEntryChange.cs │ ├── LedgerEntryChangeType.cs │ ├── LedgerEntryChanges.cs │ ├── LedgerEntryExtensionV1.cs │ ├── LedgerEntryType.cs │ ├── LedgerHeader.cs │ ├── LedgerHeaderExtensionV1.cs │ ├── LedgerHeaderFlags.cs │ ├── LedgerHeaderHistoryEntry.cs │ ├── LedgerKey.cs │ ├── LedgerSCPMessages.cs │ ├── LedgerUpgrade.cs │ ├── LedgerUpgradeType.cs │ ├── Liabilities.cs │ ├── LiquidityPoolConstantProductParameters.cs │ ├── LiquidityPoolDepositOp.cs │ ├── LiquidityPoolDepositResult.cs │ ├── LiquidityPoolDepositResultCode.cs │ ├── LiquidityPoolEntry.cs │ ├── LiquidityPoolParameters.cs │ ├── LiquidityPoolType.cs │ ├── LiquidityPoolWithdrawOp.cs │ ├── LiquidityPoolWithdrawResult.cs │ ├── LiquidityPoolWithdrawResultCode.cs │ ├── ManageBuyOfferOp.cs │ ├── ManageBuyOfferResult.cs │ ├── ManageBuyOfferResultCode.cs │ ├── ManageDataOp.cs │ ├── ManageDataResult.cs │ ├── ManageDataResultCode.cs │ ├── ManageOfferEffect.cs │ ├── ManageOfferSuccessResult.cs │ ├── ManageSellOfferOp.cs │ ├── ManageSellOfferResult.cs │ ├── ManageSellOfferResultCode.cs │ ├── Memo.cs │ ├── MemoType.cs │ ├── MessageType.cs │ ├── MuxedAccount.cs │ ├── NodeID.cs │ ├── OfferEntry.cs │ ├── OfferEntryFlags.cs │ ├── Operation.cs │ ├── OperationMeta.cs │ ├── OperationResult.cs │ ├── OperationResultCode.cs │ ├── OperationType.cs │ ├── PathPaymentStrictReceiveOp.cs │ ├── PathPaymentStrictReceiveResult.cs │ ├── PathPaymentStrictReceiveResultCode.cs │ ├── PathPaymentStrictSendOp.cs │ ├── PathPaymentStrictSendResult.cs │ ├── PathPaymentStrictSendResultCode.cs │ ├── PaymentOp.cs │ ├── PaymentResult.cs │ ├── PaymentResultCode.cs │ ├── PeerAddress.cs │ ├── PeerStatList.cs │ ├── PeerStats.cs │ ├── PoolID.cs │ ├── PreconditionType.cs │ ├── Preconditions.cs │ ├── PreconditionsV2.cs │ ├── Price.cs │ ├── PublicKey.cs │ ├── PublicKeyType.cs │ ├── RevokeSponsorshipOp.cs │ ├── RevokeSponsorshipResult.cs │ ├── RevokeSponsorshipResultCode.cs │ ├── RevokeSponsorshipType.cs │ ├── SCPBallot.cs │ ├── SCPEnvelope.cs │ ├── SCPHistoryEntry.cs │ ├── SCPHistoryEntryV0.cs │ ├── SCPNomination.cs │ ├── SCPQuorumSet.cs │ ├── SCPStatement.cs │ ├── SCPStatementType.cs │ ├── SendMore.cs │ ├── SequenceNumber.cs │ ├── SetOptionsOp.cs │ ├── SetOptionsResult.cs │ ├── SetOptionsResultCode.cs │ ├── SetTrustLineFlagsOp.cs │ ├── SetTrustLineFlagsResult.cs │ ├── SetTrustLineFlagsResultCode.cs │ ├── Signature.cs │ ├── SignatureHint.cs │ ├── SignedSurveyRequestMessage.cs │ ├── SignedSurveyResponseMessage.cs │ ├── Signer.cs │ ├── SignerKey.cs │ ├── SignerKeyType.cs │ ├── SimplePaymentResult.cs │ ├── SponsorshipDescriptor.cs │ ├── StellarMessage.cs │ ├── StellarValue.cs │ ├── StellarValueType.cs │ ├── String32.cs │ ├── String64.cs │ ├── SurveyMessageCommandType.cs │ ├── SurveyRequestMessage.cs │ ├── SurveyResponseBody.cs │ ├── SurveyResponseMessage.cs │ ├── ThresholdIndexes.cs │ ├── Thresholds.cs │ ├── TimeBounds.cs │ ├── TimePoint.cs │ ├── TopologyResponseBody.cs │ ├── Transaction.cs │ ├── TransactionEnvelope.cs │ ├── TransactionHistoryEntry.cs │ ├── TransactionHistoryResultEntry.cs │ ├── TransactionMeta.cs │ ├── TransactionMetaV1.cs │ ├── TransactionMetaV2.cs │ ├── TransactionResult.cs │ ├── TransactionResultCode.cs │ ├── TransactionResultMeta.cs │ ├── TransactionResultPair.cs │ ├── TransactionResultSet.cs │ ├── TransactionSet.cs │ ├── TransactionSignaturePayload.cs │ ├── TransactionV0.cs │ ├── TransactionV0Envelope.cs │ ├── TransactionV1Envelope.cs │ ├── TrustLineAsset.cs │ ├── TrustLineEntry.cs │ ├── TrustLineEntryExtensionV2.cs │ ├── TrustLineFlags.cs │ ├── Uint256.cs │ ├── Uint32.cs │ ├── Uint64.cs │ ├── UpgradeEntryMeta.cs │ ├── UpgradeType.cs │ └── Value.cs └── stellar-dotnet-sdk-xdr.csproj ├── stellar-dotnet-sdk.sln └── stellar-dotnet-sdk ├── Account.cs ├── AccountFlag.cs ├── AccountMergeOperation.cs ├── AccountRequiresMemoException.cs ├── AllowTrustOperation.cs ├── Amount.cs ├── Asset.cs ├── AssetAmount.cs ├── AssetCodeLengthInvalidException.cs ├── AssetExtensions.cs ├── AssetTypeCreditAlphaNum.cs ├── AssetTypeCreditAlphaNum12.cs ├── AssetTypeCreditAlphaNum4.cs ├── AssetTypeNative.cs ├── Base32Encoding.cs ├── Base32EncodingOptions.cs ├── BeginSponsoringFutureReservesOperation.cs ├── BumpSequenceOperation.cs ├── ChangeTrustAsset.cs ├── ChangeTrustOperation.cs ├── ClaimClaimableBalanceOperation.cs ├── ClaimPredicate.cs ├── ClaimPredicateAnd.cs ├── ClaimPredicateBeforeAbsoluteTime.cs ├── ClaimPredicateBeforeRelativeTime.cs ├── ClaimPredicateNot.cs ├── ClaimPredicateOr.cs ├── ClaimPredicateUnconditional.cs ├── Claimant.cs ├── ClawbackClaimableBalanceOperation.cs ├── ClawbackOperation.cs ├── CreateAccountOperation.cs ├── CreateClaimableBalanceOperation.cs ├── CreatePassiveSellOfferOperation.cs ├── EndSponsoringFutureReservesOperation.cs ├── EnumerableExtensions.cs ├── EventSourceState.cs ├── FeeBumpTransaction.cs ├── FormatException.cs ├── HashCode.cs ├── IAccountId.cs ├── IEventSource.cs ├── ITransactionBuilderAccount.cs ├── InflationOperation.cs ├── InvalidWebAuthenticationException.cs ├── KeyPair.cs ├── LedgerBounds.cs ├── LedgerKey.cs ├── LedgerKeyAccount.cs ├── LedgerKeyClaimableBalance.cs ├── LedgerKeyData.cs ├── LedgerKeyOffer.cs ├── LedgerKeyTrustline.cs ├── LiquidityPoolConstantProductParameters.cs ├── LiquidityPoolDepositOperation.cs ├── LiquidityPoolID.cs ├── LiquidityPoolParameters.cs ├── LiquidityPoolShareChangeTrustAsset.cs ├── LiquidityPoolShareTrustlineAsset.cs ├── LiquidityPoolWithdrawOperation.cs ├── LiquidityPoolsRequestBuilder.cs ├── ManageBuyOfferOperation.cs ├── ManageDataOperation.cs ├── ManageOfferOperation.cs ├── ManageSellOfferOperation.cs ├── Memo.cs ├── MemoHash.cs ├── MemoHashAbstract.cs ├── MemoId.cs ├── MemoNone.cs ├── MemoReturnHash.cs ├── MemoText.cs ├── MemoTooLongException.cs ├── MuxedAccount.cs ├── MuxedAccountMed25519.cs ├── Network.cs ├── NoNetworkSelectedException.cs ├── NotEnoughSignaturesException.cs ├── Operation.cs ├── OperationThreshold.cs ├── PathPaymentStrictReceiveOperation.cs ├── PathPaymentStrictSendOperation.cs ├── PaymentOperation.cs ├── Price.cs ├── Properties └── PublishProfiles │ └── FolderProfile.pubxml ├── Reserve.cs ├── RevokeLedgerEntrySponsorshipOperation.cs ├── RevokeSignerSponsorshipOperation.cs ├── RevokeSponsorshipOperation.cs ├── SSEEventSource.cs ├── Server.cs ├── ServerSentErrorEventArgs.cs ├── ServerSentEventArgs.cs ├── SetOptionsOperation.cs ├── SetTrustlineFlagsOperation.cs ├── SignedPayloadSigner.cs ├── Signer.cs ├── StateChangeEventArgs.cs ├── StrKey.cs ├── SubmitTransactionOptions.cs ├── TimeBounds.cs ├── TooManySignaturesException.cs ├── Transaction.cs ├── TransactionBase.cs ├── TransactionBuilder.cs ├── TransactionPreconditions.cs ├── TrustlineAsset.cs ├── UriBuilderExtensions.cs ├── UriTemplate.cs ├── Util.cs ├── WebAuthentication.cs ├── converters ├── AssetAmountJsonConverter.cs ├── LiquidityPoolClaimableAssetAmountJsonConverter.cs ├── LiquidityPoolIDJsonConverter.cs ├── LiquidityPoolTypeEnumJsonConverter.cs └── ReserveJsonConverter.cs ├── federation ├── ConnectionErrorException.cs ├── Federation.cs ├── FederationResponse.cs ├── FederationServer.cs ├── FederationServerInvalidException.cs ├── MalformedAddressException.cs ├── NoFederationServerException.cs ├── NotFoundException.cs ├── ServerErrorException.cs └── StellarTomlNotFoundInvalidException.cs ├── requests ├── AccountsRequestBuilder.cs ├── AssetsRequestBuilder.cs ├── ClaimableBalancesRequestBuilder.cs ├── ClientProtocolException.cs ├── EffectsRequestBuilder.cs ├── FeeStatsRequestBuilder.cs ├── FriendBotRequestBuilder.cs ├── HttpResponseException.cs ├── LedgersRequestBuilder.cs ├── OffersRequestBuilder.cs ├── OperationsRequestBuilder.cs ├── OrderBookRequestBuilder.cs ├── PathStrictReceiveRequestBuilder.cs ├── PathStrictSendRequestBuilder.cs ├── PathsRequestBuilder.cs ├── PaymentsRequestBuilder.cs ├── RequestBuilder.cs ├── RequestBuilderExecutePageable.cs ├── RequestBuilderStreamable.cs ├── ResponseHandler.cs ├── TooManyRequestsException.cs ├── TradesAggregationRequestBuilder.cs ├── TradesRequestBuilder.cs └── TransactionsRequestBuilder.cs ├── responses ├── AccountDataResponse.cs ├── AccountResponse.cs ├── AccountResponseLinks.cs ├── AssetDeserializer.cs ├── AssetResponse.cs ├── AssetResponseFlags.cs ├── AssetResponseLinks.cs ├── Balance.cs ├── ClaimableBalanceResponse.cs ├── Claimant.cs ├── EffectDeserializer.cs ├── FeeBumpTransactionResultFailed.cs ├── FeeBumpTransactionResultSuccess.cs ├── FeeStatsResponse.cs ├── Flags.cs ├── FriendBotResponse.cs ├── FriendBotResponseLinks.cs ├── IPagingToken.cs ├── InnerTransactionResultPair.cs ├── JsonSingleton.cs ├── KeyPairTypeAdapter.cs ├── LedgerResponse.cs ├── Link.cs ├── LinkDeserializer.cs ├── LiquidityPoolResponse.cs ├── OfferResponse.cs ├── OfferResponseLinks.cs ├── OperationDeserializer.cs ├── OrderBookResponse.cs ├── Page.cs ├── PageLinks.cs ├── PathResponse.cs ├── PathResponseLinks.cs ├── Predicate.cs ├── Response.cs ├── RootResponse.cs ├── Signer.cs ├── SubmitTransactionResponse.cs ├── Thresholds.cs ├── TradeAggregationResponse.cs ├── TradeResponse.cs ├── TradeResponseLinks.cs ├── TransactionResponse.cs ├── TransactionResult.cs ├── TransactionResultBadAuth.cs ├── TransactionResultBadAuthExtra.cs ├── TransactionResultBadSeq.cs ├── TransactionResultFailed.cs ├── TransactionResultInsufficientBalance.cs ├── TransactionResultInsufficientFee.cs ├── TransactionResultInternalError.cs ├── TransactionResultMissingOperation.cs ├── TransactionResultNoAccount.cs ├── TransactionResultSuccess.cs ├── TransactionResultTooEarly.cs ├── TransactionResultTooLate.cs ├── effects │ ├── AccountCreatedEffectResponse.cs │ ├── AccountCreditedEffectResponse.cs │ ├── AccountDebitedEffectResponse.cs │ ├── AccountFlagsUpdatedEffectResponse.cs │ ├── AccountHomeDomainUpdatedEffectResponse.cs │ ├── AccountInflationDestinationUpdatedEffectResponse.cs │ ├── AccountRemovedEffectResponse.cs │ ├── AccountSponsorshipCreatedEffectResponse.cs │ ├── AccountSponsorshipRemovedEffectResponse.cs │ ├── AccountSponsorshipUpdatedEffectResponse.cs │ ├── AccountThresholdsUpdatedEffectResponse.cs │ ├── ClaimableBalanceClaimantCreatedEffectResponse.cs │ ├── ClaimableBalanceClaimedEffectResponse.cs │ ├── ClaimableBalanceClawedBackEffectResponse.cs │ ├── ClaimableBalanceCreatedEffectResponse.cs │ ├── ClaimableBalanceSponsorshipCreatedEffectResponse.cs │ ├── ClaimableBalanceSponsorshipRemovedEffectResponse.cs │ ├── ClaimableBalanceSponsorshipUpdatedEffectResponse.cs │ ├── DataCreatedEffectResponse.cs │ ├── DataRemovedEffectResponse.cs │ ├── DataSponsorshipCreatedEffectResponse.cs │ ├── DataSponsorshipRemovedEffectResponse.cs │ ├── DataSponsorshipUpdatedEffectResponse.cs │ ├── DataUpdatedEffectResponse.cs │ ├── EffectResponse.cs │ ├── LiquidityPool.cs │ ├── LiquidityPoolClaimableAssetAmount.cs │ ├── LiquidityPoolCreatedEffectResponse.cs │ ├── LiquidityPoolDepositedEffectResponse.cs │ ├── LiquidityPoolRemovedEffectResponse.cs │ ├── LiquidityPoolRevokedEffectResponse.cs │ ├── LiquidityPoolTradeEffectResponse.cs │ ├── LiquidityPoolWithdrewEffectResponse.cs │ ├── OfferCreatedEffectResponse.cs │ ├── OfferRemovedEffectResponse.cs │ ├── OfferUpdatedEffectResponse.cs │ ├── SequenceBumpedEffectResponse.cs │ ├── SignerCreatedEffectResponse.cs │ ├── SignerEffectResponse.cs │ ├── SignerRemovedEffectResponse.cs │ ├── SignerSponsorshipCreatedEffectResponse.cs │ ├── SignerSponsorshipRemovedEffectResponse.cs │ ├── SignerSponsorshipUpdatedEffectResponse.cs │ ├── SignerUpdatedEffectResponse.cs │ ├── TradeEffectResponse.cs │ ├── TrustlineAuthorizationResponse.cs │ ├── TrustlineAuthorizedEffectResponse.cs │ ├── TrustlineAuthorizedToMaintainLiabilitiesEffectResponse.cs │ ├── TrustlineCUDResponse.cs │ ├── TrustlineCreatedEffectResponse.cs │ ├── TrustlineDeauthorizedEffectResponse.cs │ ├── TrustlineFlagsUpdatedEffectResponse.cs │ ├── TrustlineRemovedEffectResponse.cs │ ├── TrustlineSponsorshipCreatedEffectResponse.cs │ ├── TrustlineSponsorshipRemovedEffectResponse.cs │ ├── TrustlineSponsorshipUpdatedEffectResponse.cs │ └── TrustlineUpdatedEffectResponse.cs ├── operations │ ├── AccountMergeOperationResponse.cs │ ├── AllowTrustOperationResponse.cs │ ├── BeginSponsoringFutureReservesOperationResponse.cs │ ├── BumpSequenceOperationResponse.cs │ ├── ChangeTrustOperationResponse.cs │ ├── ClaimClaimableBalanceOperationResponse.cs │ ├── ClawbackClaimableBalanceOperationResponse.cs │ ├── ClawbackOperationResponse.cs │ ├── CreateAccountOperationResponse.cs │ ├── CreateClaimableBalanceOperationResponse.cs │ ├── CreatePassiveOfferOperationResponse.cs │ ├── EndSponsoringFutureReservesOperationResponse.cs │ ├── InflationOperationResponse.cs │ ├── LiquidityPoolDepositOperationResponse.cs │ ├── LiquidityPoolWithdrawOperationResponse.cs │ ├── ManageBuyOfferOperationResponse.cs │ ├── ManageDataOperationResponse.cs │ ├── ManageOfferOperationResponse.cs │ ├── ManageSellOfferOperationResponse.cs │ ├── OperationResponse.cs │ ├── OperationResponseLinks.cs │ ├── PathPaymentStrictReceiveOperationResponse.cs │ ├── PathPaymentStrictSendOperationResponse.cs │ ├── PaymentOperationResponse.cs │ ├── RevokeSponsorshipOperationResponse.cs │ ├── SetOptionsOperationResponse.cs │ └── SetTrustlineFlagsOperationResponse.cs └── results │ ├── AccountMergeDestFull.cs │ ├── AccountMergeHasSubEntries.cs │ ├── AccountMergeImmutableSet.cs │ ├── AccountMergeMalformed.cs │ ├── AccountMergeNoAccount.cs │ ├── AccountMergeResult.cs │ ├── AccountMergeSeqnumTooFar.cs │ ├── AccountMergeSuccess.cs │ ├── AllowTrustCantRevoke.cs │ ├── AllowTrustMalformed.cs │ ├── AllowTrustNoTrustline.cs │ ├── AllowTrustNotRequired.cs │ ├── AllowTrustResult.cs │ ├── AllowTrustSelfNotAllowed.cs │ ├── AllowTrustSuccess.cs │ ├── BeginSponsoringFutureReservesAlreadySponsored.cs │ ├── BeginSponsoringFutureReservesMalformed.cs │ ├── BeginSponsoringFutureReservesRecursive.cs │ ├── BeginSponsoringFutureReservesResult.cs │ ├── BeginSponsoringFutureReservesSuccess.cs │ ├── BumpSequenceBadSeq.cs │ ├── BumpSequenceResult.cs │ ├── BumpSequenceSuccess.cs │ ├── ChangeTrustInvalidLimit.cs │ ├── ChangeTrustLowReserve.cs │ ├── ChangeTrustMalformed.cs │ ├── ChangeTrustNoIssuer.cs │ ├── ChangeTrustResult.cs │ ├── ChangeTrustSelfNotAllowed.cs │ ├── ChangeTrustSuccess.cs │ ├── ClaimAtom.cs │ ├── ClaimClaimableBalanceCannotClaim.cs │ ├── ClaimClaimableBalanceDoesNotExist.cs │ ├── ClaimClaimableBalanceLineFull.cs │ ├── ClaimClaimableBalanceNoTrust.cs │ ├── ClaimClaimableBalanceNotAuthorized.cs │ ├── ClaimClaimableBalanceResult.cs │ ├── ClaimClaimableBalanceSuccess.cs │ ├── ClaimLiquidityAtom.cs │ ├── ClaimOfferAtom.cs │ ├── ClaimOfferAtomV0.cs │ ├── ClawbackClaimableBalanceDoesNotExist.cs │ ├── ClawbackClaimableBalanceNotClawbackEnabled.cs │ ├── ClawbackClaimableBalanceNotIssuer.cs │ ├── ClawbackClaimableBalanceResult.cs │ ├── ClawbackClaimableBalanceSuccess.cs │ ├── ClawbackMalformed.cs │ ├── ClawbackNoTrust.cs │ ├── ClawbackNotClawbackEnabled.cs │ ├── ClawbackResult.cs │ ├── ClawbackSuccess.cs │ ├── ClawbackUnderfunded.cs │ ├── CreateAccountAlreadyExists.cs │ ├── CreateAccountLowReserve.cs │ ├── CreateAccountMalformed.cs │ ├── CreateAccountResult.cs │ ├── CreateAccountSuccess.cs │ ├── CreateAccountUnderfunded.cs │ ├── CreateClaimableBalanceLowReserve.cs │ ├── CreateClaimableBalanceMalformed.cs │ ├── CreateClaimableBalanceNoTrust.cs │ ├── CreateClaimableBalanceNotAuthorized.cs │ ├── CreateClaimableBalanceResult.cs │ ├── CreateClaimableBalanceSuccess.cs │ ├── CreateClaimableBalanceUnderfunded.cs │ ├── EndSponsoringFutureReservesNotSponsored.cs │ ├── EndSponsoringFutureReservesResult.cs │ ├── EndSponsoringFutureReservesSuccess.cs │ ├── InflationNotTime.cs │ ├── InflationResult.cs │ ├── InflationSuccess.cs │ ├── ManageBuyOfferBuyNoIssuer.cs │ ├── ManageBuyOfferBuyNoTrust.cs │ ├── ManageBuyOfferBuyNotAuthorized.cs │ ├── ManageBuyOfferCreated.cs │ ├── ManageBuyOfferCrossSelf.cs │ ├── ManageBuyOfferDeleted.cs │ ├── ManageBuyOfferLineFull.cs │ ├── ManageBuyOfferLowReserve.cs │ ├── ManageBuyOfferMalformed.cs │ ├── ManageBuyOfferNotFound.cs │ ├── ManageBuyOfferResult.cs │ ├── ManageBuyOfferSellNoIssuer.cs │ ├── ManageBuyOfferSellNoTrust.cs │ ├── ManageBuyOfferSellNotAuthorized.cs │ ├── ManageBuyOfferSuccess.cs │ ├── ManageBuyOfferUnderfunded.cs │ ├── ManageBuyOfferUpdated.cs │ ├── ManageDataInvalidName.cs │ ├── ManageDataLowReserve.cs │ ├── ManageDataNameNotFound.cs │ ├── ManageDataNotSupportedYet.cs │ ├── ManageDataResult.cs │ ├── ManageDataSuccess.cs │ ├── ManageSellOfferBuyNoIssuer.cs │ ├── ManageSellOfferBuyNoTrust.cs │ ├── ManageSellOfferBuyNotAuthorized.cs │ ├── ManageSellOfferCreated.cs │ ├── ManageSellOfferCrossSelf.cs │ ├── ManageSellOfferDeleted.cs │ ├── ManageSellOfferLineFull.cs │ ├── ManageSellOfferLowReserve.cs │ ├── ManageSellOfferMalformed.cs │ ├── ManageSellOfferNotFound.cs │ ├── ManageSellOfferResult.cs │ ├── ManageSellOfferSellNoIssuer.cs │ ├── ManageSellOfferSellNoTrust.cs │ ├── ManageSellOfferSellNotAuthorized.cs │ ├── ManageSellOfferSuccess.cs │ ├── ManageSellOfferUnderfunded.cs │ ├── ManageSellOfferUpdated.cs │ ├── OfferEntry.cs │ ├── OperationResult.cs │ ├── OperationResultBadAuth.cs │ ├── OperationResultNoAccount.cs │ ├── OperationResultNotSupported.cs │ ├── PathPaymentStrictReceiveLineFull.cs │ ├── PathPaymentStrictReceiveMalformed.cs │ ├── PathPaymentStrictReceiveNoDestination.cs │ ├── PathPaymentStrictReceiveNoIssuer.cs │ ├── PathPaymentStrictReceiveNoTrust.cs │ ├── PathPaymentStrictReceiveNotAuthorized.cs │ ├── PathPaymentStrictReceiveOfferCrossSelf.cs │ ├── PathPaymentStrictReceiveOverSendmax.cs │ ├── PathPaymentStrictReceiveResult.cs │ ├── PathPaymentStrictReceiveSrcNoTrust.cs │ ├── PathPaymentStrictReceiveSrcNotAuthorized.cs │ ├── PathPaymentStrictReceiveSuccess.cs │ ├── PathPaymentStrictReceiveTooFewOffers.cs │ ├── PathPaymentStrictReceiveUnderfunded.cs │ ├── PathPaymentStrictSendLineFull.cs │ ├── PathPaymentStrictSendMalformed.cs │ ├── PathPaymentStrictSendNoDestination.cs │ ├── PathPaymentStrictSendNoIssuer.cs │ ├── PathPaymentStrictSendNoTrust.cs │ ├── PathPaymentStrictSendNotAuthorized.cs │ ├── PathPaymentStrictSendOfferCrossSelf.cs │ ├── PathPaymentStrictSendResult.cs │ ├── PathPaymentStrictSendSrcNoTrust.cs │ ├── PathPaymentStrictSendSrcNotAuthorized.cs │ ├── PathPaymentStrictSendSuccess.cs │ ├── PathPaymentStrictSendTooFewOffers.cs │ ├── PathPaymentStrictSendUnderDestMin.cs │ ├── PathPaymentStrictSendUnderfunded.cs │ ├── PaymentLineFull.cs │ ├── PaymentMalformed.cs │ ├── PaymentNoDestination.cs │ ├── PaymentNoIssuer.cs │ ├── PaymentNoTrust.cs │ ├── PaymentNotAuthorized.cs │ ├── PaymentResult.cs │ ├── PaymentSrcNoTrust.cs │ ├── PaymentSrcNotAuthorized.cs │ ├── PaymentSuccess.cs │ ├── PaymentUnderfunded.cs │ ├── RevokeSponsorshipDoesNotExist.cs │ ├── RevokeSponsorshipLowReserve.cs │ ├── RevokeSponsorshipNotSponsor.cs │ ├── RevokeSponsorshipOnlyTransferable.cs │ ├── RevokeSponsorshipResult.cs │ ├── RevokeSponsorshipSuccess.cs │ ├── SetOptionsBadFlags.cs │ ├── SetOptionsBadSigner.cs │ ├── SetOptionsCantChange.cs │ ├── SetOptionsInvalidHomeDomain.cs │ ├── SetOptionsInvalidInflation.cs │ ├── SetOptionsLowReserve.cs │ ├── SetOptionsResult.cs │ ├── SetOptionsSuccess.cs │ ├── SetOptionsThresholdOutOfRange.cs │ ├── SetOptionsTooManySigners.cs │ ├── SetOptionsUnknownFlag.cs │ ├── SetTrustlineFlagsCantRevoke.cs │ ├── SetTrustlineFlagsInvalidState.cs │ ├── SetTrustlineFlagsMalformed.cs │ ├── SetTrustlineFlagsNoTrustline.cs │ ├── SetTrustlineFlagsResult.cs │ └── SetTrustlineFlagsSuccess.cs └── stellar-dotnet-sdk.csproj /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.github/images/logo.svg -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release_mgmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.github/workflows/release_mgmt.yml -------------------------------------------------------------------------------- /.github/workflows/update-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.github/workflows/update-documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/.gitignore -------------------------------------------------------------------------------- /docfx/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/api/.gitignore -------------------------------------------------------------------------------- /docfx/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/api/index.md -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/filterConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/filterConfig.yml -------------------------------------------------------------------------------- /docfx/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/images/logo.svg -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/templates/docfx-stellar-template/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/templates/docfx-stellar-template/LICENSE.md -------------------------------------------------------------------------------- /docfx/templates/docfx-stellar-template/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/templates/docfx-stellar-template/src/styles/main.css -------------------------------------------------------------------------------- /docfx/templates/docfx-stellar-template/src/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/templates/docfx-stellar-template/src/styles/main.js -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /docfx/tutorials/examples/export_transaction_to_xdr_base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/tutorials/examples/export_transaction_to_xdr_base64.md -------------------------------------------------------------------------------- /docfx/tutorials/examples/generate_account_keypair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/tutorials/examples/generate_account_keypair.md -------------------------------------------------------------------------------- /docfx/tutorials/examples/get_account_balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/tutorials/examples/get_account_balance.md -------------------------------------------------------------------------------- /docfx/tutorials/examples/import_xdr_to_transaction_base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/tutorials/examples/import_xdr_to_transaction_base64.md -------------------------------------------------------------------------------- /docfx/tutorials/examples/send_native_assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/tutorials/examples/send_native_assets.md -------------------------------------------------------------------------------- /docfx/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/tutorials/index.md -------------------------------------------------------------------------------- /docfx/tutorials/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/docfx/tutorials/toc.yml -------------------------------------------------------------------------------- /dotnet-stellar-sdk.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/dotnet-stellar-sdk.nuspec -------------------------------------------------------------------------------- /dotnetcore/stellar-dotnetcore-sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/dotnetcore/stellar-dotnetcore-sdk.csproj -------------------------------------------------------------------------------- /dotnetstandard/stellar-dotnetstandard-sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/dotnetstandard/stellar-dotnetstandard-sdk.csproj -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/nuget.config -------------------------------------------------------------------------------- /packages-microsoft-prod.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/packages-microsoft-prod.deb -------------------------------------------------------------------------------- /stellar-dotnet-sdk-console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-console/Program.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-console/stellar-dotnet-sdk-console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-console/stellar-dotnet-sdk-console.csproj -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/AccountFlagTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/AccountFlagTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/AccountTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/AccountTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/AssetAmountTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/AssetAmountTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/AssetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/AssetTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/BalanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/BalanceTests.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/ChangeTrustAssetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/ChangeTrustAssetTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/ClaimLiquidityAtomTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/ClaimLiquidityAtomTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/ClaimPredicateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/ClaimPredicateTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/FakeHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/FakeHttpClient.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/FederationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/FederationTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/FeeBumpTransactionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/FeeBumpTransactionTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/Generators/AlphaNum12Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/Generators/AlphaNum12Generator.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/Generators/AlphaNum4Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/Generators/AlphaNum4Generator.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/Generators/KeyPairGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/Generators/KeyPairGenerator.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/KeyPairBIP39Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/KeyPairBIP39Tests.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/KeyPairTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/KeyPairTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/LedgerKeyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/LedgerKeyTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/LiquidityPoolIDTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/LiquidityPoolIDTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/LiquidityPoolShareTrustlineAssetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/LiquidityPoolShareTrustlineAssetTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/MemoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/MemoTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/MuxedAccountTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/MuxedAccountTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/NetworkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/NetworkTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/OperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/OperationTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/PriceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/PriceTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/ServerCheckMemoRequiredTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/ServerCheckMemoRequiredTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/ServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/ServerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/SignedPayloadSignerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/SignedPayloadSignerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/SignerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/SignerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/StrKeyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/StrKeyTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/TimeBoundsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/TimeBoundsTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/TransactionPreconditionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/TransactionPreconditionsTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/TransactionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/TransactionTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/TrustlineAssetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/TrustlineAssetTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/UtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/UtilTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/WebAuthenticationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/WebAuthenticationTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/federation/FakeHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/federation/FakeHttpMessageHandler.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/federation/FederationServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/federation/FederationServerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/operations/FeeBumpOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/operations/FeeBumpOperationTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/operations/SetOptionsOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/operations/SetOptionsOperationTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/AccountsRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/AccountsRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/AssetsRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/AssetsRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/ClientProtocolExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/ClientProtocolExceptionTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/EffectsRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/EffectsRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/FakeHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/FakeHttpMessageHandler.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/FakeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/FakeResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/FakeResponseWithIOError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/FakeResponseWithIOError.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/FakeResponseWithStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/FakeResponseWithStream.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/FeeRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/FeeRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/FriendBotRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/FriendBotRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/HttpResponseExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/HttpResponseExceptionTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/LedgersRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/LedgersRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/OffersRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/OffersRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/OperationsRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/OperationsRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/OrderBookRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/OrderBookRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/PathsRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/PathsRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/PaymentsRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/PaymentsRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/RequestBuilderStreamableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/RequestBuilderStreamableTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/StreamAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/StreamAction.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/StreamableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/StreamableTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/TooManyRequestsExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/TooManyRequestsExceptionTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/TradesRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/TradesRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/requests/TransactionsRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/requests/TransactionsRequestBuilderTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/AccountDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/AccountDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/AccountPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/AccountPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/AssetDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/AssetDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/AssetPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/AssetPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/EffectDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/EffectDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/EffectsPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/EffectsPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/FeeStatsDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/FeeStatsDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/FriendBotResponseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/FriendBotResponseTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/LedgerDeserializeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/LedgerDeserializeTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/LedgerPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/LedgerPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/LinkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/LinkTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/LiquidityPoolDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/LiquidityPoolDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/LiquidityPoolResponse/Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/LiquidityPoolResponse/Data.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/OfferPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/OfferPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/OperationPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/OperationPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/OperationResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/OperationResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/OrderBookDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/OrderBookDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/PathsPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/PathsPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/PredicateDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/PredicateDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/RootDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/RootDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/SubmitTransactionResponseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/SubmitTransactionResponseTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/TradesPageDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/TradesPageDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/TransactionDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/TransactionDeserializerTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/TransactionResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/TransactionResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/effects/LiquidityPoolTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/effects/LiquidityPoolTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/AllowTrustResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/AllowTrustResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/ChangeTrustResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/ChangeTrustResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/ClawbackResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/ClawbackResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/InflationResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/InflationResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/ManageDataResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/ManageDataResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/ManageOfferResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/ManageOfferResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/PaymentResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/PaymentResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/SetOptionsResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/SetOptionsResultTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/responses/results/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/responses/results/Util.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/stellar-dotnet-sdk-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/stellar-dotnet-sdk-test.csproj -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/account.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/accountData.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": "VGVzdFZhbHVl" 3 | } -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/accountPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/accountPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/accountsWithSigner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/accountsWithSigner.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/accountsWithTrustline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/accountsWithTrustline.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/assetAssetTypeCredit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/assetAssetTypeCredit.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/assetAssetTypeNative.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_type": "native" 3 | } -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/assetPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/assetPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/claimableBalance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/claimableBalance.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectAccountCreated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectAccountCreated.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectAccountDebited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectAccountDebited.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectAccountRemoved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectAccountRemoved.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectDataCreated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectDataCreated.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectDataRemoved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectDataRemoved.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectDataUpdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectDataUpdated.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectOfferCreated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectOfferCreated.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectOfferRemoved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectOfferRemoved.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectOfferUpdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectOfferUpdated.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectSequenceBumped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectSequenceBumped.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectSignerCreated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectSignerCreated.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectSignerRemoved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectSignerRemoved.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectSignerUpdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectSignerUpdated.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectTrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectTrade.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectTradePre100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectTradePre100.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/effects/effectUnknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/effects/effectUnknown.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/feeStats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/feeStats.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/friendBotFail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/friendBotFail.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/friendBotSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/friendBotSuccess.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/ledger.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/ledgerNullValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/ledgerNullValues.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/ledgerPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/ledgerPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/offerPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/offerPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/offerPagePre100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/offerPagePre100.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/operations/clawback/clawback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/operations/clawback/clawback.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/operations/operationPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/operations/operationPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/operations/payment/payment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/operations/payment/payment.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/orderBook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/orderBook.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/pathsPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/pathsPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/root.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/serverFailure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/serverFailure.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/serverSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/serverSuccess.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/submitTransactionNoOfferId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/submitTransactionNoOfferId.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/submitTransactionSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/submitTransactionSuccess.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/tradeAggregationsPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/tradeAggregationsPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/tradeAggregationsPagePre100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/tradeAggregationsPagePre100.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/tradesPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/tradesPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/transactionFeeBump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/transactionFeeBump.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/transactionMuxed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/transactionMuxed.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/transactionPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/transactionPage.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/transactionTransaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/transactionTransaction.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/testdata/transactionTransactionPre020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/testdata/transactionTransactionPre020.json -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/xdr/PaddingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/xdr/PaddingTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/xdr/TransactionDecodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/xdr/TransactionDecodeTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-test/xdr/XdrDataStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-test/xdr/XdrDataStreamTest.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/Stellar-SCP.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/Stellar-SCP.x -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/Stellar-ledger-entries.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/Stellar-ledger-entries.x -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/Stellar-ledger.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/Stellar-ledger.x -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/Stellar-overlay.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/Stellar-overlay.x -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/Stellar-transaction.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/Stellar-transaction.x -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/Stellar-types.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/Stellar-types.x -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/XdrDataInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/XdrDataInputStream.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/XdrDataOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/XdrDataOutputStream.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generate.bat -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountEntryExtensionV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountEntryExtensionV1.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountEntryExtensionV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountEntryExtensionV2.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountEntryExtensionV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountEntryExtensionV3.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountFlags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountID.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountMergeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountMergeResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AccountMergeResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AccountMergeResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AllowTrustOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AllowTrustOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AllowTrustResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AllowTrustResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AllowTrustResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AllowTrustResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AlphaNum12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AlphaNum12.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AlphaNum4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AlphaNum4.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Asset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AssetCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AssetCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AssetCode12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AssetCode12.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AssetCode4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AssetCode4.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AssetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AssetType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Auth.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AuthCert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AuthCert.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/AuthenticatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/AuthenticatedMessage.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/BucketEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/BucketEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/BucketEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/BucketEntryType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/BucketMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/BucketMetadata.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/BumpSequenceOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/BumpSequenceOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/BumpSequenceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/BumpSequenceResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/BumpSequenceResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/BumpSequenceResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ChangeTrustAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ChangeTrustAsset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ChangeTrustOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ChangeTrustOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ChangeTrustResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ChangeTrustResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ChangeTrustResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ChangeTrustResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimAtom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimAtom.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimAtomType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimAtomType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimClaimableBalanceOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimClaimableBalanceOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimClaimableBalanceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimClaimableBalanceResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimLiquidityAtom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimLiquidityAtom.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimOfferAtom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimOfferAtom.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimOfferAtomV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimOfferAtomV0.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimPredicate.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimPredicateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimPredicateType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimableBalanceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimableBalanceEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimableBalanceFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimableBalanceFlags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimableBalanceID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimableBalanceID.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimableBalanceIDType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimableBalanceIDType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Claimant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Claimant.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClaimantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClaimantType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClawbackClaimableBalanceOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClawbackClaimableBalanceOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClawbackClaimableBalanceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClawbackClaimableBalanceResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClawbackOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClawbackOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClawbackResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClawbackResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ClawbackResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ClawbackResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/CreateAccountOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/CreateAccountOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/CreateAccountResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/CreateAccountResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/CreateAccountResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/CreateAccountResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/CreateClaimableBalanceOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/CreateClaimableBalanceOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/CreateClaimableBalanceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/CreateClaimableBalanceResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/CreatePassiveSellOfferOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/CreatePassiveSellOfferOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/CryptoKeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/CryptoKeyType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Curve25519Public.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Curve25519Public.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Curve25519Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Curve25519Secret.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/DataEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/DataEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/DataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/DataValue.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/DecoratedSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/DecoratedSignature.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/DontHave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/DontHave.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Duration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Duration.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/EncryptedBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/EncryptedBody.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/EnvelopeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/EnvelopeType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Error.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ErrorCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ExtensionPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ExtensionPoint.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/FeeBumpTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/FeeBumpTransaction.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/FeeBumpTransactionEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/FeeBumpTransactionEnvelope.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Hash.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/HashIDPreimage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/HashIDPreimage.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Hello.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/HmacSha256Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/HmacSha256Key.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/HmacSha256Mac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/HmacSha256Mac.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/IPAddrType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/IPAddrType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/InflationPayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/InflationPayout.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/InflationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/InflationResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/InflationResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/InflationResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/InnerTransactionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/InnerTransactionResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/InnerTransactionResultPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/InnerTransactionResultPair.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Int32.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Int64.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerBounds.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerCloseMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerCloseMeta.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerCloseMetaV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerCloseMetaV0.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerCloseValueSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerCloseValueSignature.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerEntryChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerEntryChange.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerEntryChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerEntryChangeType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerEntryChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerEntryChanges.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerEntryExtensionV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerEntryExtensionV1.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerEntryType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerHeader.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerHeaderExtensionV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerHeaderExtensionV1.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerHeaderFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerHeaderFlags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerHeaderHistoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerHeaderHistoryEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerKey.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerSCPMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerSCPMessages.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerUpgrade.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LedgerUpgradeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LedgerUpgradeType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Liabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Liabilities.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolDepositOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolDepositOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolDepositResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolDepositResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolDepositResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolDepositResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolParameters.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolWithdrawOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolWithdrawOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/LiquidityPoolWithdrawResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/LiquidityPoolWithdrawResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageBuyOfferOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageBuyOfferOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageBuyOfferResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageBuyOfferResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageBuyOfferResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageBuyOfferResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageDataOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageDataOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageDataResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageDataResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageDataResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageOfferEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageOfferEffect.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageOfferSuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageOfferSuccessResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageSellOfferOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageSellOfferOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageSellOfferResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageSellOfferResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ManageSellOfferResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ManageSellOfferResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Memo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Memo.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/MemoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/MemoType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/MessageType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/MuxedAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/MuxedAccount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/NodeID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/NodeID.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/OfferEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/OfferEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/OfferEntryFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/OfferEntryFlags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Operation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/OperationMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/OperationMeta.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/OperationResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/OperationResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/OperationResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/OperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/OperationType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PathPaymentStrictReceiveOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PathPaymentStrictReceiveOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PathPaymentStrictReceiveResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PathPaymentStrictReceiveResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PathPaymentStrictSendOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PathPaymentStrictSendOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PathPaymentStrictSendResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PathPaymentStrictSendResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PaymentOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PaymentOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PaymentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PaymentResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PaymentResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PaymentResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PeerAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PeerAddress.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PeerStatList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PeerStatList.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PeerStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PeerStats.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PoolID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PoolID.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PreconditionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PreconditionType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Preconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Preconditions.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PreconditionsV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PreconditionsV2.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Price.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PublicKey.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/PublicKeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/PublicKeyType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/RevokeSponsorshipType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPBallot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPBallot.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPEnvelope.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPHistoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPHistoryEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPHistoryEntryV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPHistoryEntryV0.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPNomination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPNomination.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPQuorumSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPQuorumSet.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPStatement.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SCPStatementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SCPStatementType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SendMore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SendMore.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SequenceNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SequenceNumber.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SetOptionsOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SetOptionsOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SetOptionsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SetOptionsResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SetOptionsResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SetOptionsResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SetTrustLineFlagsOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SetTrustLineFlagsOp.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SetTrustLineFlagsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SetTrustLineFlagsResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SetTrustLineFlagsResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SetTrustLineFlagsResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Signature.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SignatureHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SignatureHint.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SignedSurveyRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SignedSurveyRequestMessage.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SignedSurveyResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SignedSurveyResponseMessage.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Signer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Signer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SignerKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SignerKey.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SignerKeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SignerKeyType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SimplePaymentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SimplePaymentResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SponsorshipDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SponsorshipDescriptor.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/StellarMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/StellarMessage.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/StellarValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/StellarValue.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/StellarValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/StellarValueType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/String32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/String32.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/String64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/String64.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SurveyMessageCommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SurveyMessageCommandType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SurveyRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SurveyRequestMessage.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SurveyResponseBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SurveyResponseBody.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/SurveyResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/SurveyResponseMessage.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/ThresholdIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/ThresholdIndexes.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Thresholds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Thresholds.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TimeBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TimeBounds.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TimePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TimePoint.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TopologyResponseBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TopologyResponseBody.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Transaction.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionEnvelope.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionHistoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionHistoryEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionHistoryResultEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionHistoryResultEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionMeta.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionMetaV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionMetaV1.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionMetaV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionMetaV2.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionResultCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionResultMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionResultMeta.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionResultPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionResultPair.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionResultSet.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionSet.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionSignaturePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionSignaturePayload.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionV0.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionV0Envelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionV0Envelope.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TransactionV1Envelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TransactionV1Envelope.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TrustLineAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TrustLineAsset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TrustLineEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TrustLineEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TrustLineEntryExtensionV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TrustLineEntryExtensionV2.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/TrustLineFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/TrustLineFlags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Uint256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Uint256.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Uint32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Uint32.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Uint64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Uint64.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/UpgradeEntryMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/UpgradeEntryMeta.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/UpgradeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/UpgradeType.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/generated/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/generated/Value.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk-xdr/stellar-dotnet-sdk-xdr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk-xdr/stellar-dotnet-sdk-xdr.csproj -------------------------------------------------------------------------------- /stellar-dotnet-sdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk.sln -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Account.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AccountFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AccountFlag.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AccountMergeOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AccountMergeOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AccountRequiresMemoException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AccountRequiresMemoException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AllowTrustOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AllowTrustOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Amount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Amount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Asset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AssetAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AssetAmount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AssetCodeLengthInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AssetCodeLengthInvalidException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AssetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AssetExtensions.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AssetTypeCreditAlphaNum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AssetTypeCreditAlphaNum.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AssetTypeCreditAlphaNum12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AssetTypeCreditAlphaNum12.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AssetTypeCreditAlphaNum4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AssetTypeCreditAlphaNum4.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/AssetTypeNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/AssetTypeNative.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Base32Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Base32Encoding.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Base32EncodingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Base32EncodingOptions.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/BeginSponsoringFutureReservesOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/BeginSponsoringFutureReservesOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/BumpSequenceOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/BumpSequenceOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ChangeTrustAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ChangeTrustAsset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ChangeTrustOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ChangeTrustOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimClaimableBalanceOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimClaimableBalanceOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimPredicate.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimPredicateAnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimPredicateAnd.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimPredicateBeforeAbsoluteTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimPredicateBeforeAbsoluteTime.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimPredicateBeforeRelativeTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimPredicateBeforeRelativeTime.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimPredicateNot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimPredicateNot.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimPredicateOr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimPredicateOr.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClaimPredicateUnconditional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClaimPredicateUnconditional.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Claimant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Claimant.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClawbackClaimableBalanceOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClawbackClaimableBalanceOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ClawbackOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ClawbackOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/CreateAccountOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/CreateAccountOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/CreateClaimableBalanceOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/CreateClaimableBalanceOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/CreatePassiveSellOfferOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/CreatePassiveSellOfferOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/EndSponsoringFutureReservesOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/EndSponsoringFutureReservesOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/EnumerableExtensions.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/EventSourceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/EventSourceState.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/FeeBumpTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/FeeBumpTransaction.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/FormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/FormatException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/HashCode.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/IAccountId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/IAccountId.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/IEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/IEventSource.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ITransactionBuilderAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ITransactionBuilderAccount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/InflationOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/InflationOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/InvalidWebAuthenticationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/InvalidWebAuthenticationException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/KeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/KeyPair.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LedgerBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LedgerBounds.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LedgerKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LedgerKey.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LedgerKeyAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LedgerKeyAccount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LedgerKeyClaimableBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LedgerKeyClaimableBalance.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LedgerKeyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LedgerKeyData.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LedgerKeyOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LedgerKeyOffer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LedgerKeyTrustline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LedgerKeyTrustline.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolConstantProductParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolConstantProductParameters.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolDepositOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolDepositOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolID.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolParameters.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolShareChangeTrustAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolShareChangeTrustAsset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolShareTrustlineAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolShareTrustlineAsset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolWithdrawOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolWithdrawOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/LiquidityPoolsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/LiquidityPoolsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ManageBuyOfferOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ManageBuyOfferOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ManageDataOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ManageDataOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ManageOfferOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ManageOfferOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ManageSellOfferOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ManageSellOfferOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Memo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Memo.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MemoHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MemoHash.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MemoHashAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MemoHashAbstract.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MemoId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MemoId.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MemoNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MemoNone.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MemoReturnHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MemoReturnHash.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MemoText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MemoText.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MemoTooLongException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MemoTooLongException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MuxedAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MuxedAccount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/MuxedAccountMed25519.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/MuxedAccountMed25519.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Network.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/NoNetworkSelectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/NoNetworkSelectedException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/NotEnoughSignaturesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/NotEnoughSignaturesException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Operation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/OperationThreshold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/OperationThreshold.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/PathPaymentStrictReceiveOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/PathPaymentStrictReceiveOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/PathPaymentStrictSendOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/PathPaymentStrictSendOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/PaymentOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/PaymentOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Price.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Reserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Reserve.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/RevokeLedgerEntrySponsorshipOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/RevokeLedgerEntrySponsorshipOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/RevokeSignerSponsorshipOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/RevokeSignerSponsorshipOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/RevokeSponsorshipOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/RevokeSponsorshipOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/SSEEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/SSEEventSource.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Server.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ServerSentErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ServerSentErrorEventArgs.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/ServerSentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/ServerSentEventArgs.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/SetOptionsOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/SetOptionsOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/SetTrustlineFlagsOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/SetTrustlineFlagsOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/SignedPayloadSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/SignedPayloadSigner.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Signer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Signer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/StateChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/StateChangeEventArgs.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/StrKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/StrKey.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/SubmitTransactionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/SubmitTransactionOptions.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/TimeBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/TimeBounds.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/TooManySignaturesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/TooManySignaturesException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Transaction.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/TransactionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/TransactionBase.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/TransactionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/TransactionBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/TransactionPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/TransactionPreconditions.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/TrustlineAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/TrustlineAsset.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/UriBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/UriBuilderExtensions.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/UriTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/UriTemplate.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/Util.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/WebAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/WebAuthentication.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/converters/AssetAmountJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/converters/AssetAmountJsonConverter.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/converters/LiquidityPoolIDJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/converters/LiquidityPoolIDJsonConverter.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/converters/ReserveJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/converters/ReserveJsonConverter.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/ConnectionErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/ConnectionErrorException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/Federation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/Federation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/FederationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/FederationResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/FederationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/FederationServer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/FederationServerInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/FederationServerInvalidException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/MalformedAddressException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/MalformedAddressException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/NoFederationServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/NoFederationServerException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/NotFoundException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/federation/ServerErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/federation/ServerErrorException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/AccountsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/AccountsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/AssetsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/AssetsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/ClaimableBalancesRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/ClaimableBalancesRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/ClientProtocolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/ClientProtocolException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/EffectsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/EffectsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/FeeStatsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/FeeStatsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/FriendBotRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/FriendBotRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/HttpResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/HttpResponseException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/LedgersRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/LedgersRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/OffersRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/OffersRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/OperationsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/OperationsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/OrderBookRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/OrderBookRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/PathStrictReceiveRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/PathStrictReceiveRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/PathStrictSendRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/PathStrictSendRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/PathsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/PathsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/PaymentsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/PaymentsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/RequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/RequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/RequestBuilderExecutePageable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/RequestBuilderExecutePageable.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/RequestBuilderStreamable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/RequestBuilderStreamable.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/ResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/ResponseHandler.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/TooManyRequestsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/TooManyRequestsException.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/TradesAggregationRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/TradesAggregationRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/TradesRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/TradesRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/requests/TransactionsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/requests/TransactionsRequestBuilder.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/AccountDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/AccountDataResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/AccountResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/AccountResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/AccountResponseLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/AccountResponseLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/AssetDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/AssetDeserializer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/AssetResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/AssetResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/AssetResponseFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/AssetResponseFlags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/AssetResponseLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/AssetResponseLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Balance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Balance.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/ClaimableBalanceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/ClaimableBalanceResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Claimant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Claimant.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/EffectDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/EffectDeserializer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/FeeBumpTransactionResultFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/FeeBumpTransactionResultFailed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/FeeBumpTransactionResultSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/FeeBumpTransactionResultSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/FeeStatsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/FeeStatsResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Flags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/FriendBotResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/FriendBotResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/FriendBotResponseLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/FriendBotResponseLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/IPagingToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/IPagingToken.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/InnerTransactionResultPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/InnerTransactionResultPair.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/JsonSingleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/JsonSingleton.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/KeyPairTypeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/KeyPairTypeAdapter.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/LedgerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/LedgerResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Link.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/LinkDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/LinkDeserializer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/LiquidityPoolResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/LiquidityPoolResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/OfferResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/OfferResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/OfferResponseLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/OfferResponseLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/OperationDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/OperationDeserializer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/OrderBookResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/OrderBookResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Page.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/PageLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/PageLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/PathResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/PathResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/PathResponseLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/PathResponseLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Predicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Predicate.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Response.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/RootResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/RootResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Signer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Signer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/SubmitTransactionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/SubmitTransactionResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/Thresholds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/Thresholds.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TradeAggregationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TradeAggregationResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TradeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TradeResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TradeResponseLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TradeResponseLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultBadAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultBadAuth.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultBadAuthExtra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultBadAuthExtra.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultBadSeq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultBadSeq.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultFailed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultInsufficientFee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultInsufficientFee.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultInternalError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultInternalError.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultMissingOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultMissingOperation.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultNoAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultNoAccount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultTooEarly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultTooEarly.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/TransactionResultTooLate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/TransactionResultTooLate.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/DataCreatedEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/DataCreatedEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/DataRemovedEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/DataRemovedEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/DataUpdatedEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/DataUpdatedEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/EffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/EffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/LiquidityPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/LiquidityPool.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/OfferCreatedEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/OfferCreatedEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/OfferRemovedEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/OfferRemovedEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/OfferUpdatedEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/OfferUpdatedEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/SignerEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/SignerEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/TradeEffectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/TradeEffectResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/effects/TrustlineCUDResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/effects/TrustlineCUDResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/operations/OperationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/operations/OperationResponse.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/operations/OperationResponseLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/operations/OperationResponseLinks.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeDestFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeDestFull.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeHasSubEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeHasSubEntries.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeImmutableSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeImmutableSet.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeNoAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeNoAccount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeSeqnumTooFar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeSeqnumTooFar.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AccountMergeSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AccountMergeSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AllowTrustCantRevoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AllowTrustCantRevoke.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AllowTrustMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AllowTrustMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AllowTrustNoTrustline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AllowTrustNoTrustline.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AllowTrustNotRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AllowTrustNotRequired.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AllowTrustResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AllowTrustResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AllowTrustSelfNotAllowed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AllowTrustSelfNotAllowed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/AllowTrustSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/AllowTrustSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/BumpSequenceBadSeq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/BumpSequenceBadSeq.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/BumpSequenceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/BumpSequenceResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/BumpSequenceSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/BumpSequenceSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ChangeTrustInvalidLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ChangeTrustInvalidLimit.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ChangeTrustLowReserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ChangeTrustLowReserve.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ChangeTrustMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ChangeTrustMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ChangeTrustNoIssuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ChangeTrustNoIssuer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ChangeTrustResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ChangeTrustResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ChangeTrustSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ChangeTrustSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClaimAtom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClaimAtom.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClaimLiquidityAtom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClaimLiquidityAtom.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClaimOfferAtom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClaimOfferAtom.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClaimOfferAtomV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClaimOfferAtomV0.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClawbackMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClawbackMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClawbackNoTrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClawbackNoTrust.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClawbackResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClawbackResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClawbackSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClawbackSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ClawbackUnderfunded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ClawbackUnderfunded.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/CreateAccountLowReserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/CreateAccountLowReserve.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/CreateAccountMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/CreateAccountMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/CreateAccountResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/CreateAccountResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/CreateAccountSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/CreateAccountSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/CreateAccountUnderfunded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/CreateAccountUnderfunded.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/InflationNotTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/InflationNotTime.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/InflationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/InflationResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/InflationSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/InflationSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferBuyNoTrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferBuyNoTrust.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferCreated.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferCrossSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferCrossSelf.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferDeleted.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferLineFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferLineFull.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferLowReserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferLowReserve.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferNotFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferNotFound.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageBuyOfferUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageBuyOfferUpdated.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageDataInvalidName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageDataInvalidName.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageDataLowReserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageDataLowReserve.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageDataNameNotFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageDataNameNotFound.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageDataResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageDataSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageDataSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferCreated.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferCrossSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferCrossSelf.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferDeleted.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferLineFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferLineFull.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferNotFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferNotFound.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/ManageSellOfferUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/ManageSellOfferUpdated.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/OfferEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/OfferEntry.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/OperationResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/OperationResultBadAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/OperationResultBadAuth.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/OperationResultNoAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/OperationResultNoAccount.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentLineFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentLineFull.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentMalformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentMalformed.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentNoDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentNoDestination.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentNoIssuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentNoIssuer.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentNoTrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentNoTrust.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentNotAuthorized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentNotAuthorized.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentSrcNoTrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentSrcNoTrust.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentSrcNotAuthorized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentSrcNotAuthorized.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/PaymentUnderfunded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/PaymentUnderfunded.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/RevokeSponsorshipResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/RevokeSponsorshipResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/RevokeSponsorshipSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/RevokeSponsorshipSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsBadFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsBadFlags.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsBadSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsBadSigner.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsCantChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsCantChange.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsLowReserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsLowReserve.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsTooManySigners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsTooManySigners.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetOptionsUnknownFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetOptionsUnknownFlag.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetTrustlineFlagsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetTrustlineFlagsResult.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/responses/results/SetTrustlineFlagsSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/responses/results/SetTrustlineFlagsSuccess.cs -------------------------------------------------------------------------------- /stellar-dotnet-sdk/stellar-dotnet-sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucidsoft/dotnet-stellar-sdk/HEAD/stellar-dotnet-sdk/stellar-dotnet-sdk.csproj --------------------------------------------------------------------------------