From 8445fa6e1d46bf68d59848fcbd6a13cc6595743f Mon Sep 17 00:00:00 2001 From: ndhung1104 Date: Mon, 21 Feb 2022 22:04:48 +0700 Subject: [PATCH] add files --- models/core/transactions.sql | 0 models/core/transactions.yml | 39 ++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 models/core/transactions.sql create mode 100644 models/core/transactions.yml diff --git a/models/core/transactions.sql b/models/core/transactions.sql new file mode 100644 index 0000000..e69de29 diff --git a/models/core/transactions.yml b/models/core/transactions.yml new file mode 100644 index 0000000..eb2a66d --- /dev/null +++ b/models/core/transactions.yml @@ -0,0 +1,39 @@ + +version: 2 + +models: + - name: transactions + description: "Near transactions." + + columns: + - name: block_id + description: The block ID. + tests: + - not_null + + - name: tx_id + description: The transaction hash. + tests: + - not_null + + - name: block_timestamp + description: The time the block was minted. + tests: + - not_null + + - name: tx + description: The transaction's information. + tests: + - not_null + + - name: tx_outcome + description: The transaction outcome. + + - name: tx_receipt + description: The transaction receipt. + + - name: tx_receiver + description: The transaction receiver. + + - name: tx_signer + description: The transaction signer.