Pinax Logo/Datasets
PolygonAccount Creations

Column Descriptions

for polygon.account_creations

7 rows
NameTypeDescription
accountTEXTAddress of the newly created account
block_dateDATEDate of the block in which the account was created
tx_hashTEXTHash of the transaction that created the account
block_numberNUMBERBlock number in which the account was created
block_timeTIMESTAMP_NTZTimestamp of the block in which the account was created
ordinalNUMBEROrdinal of the account creation within the block
block_hashTEXTHash of the block in which the account was created

Sample Queries

New Account Creation Rate Over Time
Calculates the number of new accounts created per day.
SELECT
  block_date,
  COUNT(*) AS new_accounts
FROM
  polygon.account_creations
GROUP BY
  block_date
ORDER BY
  block_date;
Find Account Creations in a Specific Block
Retrieves all account creations that occurred within a specific block number.
SELECT
  *
FROM
  polygon.account_creations
WHERE
  block_number = 15000000;
Top 10 Blocks with Most Account Creations
Identifies the top 10 blocks with the highest number of account creations.
SELECT
  block_number,
  COUNT(*) AS account_creations
FROM
  polygon.account_creations
GROUP BY
  block_number
ORDER BY
  account_creations DESC
LIMIT
  10;