Drsimoncreate-element
Updated 2023-05-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
select * --DISTINCT NAME--platform_name
from crosschain.core.dim_contracts ---polygon.core.ez_nft_sales --ethereum.core.ez_nft_sales
where name like 'element'
_________________________________
select * --DISTINCT NAME--platform_name
from crosschain.core.address_labels
where
PROJECT_NAME like 'element' AND LABEL_TYPE LIKE 'dapp'
------------------------------------
select --DISTINCT NAME--platform_name
*
from crosschain.core.dim_contracts
where
NAME like 'element' OR SYMBOL LIKE 'Element'
-----------------------
select --DISTINCT NAME--platform_name
*
from polygon.core.dim_contracts
where
NAME like 'element' OR SYMBOL LIKE 'Element'
----------------------
select --DISTINCT NAME--platform_name
*
from avalanche.core.dim_labels
where
PROJECT_NAME like 'element'-- OR SYMBOL LIKE 'Element'
------------
select --DISTINCT NAME--platform_name
*
from bsc.core.dim_contracts
where
NAME like 'element' OR SYMBOL LIKE 'Element'
Run a query to Download Data