mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 13:26:44 +00:00
add args to core fact_transactions (#331)
This commit is contained in:
parent
5ecb01870e
commit
ffcb6d1492
@ -1,5 +1,5 @@
|
||||
{% docs arguments %}
|
||||
|
||||
The arguments included in the transaction body.
|
||||
The arguments passed into the Cadence script when the transaction was submitted.
|
||||
|
||||
{% enddocs %}
|
||||
|
||||
@ -18,6 +18,7 @@ WITH chainwalkers AS (
|
||||
count_authorizers,
|
||||
gas_limit,
|
||||
NULL AS script,
|
||||
NULL AS arguments,
|
||||
transaction_result,
|
||||
tx_succeeded,
|
||||
error_msg,
|
||||
@ -45,6 +46,7 @@ streamline AS (
|
||||
count_authorizers,
|
||||
gas_limit,
|
||||
script,
|
||||
arguments,
|
||||
OBJECT_CONSTRUCT(
|
||||
'error',
|
||||
error_message,
|
||||
@ -89,6 +91,7 @@ SELECT
|
||||
count_authorizers,
|
||||
gas_limit,
|
||||
script,
|
||||
arguments,
|
||||
transaction_result,
|
||||
tx_succeeded,
|
||||
error_msg,
|
||||
|
||||
@ -88,6 +88,9 @@ models:
|
||||
- name: SCRIPT
|
||||
description: "{{ doc('script') }}"
|
||||
|
||||
- name: ARGUMENTS
|
||||
description: "{{ doc('arguments') }}"
|
||||
|
||||
- name: TRANSACTION_RESULT
|
||||
description: "{{ doc('transaction_result') }}"
|
||||
tests:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user