github.com/snowblossomcoin/go-ethereum@v1.9.25/graphql/schema.go (about)

     1  // Copyright 2019 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package graphql
    18  
    19  const schema string = `
    20      # Bytes32 is a 32 byte binary string, represented as 0x-prefixed hexadecimal.
    21      scalar Bytes32
    22      # Address is a 20 byte Ethereum address, represented as 0x-prefixed hexadecimal.
    23      scalar Address
    24      # Bytes is an arbitrary length binary string, represented as 0x-prefixed hexadecimal.
    25      # An empty byte string is represented as '0x'. Byte strings must have an even number of hexadecimal nybbles.
    26      scalar Bytes
    27      # BigInt is a large integer. Input is accepted as either a JSON number or as a string.
    28      # Strings may be either decimal or 0x-prefixed hexadecimal. Output values are all
    29      # 0x-prefixed hexadecimal.
    30      scalar BigInt
    31      # Long is a 64 bit unsigned integer.
    32      scalar Long
    33  
    34      schema {
    35          query: Query
    36          mutation: Mutation
    37      }
    38  
    39      # Account is an Ethereum account at a particular block.
    40      type Account {
    41          # Address is the address owning the account.
    42          address: Address!
    43          # Balance is the balance of the account, in wei.
    44          balance: BigInt!
    45          # TransactionCount is the number of transactions sent from this account,
    46          # or in the case of a contract, the number of contracts created. Otherwise
    47          # known as the nonce.
    48          transactionCount: Long!
    49          # Code contains the smart contract code for this account, if the account
    50          # is a (non-self-destructed) contract.
    51          code: Bytes!
    52          # Storage provides access to the storage of a contract account, indexed
    53          # by its 32 byte slot identifier.
    54          storage(slot: Bytes32!): Bytes32!
    55      }
    56  
    57      # Log is an Ethereum event log.
    58      type Log {
    59          # Index is the index of this log in the block.
    60          index: Int!
    61          # Account is the account which generated this log - this will always
    62          # be a contract account.
    63          account(block: Long): Account!
    64          # Topics is a list of 0-4 indexed topics for the log.
    65          topics: [Bytes32!]!
    66          # Data is unindexed data for this log.
    67          data: Bytes!
    68          # Transaction is the transaction that generated this log entry.
    69          transaction: Transaction!
    70      }
    71  
    72      # Transaction is an Ethereum transaction.
    73      type Transaction {
    74          # Hash is the hash of this transaction.
    75          hash: Bytes32!
    76          # Nonce is the nonce of the account this transaction was generated with.
    77          nonce: Long!
    78          # Index is the index of this transaction in the parent block. This will
    79          # be null if the transaction has not yet been mined.
    80          index: Int
    81          # From is the account that sent this transaction - this will always be
    82          # an externally owned account.
    83          from(block: Long): Account!
    84          # To is the account the transaction was sent to. This is null for
    85          # contract-creating transactions.
    86          to(block: Long): Account
    87          # Value is the value, in wei, sent along with this transaction.
    88          value: BigInt!
    89          # GasPrice is the price offered to miners for gas, in wei per unit.
    90          gasPrice: BigInt!
    91          # Gas is the maximum amount of gas this transaction can consume.
    92          gas: Long!
    93          # InputData is the data supplied to the target of the transaction.
    94          inputData: Bytes!
    95          # Block is the block this transaction was mined in. This will be null if
    96          # the transaction has not yet been mined.
    97          block: Block
    98  
    99          # Status is the return status of the transaction. This will be 1 if the
   100          # transaction succeeded, or 0 if it failed (due to a revert, or due to
   101          # running out of gas). If the transaction has not yet been mined, this
   102          # field will be null.
   103          status: Long
   104          # GasUsed is the amount of gas that was used processing this transaction.
   105          # If the transaction has not yet been mined, this field will be null.
   106          gasUsed: Long
   107          # CumulativeGasUsed is the total gas used in the block up to and including
   108          # this transaction. If the transaction has not yet been mined, this field
   109          # will be null.
   110          cumulativeGasUsed: Long
   111          # CreatedContract is the account that was created by a contract creation
   112          # transaction. If the transaction was not a contract creation transaction,
   113          # or it has not yet been mined, this field will be null.
   114          createdContract(block: Long): Account
   115          # Logs is a list of log entries emitted by this transaction. If the
   116          # transaction has not yet been mined, this field will be null.
   117          logs: [Log!]
   118          r: BigInt!
   119          s: BigInt!
   120          v: BigInt!
   121      }
   122  
   123      # BlockFilterCriteria encapsulates log filter criteria for a filter applied
   124      # to a single block.
   125      input BlockFilterCriteria {
   126          # Addresses is list of addresses that are of interest. If this list is
   127          # empty, results will not be filtered by address.
   128          addresses: [Address!]
   129          # Topics list restricts matches to particular event topics. Each event has a list
   130        # of topics. Topics matches a prefix of that list. An empty element array matches any
   131        # topic. Non-empty elements represent an alternative that matches any of the
   132        # contained topics.
   133        #
   134        # Examples:
   135        #  - [] or nil          matches any topic list
   136        #  - [[A]]              matches topic A in first position
   137        #  - [[], [B]]          matches any topic in first position, B in second position
   138        #  - [[A], [B]]         matches topic A in first position, B in second position
   139        #  - [[A, B]], [C, D]]  matches topic (A OR B) in first position, (C OR D) in second position
   140          topics: [[Bytes32!]!]
   141      }
   142  
   143      # Block is an Ethereum block.
   144      type Block {
   145          # Number is the number of this block, starting at 0 for the genesis block.
   146          number: Long!
   147          # Hash is the block hash of this block.
   148          hash: Bytes32!
   149          # Parent is the parent block of this block.
   150          parent: Block
   151          # Nonce is the block nonce, an 8 byte sequence determined by the miner.
   152          nonce: Bytes!
   153          # TransactionsRoot is the keccak256 hash of the root of the trie of transactions in this block.
   154          transactionsRoot: Bytes32!
   155          # TransactionCount is the number of transactions in this block. if
   156          # transactions are not available for this block, this field will be null.
   157          transactionCount: Int
   158          # StateRoot is the keccak256 hash of the state trie after this block was processed.
   159          stateRoot: Bytes32!
   160          # ReceiptsRoot is the keccak256 hash of the trie of transaction receipts in this block.
   161          receiptsRoot: Bytes32!
   162          # Miner is the account that mined this block.
   163          miner(block: Long): Account!
   164          # ExtraData is an arbitrary data field supplied by the miner.
   165          extraData: Bytes!
   166          # GasLimit is the maximum amount of gas that was available to transactions in this block.
   167          gasLimit: Long!
   168          # GasUsed is the amount of gas that was used executing transactions in this block.
   169          gasUsed: Long!
   170          # Timestamp is the unix timestamp at which this block was mined.
   171          timestamp: Long!
   172          # LogsBloom is a bloom filter that can be used to check if a block may
   173          # contain log entries matching a filter.
   174          logsBloom: Bytes!
   175          # MixHash is the hash that was used as an input to the PoW process.
   176          mixHash: Bytes32!
   177          # Difficulty is a measure of the difficulty of mining this block.
   178          difficulty: BigInt!
   179          # TotalDifficulty is the sum of all difficulty values up to and including
   180          # this block.
   181          totalDifficulty: BigInt!
   182          # OmmerCount is the number of ommers (AKA uncles) associated with this
   183          # block. If ommers are unavailable, this field will be null.
   184          ommerCount: Int
   185          # Ommers is a list of ommer (AKA uncle) blocks associated with this block.
   186          # If ommers are unavailable, this field will be null. Depending on your
   187          # node, the transactions, transactionAt, transactionCount, ommers,
   188          # ommerCount and ommerAt fields may not be available on any ommer blocks.
   189          ommers: [Block]
   190          # OmmerAt returns the ommer (AKA uncle) at the specified index. If ommers
   191          # are unavailable, or the index is out of bounds, this field will be null.
   192          ommerAt(index: Int!): Block
   193          # OmmerHash is the keccak256 hash of all the ommers (AKA uncles)
   194          # associated with this block.
   195          ommerHash: Bytes32!
   196          # Transactions is a list of transactions associated with this block. If
   197          # transactions are unavailable for this block, this field will be null.
   198          transactions: [Transaction!]
   199          # TransactionAt returns the transaction at the specified index. If
   200          # transactions are unavailable for this block, or if the index is out of
   201          # bounds, this field will be null.
   202          transactionAt(index: Int!): Transaction
   203          # Logs returns a filtered set of logs from this block.
   204          logs(filter: BlockFilterCriteria!): [Log!]!
   205          # Account fetches an Ethereum account at the current block's state.
   206          account(address: Address!): Account!
   207          # Call executes a local call operation at the current block's state.
   208          call(data: CallData!): CallResult
   209          # EstimateGas estimates the amount of gas that will be required for
   210          # successful execution of a transaction at the current block's state.
   211          estimateGas(data: CallData!): Long!
   212      }
   213  
   214      # CallData represents the data associated with a local contract call.
   215      # All fields are optional.
   216      input CallData {
   217          # From is the address making the call.
   218          from: Address
   219          # To is the address the call is sent to.
   220          to: Address
   221          # Gas is the amount of gas sent with the call.
   222          gas: Long
   223          # GasPrice is the price, in wei, offered for each unit of gas.
   224          gasPrice: BigInt
   225          # Value is the value, in wei, sent along with the call.
   226          value: BigInt
   227          # Data is the data sent to the callee.
   228          data: Bytes
   229      }
   230  
   231      # CallResult is the result of a local call operation.
   232      type CallResult {
   233          # Data is the return data of the called contract.
   234          data: Bytes!
   235          # GasUsed is the amount of gas used by the call, after any refunds.
   236          gasUsed: Long!
   237          # Status is the result of the call - 1 for success or 0 for failure.
   238          status: Long!
   239      }
   240  
   241      # FilterCriteria encapsulates log filter criteria for searching log entries.
   242      input FilterCriteria {
   243          # FromBlock is the block at which to start searching, inclusive. Defaults
   244          # to the latest block if not supplied.
   245          fromBlock: Long
   246          # ToBlock is the block at which to stop searching, inclusive. Defaults
   247          # to the latest block if not supplied.
   248          toBlock: Long
   249          # Addresses is a list of addresses that are of interest. If this list is
   250          # empty, results will not be filtered by address.
   251          addresses: [Address!]
   252          # Topics list restricts matches to particular event topics. Each event has a list
   253        # of topics. Topics matches a prefix of that list. An empty element array matches any
   254        # topic. Non-empty elements represent an alternative that matches any of the
   255        # contained topics.
   256        #
   257        # Examples:
   258        #  - [] or nil          matches any topic list
   259        #  - [[A]]              matches topic A in first position
   260        #  - [[], [B]]          matches any topic in first position, B in second position
   261        #  - [[A], [B]]         matches topic A in first position, B in second position
   262        #  - [[A, B]], [C, D]]  matches topic (A OR B) in first position, (C OR D) in second position
   263          topics: [[Bytes32!]!]
   264      }
   265  
   266      # SyncState contains the current synchronisation state of the client.
   267      type SyncState{
   268          # StartingBlock is the block number at which synchronisation started.
   269          startingBlock: Long!
   270          # CurrentBlock is the point at which synchronisation has presently reached.
   271          currentBlock: Long!
   272          # HighestBlock is the latest known block number.
   273          highestBlock: Long!
   274          # PulledStates is the number of state entries fetched so far, or null
   275          # if this is not known or not relevant.
   276          pulledStates: Long
   277          # KnownStates is the number of states the node knows of so far, or null
   278          # if this is not known or not relevant.
   279          knownStates: Long
   280      }
   281  
   282      # Pending represents the current pending state.
   283      type Pending {
   284        # TransactionCount is the number of transactions in the pending state.
   285        transactionCount: Int!
   286        # Transactions is a list of transactions in the current pending state.
   287        transactions: [Transaction!]
   288        # Account fetches an Ethereum account for the pending state.
   289        account(address: Address!): Account!
   290        # Call executes a local call operation for the pending state.
   291        call(data: CallData!): CallResult
   292        # EstimateGas estimates the amount of gas that will be required for
   293        # successful execution of a transaction for the pending state.
   294        estimateGas(data: CallData!): Long!
   295      }
   296  
   297      type Query {
   298          # Block fetches an Ethereum block by number or by hash. If neither is
   299          # supplied, the most recent known block is returned.
   300          block(number: Long, hash: Bytes32): Block
   301          # Blocks returns all the blocks between two numbers, inclusive. If
   302          # to is not supplied, it defaults to the most recent known block.
   303          blocks(from: Long!, to: Long): [Block!]!
   304          # Pending returns the current pending state.
   305          pending: Pending!
   306          # Transaction returns a transaction specified by its hash.
   307          transaction(hash: Bytes32!): Transaction
   308          # Logs returns log entries matching the provided filter.
   309          logs(filter: FilterCriteria!): [Log!]!
   310          # GasPrice returns the node's estimate of a gas price sufficient to
   311          # ensure a transaction is mined in a timely fashion.
   312          gasPrice: BigInt!
   313          # ProtocolVersion returns the current wire protocol version number.
   314          protocolVersion: Int!
   315          # Syncing returns information on the current synchronisation state.
   316          syncing: SyncState
   317          # ChainID returns the current chain ID for transaction replay protection.
   318          chainID: BigInt!
   319      }
   320  
   321      type Mutation {
   322          # SendRawTransaction sends an RLP-encoded transaction to the network.
   323          sendRawTransaction(data: Bytes!): Bytes32!
   324      }
   325  `