mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 14:22:06 +00:00
* flow evm init * flow evm testnet - blocks * deploy dev udfs, update typo * send block height as hex * dev limit * use stg external table * some links * add query to side doc * upd external tbl to stg & testnet * silver and evm txs * testnet silver models pt1 * testnet events final, decode hash udf * udf get evm chainhead * upd resource list * new udf. receipts pipeline. upd testnet model cols. expand readme * receipts silver * traces * vault * reorg to evm dir * rm testnet, blocks lookback * lookbacks, move qualify * macro and align naming * del testnet, reset namespace to gen * silver_evm - receipts and txs * core_evm fact_blocks & fact_transactions * fix vault path in get blocks. Logs v1 (need sample) * core_evm fact_logs * CR updates * del readme and add workflow * upd vault path, batch size * incr logic on modified to core_evm * use local utils.udf, add blockNumber col to complete blocks check * rm col * correct _invocation_id * upd nv csv * incr batch limit due to late start * add evm tag to model run
21 lines
703 B
YAML
21 lines
703 B
YAML
version: 2
|
|
|
|
macros:
|
|
- name: run_create_udf_decode_hash_array
|
|
description: |
|
|
This macro creates a UDF that takes in a bytearray, parses out the value, and returns a decoded hash.
|
|
arguments:
|
|
- name: raw_array
|
|
description: The bytearray to be decoded.
|
|
type: array
|
|
return_type: string
|
|
|
|
- name: run_create_udf_get_evm_chainhead
|
|
description: |
|
|
This macro creates a UDF that returns chainhead for the Flow EVM execution environment. This takes an optional argument NETWORK and accepts either "testnet" or "mainnet".
|
|
arguments:
|
|
- name: network
|
|
description: The network to query for chainhead.
|
|
type: string
|
|
return_type: string
|