Stellar · Schema

TransactionPreconditions

BlockchainCryptocurrencyDecentralized ExchangeLedgerPaymentsSmart ContractsWeb3

Properties

Name Type Description
timebounds object
ledgerbounds object
min_account_sequence string
min_account_sequence_age string
min_account_sequence_ledger_gap integer
extra_signers array
View JSON Schema on GitHub

JSON Schema

stellar-horizon-transactionpreconditions.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developers.stellar.org/schemas/horizon/TransactionPreconditions.json",
  "title": "TransactionPreconditions",
  "type": "object",
  "properties": {
    "timebounds": {
      "$ref": "#/components/schemas/TransactionPreconditionsTimebounds"
    },
    "ledgerbounds": {
      "$ref": "#/components/schemas/TransactionPreconditionsLedgerbounds"
    },
    "min_account_sequence": {
      "type": "string"
    },
    "min_account_sequence_age": {
      "type": "string"
    },
    "min_account_sequence_ledger_gap": {
      "type": "integer",
      "format": "uint32"
    },
    "extra_signers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}