Add 3 Mainnets 19-21 to Blocks (#182)

This commit is contained in:
Jack Forgash 2023-09-05 16:44:07 -06:00 committed by GitHub
parent aca459a005
commit f3f362ef54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 0 deletions

View File

@ -48,3 +48,15 @@ jobs:
- name: Run DBT History Jobs - Mainnet22
run: |
dbt run -s 1+streamline__get_blocks_history --vars '{"STREAMLINE_INVOKE_STREAMS": True, "node_url": "access-001.mainnet22.nodes.onflow.org:9000", "start_block": 47169687, "end_block": 55114466}'
- name: Run DBT History Jobs - Mainnet21
run: |
dbt run -s 1+streamline__get_blocks_history --vars '{"STREAMLINE_INVOKE_STREAMS": True, "node_url": "access-001.mainnet21.nodes.onflow.org:9000", "start_block": 44950207, "end_block": 47169686}'
- name: Run DBT History Jobs - Mainnet20
run: |
dbt run -s 1+streamline__get_blocks_history --vars '{"STREAMLINE_INVOKE_STREAMS": True, "node_url": "access-001.mainnet20.nodes.onflow.org:9000", "start_block": 40171634, "end_block": 44950206}'
- name: Run DBT History Jobs - Mainnet19
run: |
dbt run -s 1+streamline__get_blocks_history --vars '{"STREAMLINE_INVOKE_STREAMS": True, "node_url": "access-001.mainnet19.nodes.onflow.org:9000", "start_block": 35858811, "end_block": 40171633}'

View File

@ -31,3 +31,5 @@ WHERE
block_height BETWEEN {{ var('start_block', Null) }} AND {{ var('end_block', Null) }}
ORDER BY
block_height ASC
LIMIT
1000000

View File

@ -74,3 +74,5 @@ WHERE
AND {{ var('end_block', Null) }}
ORDER BY
block_height ASC
LIMIT
1000000

View File

@ -41,3 +41,5 @@ WHERE
block_height BETWEEN {{ var('start_block', Null) }} AND {{ var('end_block', Null) }}
ORDER BY
block_height ASC
LIMIT
1000000

View File

@ -41,3 +41,5 @@ WHERE
block_height BETWEEN {{ var('start_block', Null) }} AND {{ var('end_block', Null) }}
ORDER BY
block_height ASC
LIMIT
1000000