Pinax Logo/Datasets
EOSPerm Ops

Column Descriptions

for eos.perm_ops

20 rows
NameTypeDescription
accounts_weightARRAY
idNUMBER
keys_public_keyARRAY
nameTEXT
block_dateDATE
tx_successBOOLEAN
operationTEXT
parent_idNUMBER
keys_weightARRAY
thresholdNUMBER
ownerTEXT
tx_hashTEXT
wait_secARRAY
action_indexNUMBER
operation_codeNUMBER
wait_weightARRAY
block_numberNUMBER
block_hashTEXT
block_timeTIMESTAMP_NTZ
accountsARRAY

Sample Queries

Find Permissions for a Specific Account
Retrieves all permission changes related to a specific account
SELECT
  *
FROM
  eos.perm_ops
WHERE
  owner = 'someaccount';
Most Common Permission Changes
Identifies the most common types of permission operations
SELECT
  operation,
  COUNT(*) AS operation_count
FROM
  eos.perm_ops
GROUP BY
  operation
ORDER BY
  operation_count DESC
LIMIT
  10;
Accounts with Multiple Permission Changes in a Block
Finds accounts that had multiple permission changes within the same block
SELECT
  block_number,
  owner,
  COUNT(*) AS changes
FROM
  eos.perm_ops
GROUP BY
  block_number,
  owner
HAVING
  changes > 1
ORDER BY
  changes DESC;