mirror of
https://github.com/status-im/status-go.git
synced 2025-01-17 02:02:36 +00:00
14 lines
187 B
SQL
14 lines
187 B
SQL
-- Query searches for additional details of a transaction
|
|
|
|
SELECT
|
|
tx_hash,
|
|
blk_number,
|
|
network_id,
|
|
account_nonce,
|
|
tx,
|
|
contract_address,
|
|
base_gas_fee
|
|
FROM
|
|
transfers
|
|
WHERE
|
|
hash = ? |