Skip to content

Commit 0f3cf97

Browse files
authored
1 parent d19fc2c commit 0f3cf97

File tree

7 files changed

+25
-29
lines changed

7 files changed

+25
-29
lines changed

docs/reference/tables/raw/blocks.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ These tables are useful for identifying block activity and transaction changes o
1919
| Optimism | `optimism.blocks` | Does not contain `miner` `nonce` `base_fee_per_gas` |
2020
| Optimism (legacy) | `optimism_legacy_ovm1.blocks` | Does not contain `miner` `nonce` `base_fee_per_gas` |
2121
| BNB Chain | `bnb.blocks` | Does not contain `base_fee_per_gas` |
22-
| Solana | `solana.blocks` | [Find details here](../raw/solana/blocks.md)
2322
| Arbitrum | `arbitrum.blocks` | Does not contain `miner` `difficulty` `total_difficulty` `nonce` `size` `base_fee_per_gas` |
2423
| Avalanche C-Chain | `avalanche_c.blocks` | Does not contain `miner` `difficulty` |
2524

docs/reference/tables/raw/event-logs.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ For more on this topic read [this article](https://medium.com/mycrypto/understan
2626
| Optimism | `optimism.logs` | |
2727
| Optimism (legacy) | `optimism_legacy_ovm1.logs` | |
2828
| BNB Chain | `bnb.logs` | |
29-
| Solana | `solana.logs` | |
3029
| Arbitrum | `arbitrum.logs` | |
3130
| Avalanche C-Chain | `avalanche_c.logs` | |
3231

docs/reference/tables/raw/solana/account-activity.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ This table contains information from the transactions table focused on account u
1717
| signed | boolean | This account signed this transaction |
1818
| writeable | boolean | This account was granted read-write access in this transaction |
1919
| pre\_balance | bigint | The balance of this account before the transaction was processed |
20-
| pre\_token\_\_\_balance | decimal | The token balance before the transaction was processed |
20+
| pre\_token\_balance | decimal | The token balance before the transaction was processed |
2121
| post\_balance | bigint | The balance of this account after the transaction was processed |
22-
| post\_token\_\_\_balance | decimal | The token balance after the transaction was processed |
22+
| post\_token\_balance | decimal | The token balance after the transaction was processed |
2323
| balance\_change | bigint | The balance change that occurred as part of the transaction |
24-
| token\_balance\_\_\_change | decimal | The balance change that occurred as part of the transaction |
24+
| token\_balance\_change | decimal | The balance change that occurred as part of the transaction |

docs/reference/tables/raw/solana/transactions.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ Query examples can be found here: [NFT transactions of popular programs past 7 d
1616
| block\_hash | string | The hash of this block, base-58 encoded |
1717
| error | STRUCT error | NULL if success is true. |
1818
| required\_signatures | bigint | The total number of signatures required to make the transaction valid. |
19-
| readonly\_signed\_\_\_accounts | bigint | The last readonly\_signed\_accounts of the signed keys are read-only accounts. |
20-
| readonly\_unsigned\_\_\_accounts | bigint | The last readonly\_unsigned\_accounts of the unsigned keys are read-only accounts. |
19+
| readonly\_signed\_accounts | bigint | The last readonly\_signed\_accounts of the signed keys are read-only accounts. |
20+
| readonly\_unsigned\_accounts | bigint | The last readonly\_unsigned\_accounts of the unsigned keys are read-only accounts. |
2121
| id | string | The first signature in the transaction |
2222
| success | boolean | The transaction was valid and thus committed. |
23-
| recent\_block\_\_\_hash | string | The hash of a recent block in the ledger, used to prevent transaction duplication and to give transactions lifetimes |
24-
| instructions | array\<STRUCT instructions> | Instructions to execute (in order) |
25-
| accountKeys | array\<string> | The account keys used in the transaction |
26-
| log\_messages | array\<string> | The log messages emitted by the transaction |
27-
| pre\_balances | array\<bigint> | Array of account balances before the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
28-
| post\_balances | array\<bigint> | Array of account balances after the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
29-
| pre\_token\_balance | array\<STRUCT token\_balance> | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
30-
| post\_token\_balance | array\<STRUCT token\_balance> | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
31-
| signatures | array\<string> | A list of base-58 encoded signatures applied to the transaction. Always of length numRequiredSignatures |
23+
| recent\_block\_hash | string | The hash of a recent block in the ledger, used to prevent transaction duplication and to give transactions lifetimes |
24+
| instructions | array&lt;STRUCT instructions&gt; | Instructions to execute (in order) |
25+
| accountKeys | array&lt;string&gt; | The account keys used in the transaction |
26+
| log\_messages | array&lt;string&gt; | The log messages emitted by the transaction |
27+
| pre\_balances | array&lt;bigint&gt; | Array of account balances before the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
28+
| post\_balances | array&lt;bigint&gt; | Array of account balances after the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
29+
| pre\_token\_balance | array&lt;STRUCT token\_balance&gt; | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
30+
| post\_token\_balance | array&lt;STRUCT token\_balance&gt; | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
31+
| signatures | array&lt;string&gt; | A list of base-58 encoded signatures applied to the transaction. Always of length numRequiredSignatures |
3232
| signer | string | The initial value from the account\_keys array that initiates the transaction and pays the transaction fee |
3333

3434
### Struct definitions
@@ -51,18 +51,18 @@ An example of how these can be used to extract data: [# of Solana instructions b
5151

5252
| Field | Data type | Description |
5353
| ------------------- | ---------------------------------- | -------------------------------------------------------------- |
54-
| account\_arguments | array\<string> | Ordered list of accounts to pass to the program |
54+
| account\_arguments | array&lt;string&gt; | Ordered list of accounts to pass to the program |
5555
| data | string | Program input data in a base-58 string |
5656
| executing\_account | string | The account key of the program that executed this instruction. |
57-
| inner\_instructions | array\<STRUCT inner\_instructions> | The instructions invoked by this instruction. |
57+
| inner\_instructions | array&lt;STRUCT inner\_instructions&gt; | The instructions invoked by this instruction. |
5858

5959
***
6060

6161
**inner\_instructions**
6262

6363
| Field | Data type | Description |
6464
| ------------------ | -------------- | -------------------------------------------------------------- |
65-
| account\_arguments | array\<string> | Ordered list of accounts to pass to the program |
65+
| account\_arguments | array&lt;string&gt; | Ordered list of accounts to pass to the program |
6666
| data | string | Program input data in a base-58 string |
6767
| executing\_account | string | The account key of the program that executed this instruction. |
6868

docs/reference/tables/raw/solana/vote-transactions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ An example query that demonstrates that is available here: [Solana transactions
2121
| id | string | The first signature in the transaction |
2222
| success | boolean | The transaction was valid and thus committed. |
2323
| recent\_block\_\_\_hash | string | The hash of a recent block in the ledger, used to prevent transaction duplication and to give transactions lifetimes |
24-
| instructions | array\<STRUCT instructions> | Instructions to execute (in order) |
25-
| accountKeys | array\<string> | The account keys used in the transaction |
26-
| log\_messages | array\<string> | The log messages emitted by the transaction |
27-
| pre\_balances | array\<bigint> | Array of account balances before the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
28-
| post\_balances | array\<bigint> | Array of account balances after the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
29-
| pre\_token\_balance | array\<STRUCT token\_balance> | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
30-
| post\_token\_balance | array\<STRUCT token\_balance> | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
31-
| signatures | array\<string> | A list of base-58 encoded signatures applied to the transaction. Always of length numRequiredSignatures |
24+
| instructions | array&lt;STRUCT instructions&gt; | Instructions to execute (in order) |
25+
| accountKeys | array&lt;string&gt; | The account keys used in the transaction |
26+
| log\_messages | array&lt;string&gt; | The log messages emitted by the transaction |
27+
| pre\_balances | array&lt;bigint&gt; | Array of account balances before the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
28+
| post\_balances | array&lt;bigint&gt; | Array of account balances after the transaction was processed. The i-th balance is the balance of the i-th account key in account\_keys |
29+
| pre\_token\_balance | array&lt;STRUCT token\_balance&gt; | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
30+
| post\_token\_balance | array&lt;STRUCT token\_balance&gt; | List of [token balances](https://docs.solana.com/developing/clients/jsonrpc-api#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction |
31+
| signatures | array&lt;string&gt; | A list of base-58 encoded signatures applied to the transaction. Always of length numRequiredSignatures |
3232
| signer | string | The initial value from the account\_keys array that initiates the transaction and pays the transaction fee |

docs/reference/tables/raw/traces.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Read more [here](https://medium.com/chainalysis/ethereum-traces-not-transactions
1919
| Optimism | `optimism.traces` | `value` measured in `wei` |
2020
| Optimism (legacy) | `optimism_legacy_ovm1.traces` | `value` measured in `wei` |
2121
| BNB Chain | `bnb.traces` | `value` measured in `wei` |
22-
| Solana | `solana.traces` | `value` measured in `wei` |
2322
| Arbitrum | `arbitrum.traces` | `value` measured in `ArbGas`, does not contain `gas` |
2423
| Avalanche C-Chain | `avalanche_c.traces` | `value` measured in `nanoavax` |
2524

0 commit comments

Comments
 (0)