Skip to content

Commit

Permalink
fix: PRT - Add generic parser for Near tx (#1809)
Browse files Browse the repository at this point in the history
* Add generic parser for near tx

* Update the parsers
  • Loading branch information
shleikes authored Dec 1, 2024
1 parent 04db676 commit 48187b3
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions cookbook/specs/near.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,17 @@
"hanging_api": true
},
"extra_compute_units": 0,
"timeout_ms": 10000
"timeout_ms": 10000,
"parsers": [
{
"parse_path": ".params.tx_hash",
"parse_type": "BLOCK_HASH"
},
{
"parse_path": ".params.[0]",
"parse_type": "BLOCK_HASH"
}
]
},
{
"name": "EXPERIMENTAL_tx_status",
Expand All @@ -357,7 +367,17 @@
"subscription": false,
"stateful": 0
},
"extra_compute_units": 0
"extra_compute_units": 0,
"parsers": [
{
"parse_path": ".params.tx_hash",
"parse_type": "BLOCK_HASH"
},
{
"parse_path": ".params.[0]",
"parse_type": "BLOCK_HASH"
}
]
},
{
"name": "EXPERIMENTAL_receipt",
Expand Down

0 comments on commit 48187b3

Please sign in to comment.