Portals.fi Token Transactions
Comprehensive Transaction Data: Deposits, Swaps, and Withdrawals
@portals.transactions
Comprehensive Transaction Data: Deposits, Swaps, and Withdrawals
@portals.transactions
This dataset provides detailed information about token transactions sourced from the Portals.fi API, which aggregates data across multiple blockchain networks and DeFi protocols. It serves as a rich resource for researchers, developers, and analysts in the cryptocurrency and decentralized finance (DeFi) space.
[network]:[address] format.
ethereum:0x06325440D014e39736583c165C2963BA99fAf14Eid: Required parameter specifying the token in the [network]:[address] format.The API response provides a comprehensive breakdown of transactions for the specified token:
Deposits and Withdrawals:
key: Unique identifier for the token.symbol: Token symbol (e.g., steCRV).amount: Number of tokens involved in the transaction.amountUsd: USD value of the token amount.transactionHash: Unique hash for the transaction.time: Timestamp of the transaction in ISO 8601 format.Swaps:
inputAmount and outputAmount: Amount of input and output tokens.inputToken and outputToken: Identifiers for the input and output tokens.transactionHash: Unique hash for the swap transaction.time: Timestamp of the transaction in ISO 8601 format.CREATE TABLE deposits (
"transactionhash" VARCHAR,
"key" VARCHAR,
"symbol" VARCHAR,
"amount" DOUBLE,
"time" TIMESTAMP,
"year" BIGINT,
"month" BIGINT,
"day" BIGINT
);CREATE TABLE swaps (
"inputamount" DOUBLE,
"inputtoken" VARCHAR,
"outputamount" DOUBLE,
"outputtoken" VARCHAR,
"transactionhash" VARCHAR,
"time" TIMESTAMP,
"year" BIGINT,
"month" BIGINT,
"day" BIGINT
);CREATE TABLE withdraws (
"transactionhash" VARCHAR,
"key" VARCHAR,
"symbol" VARCHAR,
"amount" DOUBLE,
"time" TIMESTAMP,
"year" BIGINT,
"month" BIGINT,
"day" BIGINT
);Anyone who has the link will be able to view this.