antelope-v0.2.4
DenisCarriere
released this
09 Sep 17:59
·
253 commits
to main
since this release
What's Changed
New Contributors
Full Changelog: v0.2.3...antelope-v0.2.4
SQL
CREATE TABLE IF NOT EXISTS auth_sequences
(
-- clock --
block_time DateTime64(3, 'UTC'),
block_number UInt64,
block_hash String,
block_date Date,
-- transaction --
tx_hash String,
-- action --
action_index UInt32,
-- auth_sequence --
account_name String,
sequence UInt64
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (block_date, block_number)
ORDER BY (block_date, block_number, tx_hash, action_index, account_name, sequence)
COMMENT 'Antelope action authorization sequences';