Skip to content

Commit

Permalink
feat: create gmp tracker event interface
Browse files Browse the repository at this point in the history
  • Loading branch information
SGiaccobasso committed Sep 10, 2024
1 parent febcd9f commit 02f4db3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions contracts/interfaces/IAxelarGMPTracker.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IAxelarGMPTracker {
event GMPTracker(
string sourceChain,
string destinationChain,
string sourceAddress,
string destinationAddress,
string tokenAddress,
uint256 amount
uint256 decimals
);
}

0 comments on commit 02f4db3

Please sign in to comment.