Latest Transactions
The Sort <LatestTransactions/>
React Component displays a pageable table of the latest transactions of a contract address.
Light mode
Dark mode
Props
Name | Default Value | Description |
---|---|---|
contract_address | Contract address to show latest transactions for, must be a "sponsored" contract in Sort | |
api_key | A free API key can be found by logging to your account at sort.xyz and viewing your profile | |
height | 600px | CSS height property |
theme | dark | "dark" or "light |
blockchain | ethereum, polygon, or goerli |
Code Example
import { LatestTransactions } from "@sort/react-components";
export default function ShowTransactions() {
return
<LatestTransactions
contract_address="0x887f3909c14dabd9e9510128ca6cbb448e932d7f"
api_key="MY_API_KEY"
theme="dark"
blockchain="ethereum"
/>
}
Updated 10 days ago