39 lines
921 B
TypeScript
39 lines
921 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Token-balance delta observed in one on-chain candidate transaction.
|
|
*/
|
|
export type Demo3OnchainDexTokenBalanceDelta = {
|
|
/**
|
|
* Token account index in the transaction message when available.
|
|
*/
|
|
accountIndex: number | null,
|
|
/**
|
|
* Token account address resolved from the transaction account keys.
|
|
*/
|
|
accountAddress: string | null,
|
|
/**
|
|
* SPL Token or Token-2022 mint address.
|
|
*/
|
|
mint: string,
|
|
/**
|
|
* Token account owner when Solana RPC exposes it.
|
|
*/
|
|
owner: string | null,
|
|
/**
|
|
* Token program id when Solana RPC exposes it.
|
|
*/
|
|
tokenProgram: string | null,
|
|
/**
|
|
* Raw token amount before the transaction.
|
|
*/
|
|
preAmountRaw: string | null,
|
|
/**
|
|
* Raw token amount after the transaction.
|
|
*/
|
|
postAmountRaw: string | null,
|
|
/**
|
|
* Signed raw delta when calculable.
|
|
*/
|
|
deltaRaw: string | null, };
|