crypto_edgarToken Creation Info
Updated 2025-06-15Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH TOKEN_INFO AS (
SELECT
BLOCK_TIMESTAMP AS TOKEN_CREATION_TIME,
-- DECODED_LOG:agreementCid AS AGREEMENT_CID,
-- If we include AMOUNT, we should account for the decimals as well
-- DECODED_LOG:amount AS AMOUNT,
DECODED_LOG:emitter AS EMITTER,
DECODED_LOG:ipnftId AS IP_NFT_ID,
DECODED_LOG:moleculesId AS MOLECULES_ID,
DECODED_LOG:name AS NAME,
DECODED_LOG:symbol AS SYMBOL,
DECODED_LOG:tokenContract AS TOKEN_CONTRACT,
ROW_NUMBER() OVER (
ORDER BY
IP_NFT_ID DESC
) AS ROW_NUM
FROM
ethereum.core.ez_decoded_event_logs
WHERE
CONTRACT_ADDRESS = '0x58eb89c69cb389dbef0c130c6296ee271b82f436'
AND BLOCK_TIMESTAMP >= '2023-06-12'
AND EVENT_NAME = 'TokensCreated'
AND TX_SUCCEEDED
ORDER BY
IP_NFT_ID ASC
),
TOKEN_MINTED_SUPPLY_INFO AS (
SELECT
*
FROM
$query('90064744-47be-44e9-85e6-5945b2960786')
WHERE
SYMBOL = 'OVARIA'
)
SELECT
TOKEN_CREATION_TIME,
Auto-refreshes every 24 hours
QueryRunArchived: QueryRun has been archived