LogoLogo
  • 🖖Introduction
  • Products
    • 💫Cross Chain Swaps
      • Core Solutions and Advantages
      • Single Chain Swaps/Meta-aggregation
    • 👾Bridge
      • Direct Staking
      • Partnership Request
    • 🚀Gas Transfer
    • 💰Farm
      • Stablecoin Pools
      • ITP Farms
    • 🎇ITP Token
      • Contract Addresses
  • Learn More
    • 🤝Integrations
      • LayerZero
      • Circle CCTP
      • Chainlink CCIP
    • 🪐Scalability
      • Interchain Optimal Swaps
      • Automated Arbitrage Pool
      • Interchain Order Book
      • API SDK
      • Cross-Chain DEX Aggregator
    • 👽Socials and Community
    • 🔗Supported Chains
  • Rocket Science
    • 🛰️Technical Implementation
      • Diagrams and Charts
      • Swaps
      • Cross-Chain Message
      • Slippage Optimization
      • Destination Chain
      • Stablecoin Liquidity
      • Variable Token and Variable Balance
      • Events
      • Swap on the Same Network
      • Fee Distribution
      • Manager Role
    • 📃Contracts
    • 🛡️Audits
  • Guides
    • Cross-Chain Trading
    • Bridge
    • Gas Transfer
    • Assets Refund
    • Explorer
    • Testnet Bridge
  • TERMS & PRIVACY
    • Terms of Use
    • Privacy Policy
Powered by GitBook
On this page
  1. Rocket Science
  2. Technical Implementation

Events

The ActionExecutor contract produces events that are used to track the status of a transaction.

event ActionSource(
        uint256 indexed actionId,
        uint256 indexed targetChainId,
        address indexed sourceSender,
        address targetRecipient,
        uint256 gatewayType,
        address sourceToken,
        address targetToken,
        uint256 amount,
        uint256 fee,
        uint256 timestamp
    );

    event ActionTarget(
        uint256 indexed actionId,
        uint256 indexed sourceChainId,
        bool indexed isSuccess
    );

    event ActionFallback(
        uint256 indexed actionId,
        uint256 indexed targetChainId
    );
PreviousVariable Token and Variable BalanceNextSwap on the Same Network

Last updated 1 year ago

🛰️