nat_nomad2023-04-21 11:29 AM
Updated 2023-04-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with blockchain_links AS (
select 'Ethereum' as blockchain, 'https://etherscan.io/' as link_prefix
union all
select 'Bnb', 'https://bscscan.com/'
union all
select 'Polygon', 'https://polygonscan.com/'
union all
select 'Gnosis', 'https://gnosisscan.io/'
union all
select 'Arbitrum', 'https://arbiscan.io/'
union all
select 'Avalanche_c', 'https://avascan.info/blockchain/c/'
union all
select 'Optimism', 'https://optimistic.etherscan.io/'
union all
select 'Fantom', 'https://ftmscan.com/'
)
select * from blockchain_links
Run a query to Download Data