TypeAlias.KeybanAssetTransfer
type KeybanAssetTransfer: {
decimals: number | null;
from: {
id: string;
} | null;
id: string;
nft: {
collection: {
decimals: number | null;
iconUrl: string | null;
id: string;
name: string | null;
symbol: string | null;
type: string;
} | null;
id: string;
metadata: any;
tokenId: string;
} | null;
to: {
id: string;
} | null;
token: {
decimals: number | null;
iconUrl: string | null;
id: string;
name: string | null;
symbol: string | null;
type: string;
} | null;
transaction: {
blockHash: string;
blockNumber: string;
date: string;
fees: string;
gasPrice: string;
gasUsed: string;
id: string;
success: boolean;
} | null;
type: string;
value: string;
};
Type declaration
Name | Type |
---|---|
decimals | number | null |
from | { id : string ; } | null |
id | string |
nft | { collection : { decimals : number | null ; iconUrl : string | null ; id : string ; name : string | null ; symbol : string | null ; type : string ; } | null ; id : string ; metadata : any ; tokenId : string ; } | null |
to | { id : string ; } | null |
token | { decimals : number | null ; iconUrl : string | null ; id : string ; name : string | null ; symbol : string | null ; type : string ; } | null |
transaction | { blockHash : string ; blockNumber : string ; date : string ; fees : string ; gasPrice : string ; gasUsed : string ; id : string ; success : boolean ; } | null |
type | string |
value | string |