Skip to content

Commit

Permalink
chore: minor updates to transfer interface
Browse files Browse the repository at this point in the history
  • Loading branch information
canhtrinh committed Sep 24, 2024
1 parent 586d3fd commit 4538740
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions contracts/interfaces/IAxelarGMPTransfer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface IInterchainTransferSent {
string destinationContractAddress,
bytes recipient,
address token,
uint256 amount,
uint256 amount
);
}

Expand All @@ -35,17 +35,19 @@ interface IInterchainTransferSent {
interface IInterchainTransferReceived {
/**
* @dev Emitted when an interchain transfer is received, providing details for volume tracking.
* @param sender The address of the caller that initiated the transfer on the source chain.
* @param sourceChain The Axelar chain identifier of the source chain.
* @param sourceAddress The address of the contract that initiated the transfer on the source chain.
* @param sender The address of the sender in case it is different from the source contract address
* @param recipient The address of the final recipient of the transferred assets on the destination chain.
* @param token The address of the token contract on the destination chain.
* @param amount The amount (in atomic units) of tokens received.
*/
event InterchainTransferReceived(
string sender,
string sourceChain,
string sourceAddress,
bytes sender,
bytes recipient,
address token,
uint256 amount,
uint256 amount
);
}

0 comments on commit 4538740

Please sign in to comment.