mirror of
https://github.com/FlipsideCrypto/near-models.git
synced 2026-02-06 11:26:52 +00:00
description updates
This commit is contained in:
parent
1ad4fd1635
commit
1fbe60ed64
@ -7,37 +7,37 @@ models:
|
||||
|
||||
columns:
|
||||
- name: action_id
|
||||
description: The `action_id` as compiled from `tx_id` and `action_index`. This is unique for each record.
|
||||
description:
|
||||
tests:
|
||||
- unique
|
||||
- not_null
|
||||
|
||||
- name: txn_hash
|
||||
description: The hash of the transaction, this is the primary key for this table.
|
||||
description: "{{ doc('txn_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_timestamp
|
||||
description: The `block_timestamp` taken from block headers. The time when the block was created.
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: action_index
|
||||
description: The index of the current `action_name` and `action_data` in the order in which it appeared in the transaction.
|
||||
description: "{{ doc('action_index')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: action_name
|
||||
description: The name of the action performed.
|
||||
description: "{{ doc('action_name')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: action_data
|
||||
description: A JSON object containing the argument data that was called by the `action_event`, if any.
|
||||
description: "{{ doc('action_data')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: ingested_at
|
||||
description: The timestamp for when the block was ingested.
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -7,44 +7,44 @@ models:
|
||||
|
||||
columns:
|
||||
- name: action_id
|
||||
description: The `action_id` as compiled from `tx_id` and `action_index`. This is unique for each record.
|
||||
description: "{{ doc('action_id')}}"
|
||||
tests:
|
||||
- unique
|
||||
- not_null
|
||||
|
||||
- name: txn_hash
|
||||
description: The hash of the transaction..
|
||||
description: "{{ doc('txn_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_timestamp
|
||||
description: The `block_timestamp` taken from block headers. The time when the block was created.
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: nonce
|
||||
description: Nonce for transactions.
|
||||
description: "{{ doc('nonce')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: public_key
|
||||
description: The public key of an AccessKey which was used to sign the original transaction. In case of a deposit refund, the public key is empty (all bytes are 0).
|
||||
description: "{{ doc('public_key')}}"
|
||||
|
||||
- name: permission
|
||||
description: Permissions granted to the contract by the signer.
|
||||
description: "{{ doc('permission')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: allowance
|
||||
description: Amount of NEAR approved for use in unadjusted format (10^24). NULL if permission is FullAccess.
|
||||
description: "{{ doc('allowance')}}"
|
||||
|
||||
- name: method_name
|
||||
description: Name of the method(s) approved for use. NULL if permission is FullAccess.
|
||||
description: "{{ doc('method_name')}}"
|
||||
|
||||
- name: receiver_id
|
||||
description: the account ID of the destination of this transaction. NULL if permission is FullAccess.
|
||||
description: "{{ doc('receiver_id')}}"
|
||||
|
||||
- name: ingested_at
|
||||
description: The timestamp for when the block was ingested.
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -7,44 +7,44 @@ models:
|
||||
|
||||
columns:
|
||||
- name: action_id
|
||||
description: The `action_id` as compiled from `tx_id` and `action_index`. This is unique for each record.
|
||||
description: "{{ doc('action_id')}}"
|
||||
tests:
|
||||
- unique
|
||||
- not_null
|
||||
|
||||
- name: txn_hash
|
||||
description: The hash of the transaction, this is the primary key for this table.
|
||||
description: "{{ doc('txn_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_timestamp
|
||||
description: The `block_timestamp` taken from block headers. The time when the block was created.
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: action_name
|
||||
description: The name of the action performed.
|
||||
description: "{{ doc('action_name')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: method_name
|
||||
description: The method called within the action `FunctionCall`.
|
||||
description: "{{ doc('method_name')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: args
|
||||
description: Decoded (where possible) arguments passed alongside the `method_name`. If decoding failed, the table will contain the raw message.
|
||||
description: "{{ doc('args')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: deposit
|
||||
description: Sum of all NEAR tokens (figure is not decimal adjusted, 10^24) transferred from the Signing account to the Receiver account.
|
||||
description: "{{ doc('deposit')}}"
|
||||
|
||||
|
||||
- name: attached_gas
|
||||
description: Units of gas (figure is not decimal adjusted, 10^12) attached to the transaction (this is often higher than 'Gas Used').
|
||||
description: "{{ doc('attached_gas')}}"
|
||||
|
||||
- name: ingested_at
|
||||
description: The timestamp for when the block was ingested.
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -7,166 +7,164 @@ models:
|
||||
|
||||
columns:
|
||||
- name: block_height
|
||||
description: The `block_id` taken from block headers. The block number that represent the length of the blockchain in blocks.
|
||||
description: "{{ doc('block_height')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_timestamp
|
||||
description: The `block_timestamp` taken from block headers. The time when the block was created.
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_hash
|
||||
description: The `block_hash` taken from block headers. A unique identifier for that block.
|
||||
description: "{{ doc('block_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx_count
|
||||
description: The `tx_count` taken from block headers. The number of transactions included in the block.
|
||||
description: "{{ doc('tx_count')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_author
|
||||
description: The `block_author` taken from block headers. Validators of the blockchain.
|
||||
description: "{{ doc('block_author')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_challenges_result
|
||||
description: The block_challenges_result taken from block headers.
|
||||
description: "{{ doc('block_challenges_result')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_challenges_root
|
||||
description: The block_challenges_root taken from block headers.
|
||||
description: "{{ doc('block_challenges_root')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: chunk_headers_root
|
||||
description: The chunk_headers_root taken from block headers.
|
||||
description: "{{ doc('chunk_headers_root')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: chunk_mask
|
||||
description: The chunk_mask taken from block headers.
|
||||
description: "{{ doc('chunk_mask')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: chunk_receipts_root
|
||||
description: The chunk_receipts_root taken from block headers.
|
||||
description: "{{ doc('chunk_receipts_root')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: chunk_tx_root
|
||||
description: The chunk_tx_root taken from block headers.
|
||||
description: "{{ doc('chunk_tx_root')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: chunks
|
||||
description: The chunks taken from block headers. Chunk is an aggregation of transactions which are executed within a particular shard.
|
||||
description: "{{ doc('chunks')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: chunks_included
|
||||
description: The chunks_included taken from block headers.
|
||||
description: "{{ doc('chunks_included')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: epoch_id
|
||||
description: The epoch_id taken from block headers.
|
||||
description: "{{ doc('epoch_id')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: epoch_sync_data_hash
|
||||
description: The epoch_sync_data_hash taken from block headers.
|
||||
description: "{{ doc('epoch_sync_data_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: events
|
||||
description: The events taken from block headers.
|
||||
description: "{{ doc('events')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: gas_price
|
||||
description: The gas_price taken from block headers.
|
||||
description: "{{ doc('gas_price')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: last_ds_final_block
|
||||
description: The last_ds_final_block taken from block headers.
|
||||
description: "{{ doc('last_ds_final_block')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: last_final_block
|
||||
description: The last_final_block taken from block headers.
|
||||
description: "{{ doc('last_final_block')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: latest_protocol_version
|
||||
description: The latest_protocol_version taken from block headers.
|
||||
description: "{{ doc('latest_protocol_version')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: next_bp_hash
|
||||
description: The next_bp_hash taken from block headers.
|
||||
description: "{{ doc('next_bp_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: next_epoch_id
|
||||
description: The next_epoch_id taken from block headers.
|
||||
description: "{{ doc('next_epoch_id')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: outcome_root
|
||||
description: The outcome_root taken from block headers.
|
||||
description: "{{ doc('outcome_root')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: prev_hash
|
||||
description: The prev_hash taken from block headers.
|
||||
description: "{{ doc('prev_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: prev_height
|
||||
description: The prev_height taken from block headers.
|
||||
description: "{{ doc('prev_height')}}"
|
||||
tests:
|
||||
|
||||
|
||||
- name: prev_state_root
|
||||
description: The prev_state_root taken from block headers.
|
||||
description: "{{ doc('prev_state_root')}}"
|
||||
tests:
|
||||
|
||||
|
||||
- name: random_value
|
||||
description: The random_value taken from block headers.
|
||||
description: "{{ doc('random_value')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: rent_paid
|
||||
description: The rent_paid taken from block headers.
|
||||
description:"{{ doc('rent_paid')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: signature
|
||||
description: The signature taken from block headers.
|
||||
description: "{{ doc('signature')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: total_supply
|
||||
description: The total_supply taken from block headers.
|
||||
description: "{{ doc('total_supply')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: validator_proposals
|
||||
description: The validator_proposals taken from block headers.
|
||||
description: "{{ doc('validator_proposals')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: validator_reward
|
||||
description: The validator_reward taken from block headers.
|
||||
description: "{{ doc('validator_reward')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: ingested_at
|
||||
description: The timestamp for when the block was ingested.
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -7,77 +7,77 @@ models:
|
||||
|
||||
columns:
|
||||
- name: block_height
|
||||
description: The most recent block height recorded to the blockchain. The block height is a sequential number of the most recent block in the blockchain.
|
||||
description: "{{ doc('block_height')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: block_hash
|
||||
description: Unique identifier (hash) of this block.
|
||||
description: "{{ doc('block_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: txn_hash
|
||||
description: Unique identifier (hash) of this transaction.
|
||||
description: "{{ doc('txn_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
- unique
|
||||
|
||||
- name: block_timestamp
|
||||
description: The time the block was minted.
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: nonce
|
||||
description: Nonce is used to determine order of transaction in the pool.
|
||||
description: "{{ doc('nonce')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: signature
|
||||
description: A signature of a hash of the Borsh-serialized Transaction. Signature proves an ownership of the corresponding public_key (which is an AccessKey for a particular account) as well as authenticity of the transaction itself.
|
||||
description: "{{ doc('signature')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx_receiver
|
||||
description: The transaction receiver.
|
||||
description: "{{ doc('tx_receiver')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx_signer
|
||||
description: The transaction signer.
|
||||
description: "{{ doc('tx_signer')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx
|
||||
description: The transaction's information.
|
||||
description: "{{ doc('tx')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx_outcome
|
||||
description: The transaction outcome.
|
||||
description: "{{ doc('tx_outcome')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx_receipt
|
||||
description: The transaction receipt.
|
||||
description: "{{ doc('tx_receipt')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: gas_used
|
||||
description: Units of gas required to execute this transaction.
|
||||
description: "{{ doc('gas_used')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: attached_gas
|
||||
description: Units of gas attached to the transaction (this is often higher than 'Gas Used').
|
||||
description: "{{ doc('attached_gas')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: transaction_fee
|
||||
description: Total fee paid in yoctoNEAR to execute this transaction.
|
||||
description: "{{ doc('transaction_fee')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: ingested_at
|
||||
description: The timestamp for when the block was ingested.
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -8,56 +8,56 @@ models:
|
||||
|
||||
columns:
|
||||
- name: txn_hash
|
||||
description: The unique id of the transaction.
|
||||
description: "{{ doc('txn_hash')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
columns:
|
||||
- name: action_id
|
||||
description: The `action_id` as compiled from `tx_hash` and `action_index`. This is unique for each record.
|
||||
description: "{{ doc('action_id')}}"
|
||||
tests:
|
||||
- not_null
|
||||
- unique
|
||||
|
||||
- name: block_timestamp
|
||||
description: The time when the block was mined.
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx_signer
|
||||
description: Account that signed and sent the transaction
|
||||
description: "{{ doc('tx_signer')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: tx_receiver
|
||||
description: Account receiving the transaction.
|
||||
description: "{{ doc('tx_receiver')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: deposit
|
||||
description: Sum of all NEAR tokens transferred from the Signing account to the Receiver account. This includes tokens sent in a Transfer action(s). In raw number format, to adjust divide by POW(10,24)
|
||||
- name: deposit
|
||||
description: "{{ doc('deposit')}}"
|
||||
|
||||
- name: receipt_object_id
|
||||
description: The unique id of the reciept object that corresponds to this transaction.
|
||||
description: "{{ doc('receipt_object_id')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: transaction_fee
|
||||
description: Total fee paid in NEAR to execute this transaction. In raw number format, to adjust divide by POW(10,24)
|
||||
description: "{{ doc('transaction_fee')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: gas_used
|
||||
description: Units of gas required to execute this transaction. In raw number format, to adjust divide by POW(10,12)
|
||||
description: "{{ doc('gas_used')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: status
|
||||
description: Boolean representing the success or failure of the transaction. True for a successful transaction and False for failed transaction.
|
||||
description: "{{ doc('status')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: ingested_at
|
||||
description: The timestamp for when the block was ingested.
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
5
models/descriptions/action_data.md
Normal file
5
models/descriptions/action_data.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs action_data %}
|
||||
|
||||
A JSON object containing the argument data that was called by the `action_event`, if any.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/action_id.md
Normal file
5
models/descriptions/action_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs action_id %}
|
||||
|
||||
The `action_id` as compiled from `tx_id` and `action_index`. This is unique for each record.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/action_index.md
Normal file
5
models/descriptions/action_index.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs action_index %}
|
||||
|
||||
The index of the current `action_name` and `action_data` in the order in which it appeared in the transaction.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/action_name.md
Normal file
5
models/descriptions/action_name.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs action_name %}
|
||||
|
||||
The name of the action performed.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/allowance.md
Normal file
5
models/descriptions/allowance.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs allowance %}
|
||||
|
||||
Amount of NEAR approved for use in unadjusted format (10^24). NULL if permission is FullAccess.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/args.md
Normal file
5
models/descriptions/args.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs args %}
|
||||
|
||||
Decoded (where possible) arguments passed alongside the `method_name`. If decoding failed, the table will contain the raw message.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/attached_gas.md
Normal file
5
models/descriptions/attached_gas.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs attached_gas %}
|
||||
|
||||
Units of gas (figure is not decimal adjusted, 10^12) attached to the transaction (this is often higher than 'Gas Used').
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/avg_gas_price.md
Normal file
5
models/descriptions/avg_gas_price.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs avg_gas_price %}
|
||||
|
||||
The average gas price in transactions. Not decimal adjusted; units in yoctoNEAR (10^-24 NEAR)
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/block_author.md
Normal file
5
models/descriptions/block_author.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs block_author %}
|
||||
|
||||
The `block_author` taken from block headers. Validators of the blockchain.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/block_challenges_result.md
Normal file
5
models/descriptions/block_challenges_result.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs block_challenges_result %}
|
||||
|
||||
The block_challenges_result taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/block_challenges_root.md
Normal file
5
models/descriptions/block_challenges_root.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs block_challenges_root %}
|
||||
|
||||
The block_challenges_root taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/block_height.md
Normal file
5
models/descriptions/block_height.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs block_hash %}
|
||||
|
||||
The block height is a sequential number of the most recent block in the blockchain.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/chain_id.md
Normal file
5
models/descriptions/chain_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs chain_id %}
|
||||
|
||||
Synonmous with blockchain name for Near.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/chunk_headers_root.md
Normal file
5
models/descriptions/chunk_headers_root.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs chunk_headers_root %}
|
||||
|
||||
The chunk_headers_root taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/chunk_mask.md
Normal file
5
models/descriptions/chunk_mask.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs chunk_mask %}
|
||||
|
||||
The chunk_mask taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/chunk_receipts_root.md
Normal file
5
models/descriptions/chunk_receipts_root.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs chunk_receipts_root %}
|
||||
|
||||
The chunk_receipts_root taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/chunk_tx_root.md
Normal file
5
models/descriptions/chunk_tx_root.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs chunk_tx_root %}
|
||||
|
||||
The chunk_tx_root taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/chunks.md
Normal file
5
models/descriptions/chunks.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs chunks %}
|
||||
|
||||
The chunks taken from block headers. Chunk is an aggregation of transactions which are executed within a particular shard.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/chunks_included.md
Normal file
5
models/descriptions/chunks_included.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs chunks_included %}
|
||||
|
||||
The chunks_included taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/daily_active_wallets.md
Normal file
5
models/descriptions/daily_active_wallets.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs daily_active_wallets %}
|
||||
|
||||
The daily number of active wallets.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/daily_gas_used.md
Normal file
5
models/descriptions/daily_gas_used.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs daily_gas_used %}
|
||||
|
||||
The total daily gas used in transactions. Not decimal adjusted; gas units (10^-12 Tgas)
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/daily_transactions.md
Normal file
5
models/descriptions/daily_transactions.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs daily_transactions %}
|
||||
|
||||
The daily number of transactions.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/date.md
Normal file
5
models/descriptions/date.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs date %}
|
||||
|
||||
The date (day).
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/deposit.md
Normal file
5
models/descriptions/deposit.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs deposit %}
|
||||
|
||||
Sum of all NEAR tokens (figure is not decimal adjusted, 10^24) transferred from the Signing account to the Receiver account.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/epoch_id.md
Normal file
5
models/descriptions/epoch_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs epoch_id %}
|
||||
|
||||
The epoch_id taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/epoch_sync_data_hash.md
Normal file
5
models/descriptions/epoch_sync_data_hash.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs epoch_sync_data_hash %}
|
||||
|
||||
The epoch_sync_data_hash taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/events.md
Normal file
5
models/descriptions/events.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs events %}
|
||||
|
||||
The events taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/gas_price.md
Normal file
5
models/descriptions/gas_price.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs gas_price %}
|
||||
|
||||
The gas_price taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/gas_used.md
Normal file
5
models/descriptions/gas_used.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs gas_used %}
|
||||
|
||||
Units of gas required to execute this transaction. In raw number format, to adjust divide by POW(10,12)
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/header.md
Normal file
5
models/descriptions/header.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs header %}
|
||||
|
||||
A json column containing the blocks header information.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/ingested_at.md
Normal file
5
models/descriptions/ingested_at.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs ingested_at %}
|
||||
|
||||
The timestamp for when the block was ingested.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/last_ds_final_block.md
Normal file
5
models/descriptions/last_ds_final_block.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs last_ds_final_block %}
|
||||
|
||||
The last_ds_final_block taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/last_final_block.md
Normal file
5
models/descriptions/last_final_block.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs last_final_block %}
|
||||
|
||||
The last_final_block taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/latest_protocol_version.md
Normal file
5
models/descriptions/latest_protocol_version.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs latest_protocol_version %}
|
||||
|
||||
The latest_protocol_version taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/method_name.md
Normal file
5
models/descriptions/method_name.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs method_name %}
|
||||
|
||||
Name of the method(s) approved for use. NULL if permission is FullAccess.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/network.md
Normal file
5
models/descriptions/network.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs network %}
|
||||
|
||||
The blockchain network. (i.e. mainnet, testnet, etc.)
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/next_bp_hash.md
Normal file
5
models/descriptions/next_bp_hash.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs next_bp_hash %}
|
||||
|
||||
The next_bp_hash taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/next_epoch_id.md
Normal file
5
models/descriptions/next_epoch_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs next_epoch_id %}
|
||||
|
||||
The next_epoch_id taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/nonce.md
Normal file
5
models/descriptions/nonce.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs nonce %}
|
||||
|
||||
Nonce for transactions.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/offset_id.md
Normal file
5
models/descriptions/offset_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs offset_id %}
|
||||
|
||||
Synonmous with block_id for Near.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/outcome_root.md
Normal file
5
models/descriptions/outcome_root.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs outcome_root %}
|
||||
|
||||
The outcome_root taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/permission.md
Normal file
5
models/descriptions/permission.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs permission %}
|
||||
|
||||
Permissions granted to the contract by the signer.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/prev_hash.md
Normal file
5
models/descriptions/prev_hash.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs prev_hash %}
|
||||
|
||||
The prev_hash taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/prev_height.md
Normal file
5
models/descriptions/prev_height.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs prev_height %}
|
||||
|
||||
The prev_height taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/prev_state_root.md
Normal file
5
models/descriptions/prev_state_root.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs prev_state_root %}
|
||||
|
||||
The prev_state_root taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/public_key.md
Normal file
5
models/descriptions/public_key.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs public_key %}
|
||||
|
||||
The public key of an AccessKey which was used to sign the original transaction. In case of a deposit refund, the public key is empty (all bytes are 0).
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/random_value.md
Normal file
5
models/descriptions/random_value.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs random_value %}
|
||||
|
||||
The random_value taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/receiver_id.md
Normal file
5
models/descriptions/receiver_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs receiver_id %}
|
||||
|
||||
The account ID of the destination of this transaction. NULL if permission is FullAccess.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/record_id.md
Normal file
5
models/descriptions/record_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs record_id %}
|
||||
|
||||
A unique id for the record generated by Chainwalkers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/rent_paid.md
Normal file
5
models/descriptions/rent_paid.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs rent_paid %}
|
||||
|
||||
The rent_paid taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/rolling_30day_active_wallets.md
Normal file
5
models/descriptions/rolling_30day_active_wallets.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs rolling_30day_active_wallets %}
|
||||
|
||||
The number of active wallets in the last 30 days.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/rolling_7day_active_wallets.md
Normal file
5
models/descriptions/rolling_7day_active_wallets.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs rolling_7day_active_wallets %}
|
||||
|
||||
The number of active wallets in the last 7 days.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/signature.md
Normal file
5
models/descriptions/signature.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs signature %}
|
||||
|
||||
The signature taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/status.md
Normal file
5
models/descriptions/status.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs status %}
|
||||
|
||||
Boolean representing the success or failure of the transaction. True for a successful transaction and False for failed transaction.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/total_supply.md
Normal file
5
models/descriptions/total_supply.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs total_supply %}
|
||||
|
||||
The total_supply taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/transaction_fee.md
Normal file
5
models/descriptions/transaction_fee.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs transaction_fee %}
|
||||
|
||||
Total fee paid in NEAR to execute this transaction. In raw number format, to adjust divide by POW(10,24)
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx.md
Normal file
5
models/descriptions/tx.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx %}
|
||||
|
||||
The transaction's information.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx_block_index.md
Normal file
5
models/descriptions/tx_block_index.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx_block_index %}
|
||||
|
||||
The index of the transaction within the block. Starts at 0.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx_count.md
Normal file
5
models/descriptions/tx_count.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx_count %}
|
||||
|
||||
The `tx_count` taken from block headers. The number of transactions included in the block.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx_id.md
Normal file
5
models/descriptions/tx_id.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx_id %}
|
||||
|
||||
Synonmous with transaction hash, a unique on chain identifier for the transaction
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx_outcome.md
Normal file
5
models/descriptions/tx_outcome.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx_outcome %}
|
||||
|
||||
The transaction outcome.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx_receipt.md
Normal file
5
models/descriptions/tx_receipt.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx_receipt %}
|
||||
|
||||
The transaction receipt.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx_receiver.md
Normal file
5
models/descriptions/tx_receiver.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx_receiver %}
|
||||
|
||||
The transaction receiver.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/tx_signer.md
Normal file
5
models/descriptions/tx_signer.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs tx_signer %}
|
||||
|
||||
The transaction signer.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/validator_proposals.md
Normal file
5
models/descriptions/validator_proposals.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs validator_proposals %}
|
||||
|
||||
The validator_proposals taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
5
models/descriptions/validator_reward.md
Normal file
5
models/descriptions/validator_reward.md
Normal file
@ -0,0 +1,5 @@
|
||||
{% docs validator_reward %}
|
||||
|
||||
The validator_reward taken from block headers.
|
||||
|
||||
{% enddocs %}
|
||||
@ -7,21 +7,21 @@ models:
|
||||
|
||||
columns:
|
||||
- name: date
|
||||
description: The date (day).
|
||||
description: "{{ doc('date')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: daily_active_wallets
|
||||
description: The daily number of active wallets.
|
||||
description: "{{ doc('daily_active_wallets')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: rolling_7day_active_wallets
|
||||
description: The number of active wallets in the last 7 days.
|
||||
description: "{{ doc('rolling_7day_active_wallets')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: rolling_30day_active_wallets
|
||||
description: The number of active wallets in the last 30 days.
|
||||
description: "{{ doc('rolling_30day_active_wallets')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -7,16 +7,16 @@ models:
|
||||
|
||||
columns:
|
||||
- name: date
|
||||
description: The date.
|
||||
description: "{{ doc('date')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: daily_gas_used
|
||||
description: The total daily gas used in transactions. #not decimal adjusted; gas units (10^-12 Tgas)
|
||||
description: "{{ doc('daily_gas_used')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: avg_gas_price
|
||||
description: The average gas price in transactions. #not decimal adjusted; units in yoctoNEAR (10^-24 NEAR)
|
||||
description: "{{ doc('avg_gas_price')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -7,11 +7,11 @@ models:
|
||||
|
||||
columns:
|
||||
- name: date
|
||||
description: The date.
|
||||
description: "{{ doc('date')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
- name: daily_transactions
|
||||
description: The daily number of transactions.
|
||||
description: "{{ doc('daily_transactions')}}"
|
||||
tests:
|
||||
- not_null
|
||||
|
||||
@ -7,29 +7,28 @@ models:
|
||||
|
||||
columns:
|
||||
- name: record_id
|
||||
description: A unique id for the record generated by Chainwalkers.
|
||||
description: "{{ doc('record_id')}}"
|
||||
|
||||
- name: offset_id
|
||||
description: Synonmous with block_id for Near.
|
||||
description: "{{ doc('offset_id')}}"
|
||||
|
||||
- name: block_id
|
||||
description: The height of the chain this block corresponds with.
|
||||
description: "{{ doc('block_id')}}"
|
||||
|
||||
- name: block_timestamp
|
||||
description: The time the block was minted.
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
|
||||
- name: network
|
||||
description: The blockchain network. (i.e. mainnet, testnet, etc.)
|
||||
description: "{{ doc('network')}}"
|
||||
|
||||
- name: chain_id
|
||||
description: Synonmous with blockchain name for Near.
|
||||
description: "{{ doc('chain_id')}}"
|
||||
|
||||
- name: tx_count
|
||||
description: The number of transactions in the block.
|
||||
description: "{{ doc('tx_count')}}"
|
||||
|
||||
- name: header
|
||||
description: A json column containing the blocks header information.
|
||||
description: "{{ doc('header')}}"
|
||||
|
||||
- name: ingested_at
|
||||
description: The time this row was ingested by Chainwalkers.
|
||||
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
|
||||
@ -7,31 +7,31 @@ models:
|
||||
|
||||
columns:
|
||||
- name: record_id
|
||||
description: A unique id for the record generated by Chainwalkers
|
||||
description: "{{ doc('record_id')}}"
|
||||
|
||||
- name: tx_id
|
||||
description: Synonmous with transaction hash, a unique on chain identifier for the transaction
|
||||
description: "{{ doc('tx_id')}}"
|
||||
|
||||
- name: tx_block_index
|
||||
description: The index of the transaction within the block. Starts at 0.
|
||||
description: "{{ doc('tx_block_index')}}"
|
||||
|
||||
- name: offset_id
|
||||
description: Synonmous with `block_id` for Near
|
||||
description: "{{ doc('offset_id')}}"
|
||||
|
||||
- name: block_id
|
||||
description: The height of the chain this block corresponds with
|
||||
description: "{{ doc('block_id')}}"
|
||||
|
||||
- name: block_timestamp
|
||||
description: The time the block was minted
|
||||
description: "{{ doc('block_timestamp')}}"
|
||||
|
||||
- name: network
|
||||
description: The blockchain network (i.e. mainnet, testnet, etc.)
|
||||
description: "{{ doc('network')}}"
|
||||
|
||||
- name: chain_id
|
||||
description: Synonmous with blockchain name for Near
|
||||
description: "{{ doc('chain_id')}}"
|
||||
|
||||
- name: tx
|
||||
description: A json object containing the tx and any decoded logs
|
||||
description: "{{ doc('tx')}}"
|
||||
|
||||
- name: ingested_at
|
||||
description: The time this row was ingested by Chainwalkers
|
||||
description: "{{ doc('ingested_at')}}"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user