add args to core fact_transactions (#331)

This commit is contained in:
Jack Forgash 2024-06-06 22:34:28 -06:00 committed by GitHub
parent 5ecb01870e
commit ffcb6d1492
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -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 %}

View File

@ -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,

View File

@ -88,6 +88,9 @@ models:
- name: SCRIPT
description: "{{ doc('script') }}"
- name: ARGUMENTS
description: "{{ doc('arguments') }}"
- name: TRANSACTION_RESULT
description: "{{ doc('transaction_result') }}"
tests: