For the complete documentation index, see llms.txt. This page is also available as Markdown.

ReceivedTokenAmount

Git Source

Title: ReceivedTokenAmount

Details about the amount of a token received from an execution.

struct ReceivedTokenAmount {
address token;
uint256 expected;
uint256 surplus;
}

Properties

Name
Type
Description

token

address

The address of the token.

expected

uint256

The expected amount of the token to be received.

surplus

uint256

The surplus amount of the token received (i.e. amount received - expected)

Last updated

Was this helpful?