LibCommand
Last updated
Last updated
Field | Description |
---|---|
The getData
function in Solidity is designed to extract and assemble a CommandData
structure from transaction calldata using low-level assembly operations for efficiency. It takes a single uint16
parameter i
, which specifies the starting position in the calldata from where data extraction should begin.
input
output
The getInput
function is a complex and versatile internal function designed for processing a sequence of commands encoded in a CommandData
structure, typically used in a blockchain transaction context. It starts by initializing a dynamic input
byte array and other local variables, including nativeAmount
, selector
, and various counters. The function iterates over a range of command sequences, each identified by a SequenceType
(like NativeAmount
, Selector
, Address
, etc.), and processes each sequence differently based on its type. For instance, it extracts and stores native token amounts, contract function selectors, addresses, and other data into the input
array, adjusting the offset for each entry. The function also handles special cases, such as using the lastAmountOut
as an input or rejecting certain types of transactions (like transferFrom
calls in custom actions). It ensures that the length of the processed sequences matches the expected inputLength
from commandData
, and validates the selector for contract calls. Overall, getInput
is a sophisticated function that dynamically constructs a transaction input from a series of encoded commands, ensuring flexibility and security in executing complex transaction sequences on the blockchain.
Input
Output
the approve function is a utility function within a smart contract to perform an ERC-20 token approval operation. It extracts the token address, spender address, and amount from a byte array and then calls the approve function on the specified ERC-20 token contract.
input
the transferFrom function is a utility function within a smart contract to perform an ERC-20 token transfer from one address to another. It extracts the token address, sender address, recipient address, and amount from a byte array and then calls the transferFrom function on the specified ERC-20 token contract.
input
the transfer function is a utility function within a smart contract to perform an ERC-20 token transfer to a specified address. It extracts the token address, recipient address, and amount from a byte array and then calls the transfer function on the specified ERC-20 token contract.
input
the wrap function is a utility function within a smart contract to convert Ether into Wrapped Ether (WETH). It extracts the WETH contract address and the amount of Ether to be wrapped from a byte array and then calls the deposit function on the WETH contract, sending the specified amount of Ether.
input
the unwrap function is a utility function within a smart contract to convert Wrapped Ether (WETH) back into Ether. It extracts the WETH contract address and the amount of WETH to be unwrapped from a byte array and then calls the withdraw function on the WETH contract.
Input
the balance function is a utility function within a smart contract to query the balance of a specific asset (like an ERC-20 token) held by the contract. It extracts the asset's address from a byte array and then queries the balance of that asset for the contract's address.
Input
the execute function is a central part of a smart contract that needs to perform a variety of operations based on dynamic inputs. It can handle standard ERC-20 operations like approvals and transfers, wrap and unwrap Ether, interact with various DeFi protocols, and make generic contract calls.
Input
Output
Field | Description |
---|---|
Field | Description |
---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
Field | Type | Description |
---|---|---|
A default operation indicating no mathematical operation is to be performed or possibly used as a placeholder.
Represents addition, the operation of adding two numbers together to find their sum.
Represents subtraction, the operation of taking one number away from another to find the difference.
Represents multiplication, the operation of scaling one number by another to find the product.
Represents division, the operation of determining how many times one number is contained within another to find the quotient.
Stands for power, an operation that raises a number to the exponent of another number, essentially multiplying a number by itself a specified number of times.
Likely represents an operation to find the absolute value of a number within a 128-bit context, ensuring the result is positive or zero.
Similar to Abs128
, this likely refers to finding the absolute value of a number within a 256-bit context, which allows for handling larger numbers.
Stands for "shift right", a bitwise operation that shifts all bits in a binary representation of a number to the right by a specified number of positions, effectively dividing the number by a power of two.
Stands for "shift left", a bitwise operation that shifts all bits in a binary representation of a number to the left by a specified number of positions, effectively multiplying the number by a power of two.
This action representa a generic call to a function within a contract.
Represents an approval operation.
Indicates a transfer-from operation.
Represents a direct transfer operation.
This action is used for wrapping tokens, such as converting Ether to Wrapped Ether (WETH).
The opposite of Wrap, this is used for unwrapping tokens, like converting WETH back to Ether.
to check the balance of an account or contract for a specific asset.
Represents an swap operation related to the Uniswap V2 protocol.
For swap operation specific to Uniswap V3.
Indicates swap operation related to Trader Joe V2.1.
Represents swap operation related to the Solidly protocol.
Indicates swap operation related to KyberSwap Classic
Indicates swap operation related to Ambient Protocol.