Across-1.Bridge Transactions (Across)

    -- Q1. Analyze bridge transactions via the Across bridge over the last two weeks. -- What assets are users bridging from Ethereum, and to what chains? -- Across transaction event data is undecoded in the Ethereum core tables. -- Users can use these functions to parse and decode the data: -- regexp_substr_all(SUBSTR(DATA, 3, len(DATA)), '.{64}') AS segmented_data ethereum.public.udf_hex_to_int() -- Hint: A user begins a bridge transaction by calling the deposit function on the SpokePool contract from the origin chain. -- Ethereum SpokePool contract : 0x4D9079Bb4165aeb4084c526a32695dCfd2F77381

    Methodology

    • Look at example Deposit Transaction to 0x4d9079bb4165aeb4084c526a32695dcfd2f77381
      • Example Tx: 0xdcb33cb44b5325c7decf0ff404f422a2ad4abd975dc12c5e2679c1390883a399
    • Find the Decoded Input Data, note destinationChainId uint256 42161
    • Decode data using helper function to find the destination Chain Id.
    • Credit to PineHearst for the IDs https://discord.com/channels/784442203187314689/927120619617804298/988120630522167296
    • Note there only seems to be WETH being bridged, there isn't any other token.

    Analyze bridge transactions via the Across bridge over the last two weeks. What assets are users bridging from Ethereum, and to what chains?

    • As per the analysis only WETH being bridged using Across Bridge to various chains.
    • The most popular chain in terms of Volume is Arbitrum, totally 545.2 WETH.
    • The most popular chain in terms of Frequency is Arbitrum as well, totalling 979 Bridging transactions.
    Loading...
    Loading...
    Loading...
    Loading...