mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 13:26:44 +00:00
add script field to fact transactions (#330)
* add script field * add to yml
This commit is contained in:
parent
f9e451debd
commit
5ecb01870e
@ -17,6 +17,7 @@ WITH chainwalkers AS (
|
||||
authorizers,
|
||||
count_authorizers,
|
||||
gas_limit,
|
||||
NULL AS script,
|
||||
transaction_result,
|
||||
tx_succeeded,
|
||||
error_msg,
|
||||
@ -43,6 +44,7 @@ streamline AS (
|
||||
authorizers,
|
||||
count_authorizers,
|
||||
gas_limit,
|
||||
script,
|
||||
OBJECT_CONSTRUCT(
|
||||
'error',
|
||||
error_message,
|
||||
@ -86,6 +88,7 @@ SELECT
|
||||
authorizers,
|
||||
count_authorizers,
|
||||
gas_limit,
|
||||
script,
|
||||
transaction_result,
|
||||
tx_succeeded,
|
||||
error_msg,
|
||||
|
||||
@ -85,6 +85,9 @@ models:
|
||||
column_type_list:
|
||||
- NUMBER
|
||||
|
||||
- name: SCRIPT
|
||||
description: "{{ doc('script') }}"
|
||||
|
||||
- name: TRANSACTION_RESULT
|
||||
description: "{{ doc('transaction_result') }}"
|
||||
tests:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user