mirror of
https://github.com/FlipsideCrypto/fsc-utils.git
synced 2026-02-06 10:56:49 +00:00
17 lines
554 B
SQL
17 lines
554 B
SQL
{% macro create_streamline_udfs() %}
|
|
{% if var("UPDATE_UDFS_AND_SPS") %}
|
|
{% do run_query("CREATE SCHEMA IF NOT EXISTS streamline") %}
|
|
|
|
{{ create_udf_bulk_rest_api_v2() }}
|
|
{% endif %}
|
|
{% endmacro %}
|
|
|
|
{% macro create_evm_streamline_udfs() %}
|
|
{% if var("UPDATE_UDFS_AND_SPS") %}
|
|
{% do run_query("CREATE SCHEMA IF NOT EXISTS streamline") %}
|
|
|
|
{{ create_udf_bulk_rest_api_v2() }}
|
|
{{ create_udf_bulk_decode_logs() }}
|
|
{{ create_udf_bulk_decode_traces() }}
|
|
{% endif %}
|
|
{% endmacro %} |