POST
GetFundingHistory🔐 AuthGet funding payment history.
Request
| Parameter | Type | Description |
|---|---|---|
addressoptional | Address | |
market_idoptional | uint32 | 0 = all markets |
limitoptional | uint32 |
Response
| Field | Type | Description |
|---|---|---|
payments | FundingPayment[] |
Example
Request
import { RealmClient } from '@realm/sdk';const client = new RealmClient('https://api.realm.com');await client.connect(wallet);const response = await client.getFundingHistory({ /* params */ });console.log(response);
Response
{// Response fields}