Jefferstable only transferred
    Updated 2025-03-30
    with tx_hashes as
    (
    select
    distinct m.tx_hash
    from monad.testnet.fact_event_logs m
    join monad.testnet.fact_transactions t
    on m.tx_hash = t.tx_hash
    where (m.contract_address = '0xed52e0d80f4e7b295df5e622b55eff22d262f6ed' -- include all txs related to the NFT address
    or (m.contract_address = '0x760afe86e5de5fa0ee542fc7b7b713e1c5425701' and m.origin_to_address = '0x224ecb4eae96d31372d1090c3b0233c8310dbbab')) -- include txs that involve a payment for a NFT on Magic Eden
    and m.block_timestamp >= '2025-03-03 18:33:00' -- start of minting phase
    and t.tx_succeeded = TRUE
    ),

    transfers as -- this part decodes hexadecimal values to numeric and make sure only the relevant tx hashes are included
    (
    select
    m.block_timestamp,
    m.tx_hash,
    m.contract_address AS nft_contract,
    m.origin_from_address,
    m.origin_to_address,
    m.topic_0,
    m.topic_1,
    m.topic_2,
    CASE
    when topic_3 = NULL
    then 0
    else TO_NUMERIC(utils.udf_hex_to_int(topic_3)) -- convert tokenid to numeric
    END as token_id,
    CASE
    when m.contract_address = '0x760afe86e5de5fa0ee542fc7b7b713e1c5425701'
    then TO_NUMERIC(utils.udf_hex_to_int(REPLACE(m.data, '0x0000000000000000000000000000000000000000000000', ''))) / POWER(10,18) -- make the hex WMON value numeric
    else 0
    END as data_converted,
    t.value as MON_value,
    t.tx_fee as gas_fee
    Last run: 18 days ago
    ADDRESS
    TOKEN_ID
    1
    0xce76b00587ef06b5feef35b93ad7516fbb6ee0a023
    2
    0x62911e5e9a5a67d9fa5273810cd9021495ce07c326
    3
    0x93c52f9b9038212c72b85fba81e67ed60492833313
    4
    0x19c88f6b5e5a274eace401b7699fd6b6f2d67a6515
    5
    0xeb2a00b37058a398fc84b6b6ae8af478b5478c0122
    6
    0xb7e6d11470146c56580d58234133636deddb9a5e33
    7
    0x00c4da4ff8d2b5f71ce8d8bccaf4217b0e9e74972
    8
    0x0253ba3af2fa2e5553bbb4575716379fff06855773
    9
    0xcaad7c03c44520e6d1d8cd3e6fd5daad4d7e8d40189
    10
    0xec0f6856478acbc5b787a2ae4159daef89225932120
    11
    0x634bc36b7c5f8c71dc6a946d50f92e0c67f6306b114
    12
    0xb090ddb1603e4e1c33c832f8f055c6fc016abf3279
    13
    0xedcd33a9c1a6cff9a887e9054bb5933002ca13cc262
    14
    0x0405313c22750208f92a1b5131b4f91b0291c70b329
    15
    0x2a69be402382ed5b36e5d092838dea6d2ce6450b330
    16
    0xab3a112a3854f225875e75d705bc4a20140adfa6261
    17
    0xdd0b5a266e13bbea36212575129480d787b7105f196
    18
    0x950e5b9c63084577db86b6bcceb77316b456e394199
    19
    0x53f205d75bd561a55b73595c21d779ff25f663f2213
    20
    0x3b580ee7a7d54e9b657d77f5f64bc44ce3f03b4c268
    22
    1KB
    112s