interface SimulationAssetChange {
    amount: string;
    dollar_value?: string;
    from: string;
    from_before_balance?: string;
    raw_amount: string;
    to: string;
    to_before_balance?: string;
    token_info: AssetTokenInfo;
    type: string;
}

Properties

amount: string

Human-readable amount

Example

"1"
dollar_value?: string

Dollar value of the transfer

Example

"0"
from: string

Source address

Example

"0x0000000000000000000000000000000000000000"
from_before_balance?: string

Balance before transfer (from address)

Example

"0x1278fba2fc8bfd518d"
raw_amount: string

Raw amount in smallest unit (wei, etc.)

Example

"1000000000000000000"
to: string

Destination address

Example

"0x00000000219ab540356cbb839cbe05303d7705fa"
to_before_balance?: string

Balance before transfer (to address)

Example

"0x829b4ec2eed78acb84200"
token_info: AssetTokenInfo

Token information

type: string

Type of asset change

Example

"Transfer"