-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.yaml
1156 lines (1145 loc) · 45 KB
/
queries.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
agg:
- src: flipside
chain: solana
query: >
with tx as (
-- Get txn data
select
date(date_trunc('{{level}}' , block_timestamp)) dt
, tx_id
, instructions
, signers[0] address
from solana.core.fact_transactions
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and succeeded = 1
),
p as (
-- Expload programs for txn
select
tx_id
, e.value:programId programid
from tx,
Table(Flatten(tx.instructions)) e
where programid not in ('ComputeBudget111111111111111111111111111111','Memo1UhkJRfHyvLMcVucJwxXeuD728EqVDDwQDxFMNo','MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr','KeccakSecp256k11111111111111111111111111111') -- solana internal contracts
),
pl as (
-- Get program names & types
select distinct
tx_id
, case when programid in ('TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA','ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL','11111111111111111111111111111111') then 'TokenProgram' else programid end programid
, case when l.label = 'solana' then null else l.label end app_name
, case when programid = 'Stake11111111111111111111111111111111111111' then 'staking'
when l.label = 'solana' then null
else l.label_type end tx_type
from p
left join solana.core.dim_labels l
on p.programid = l.address
),
pa as (
-- Reaggregate programs per txn
select
tx_id
, listagg(programid, ', ') within group (order by programid desc) programs
, listagg(app_name, ', ') within group (order by programid desc) app_name
, listagg(tx_type, ', ') within group (order by programid desc) tx_type
from pl
group by 1
),
l as (
-- Get token and NFT names
select *
from
(
-- Get token names
select
token_address address
, upper(symbol) address_name
, 'token' label_subtype
from solana.core.dim_tokens
group by 1,2,3
)
union all
(
-- Get NFT names
select
contract_address address
, contract_name address_name
, 'nft' label_subtype
from solana.core.dim_nft_metadata
group by 1,2,3
)
),
d as (
-- Join txns to aggregate program data and transfer data
select distinct
tx.dt
, tx.tx_id tx_hash
, tx.address wallet_address
, case
when pa.programs like 'TokenProgram, %' then replace(pa.programs,'TokenProgram, ','')
when pa.programs like '%, TokenProgram%' then replace(pa.programs,', TokenProgram','')
when pa.programs = 'TokenProgram' then 'n/a'
else pa.programs end app_address
, case
when pa.programs = 'TokenProgram' then 'n/a'
when app_name = '' then null
else app_name end app_name
, case
when pa.programs = 'TokenProgram' and tf.mint is null then 'nft/token'
when pa.programs = 'TokenProgram' then 'transfer'
when tx_type = '' then 'unknown'
else tx_type end app_type
, case
when tf.mint is null then 'n/a'
else tf.mint end asset_address
, case
when tf.mint is null then 'no assets transferred'
else l.address_name end asset_name
, case
when l.label_subtype is not null then l.label_subtype
when tf.mint is null then 'n/a'
-- when tf.mint is not null then 'nft/token'
else 'unknown' end asset_type
from tx
left join pa
on tx.tx_id = pa.tx_id
left join solana.core.fact_transfers tf
on tx.tx_id = tf.tx_id
and date(tf.block_timestamp) >= date('{{start_dt}}')
and date(tf.block_timestamp) <= date('{{end_dt}}')
left join l
on tf.mint = l.address
)
select
dt
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
, count(distinct app_address) app_ct
, count(distinct asset_address) asset_ct
from d
group by 1
order by tx_ct desc
- src: bigquery
chain: polygon
query: >
with t as (
-- Get all transactions
select
`hash` tx_hash
, date(date_trunc(block_timestamp, {{level}})) dt
, from_address wallet_address
, to_address
, value
from `public-data-finance.crypto_polygon.transactions`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and receipt_status = 1
),
tf as (
-- Get all asset transfers
select *
from
(
-- Get matic transfers
select tx_hash, '0x' asset_address, '' value
from t
where value > 0
)
union all
(
-- Get non-matic transfers
select distinct
transaction_hash tx_hash
, token_address asset_address
, value
from `public-data-finance.crypto_polygon.token_transfers`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
)
),
c as (
-- Get contracts w/ address, name, and type
select
contracts.address
, coalesce(m.name, al.name, cl.address_name, null) name
, coalesce(m.type, case when al.typ is null then null else al.typ || ' asset' end, cl.label_type, null) type
from `public-data-finance.crypto_polygon.contracts` contracts -- contract addresses from gcp
left join
(
SELECT * FROM UNNEST([STRUCT<address STRING, name STRING, type STRING>
('0x2791bca1f2de4661ed88a30c99a7a9449aa84174','USDC', 'token asset'),
('0xc2132d05d31c914a87c6611c10748aeb04b58e8f','USDT','token asset'),
('0x8f3cf7ad23cd3cadbd9735aff958023239c6a063','DAI','token asset'),
('0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6','WBTC','token asset'),
('0x00000000006c3852cbef3e08e8df289169ede581','OpenSea','nft')])
) m -- manual labels for popular contracts
on contracts.address = m.address
left join `primo-data-338518.blockchain_data.asset_labels` al -- asset labels from chainbase
on contracts.address = al.contract_address
and al.chain = 'polygon'
left join `primo-data-338518.blockchain_data.contract_labels` cl -- contract labels from flipside
on contracts.address = cl.address
and cl.chain = 'polygon'
),
d as (
-- List of every transaction w/ primary contract (app) and assets transferred
select distinct
t.dt
, t.tx_hash
, t.wallet_address
, case
when c.type like '%asset' then 'n/a'
when c.address is null and t.value > 0 then 'n/a'
when c.address is null then 'unknown'
else c.address end app_address
, case
when c.type like '%asset' then 'n/a'
when c.address is null and t.value > 0 then 'n/a'
when c.address is null then 'unknown'
else c.name end app_name
, case
when c.address is null and t.value > 0 then 'transfer'
when c.address is null then 'unknown'
when c.type like '%asset' and tf.asset_address is not null then 'transfer'
when c.type like '%asset' then 'nft/token'
when c.type is null then 'unknown'
else c.type end app_type
, case
when tf.asset_address is null then 'n/a'
else tf.asset_address end asset_address
, case
when tf.asset_address is null then 'no assets transferred'
when tf.asset_address = '0x' then 'MATIC'
else a.name end asset_name
, case
when tf.asset_address is null then 'n/a'
when tf.asset_address = '0x' then 'token'
when a.type is null then 'unknown'
else replace(a.type, ' asset','') end asset_type
, case when a.type = 'nft asset' then tf.value else '' end asset_id
from t
left join tf
on tf.tx_hash = t.tx_hash
left join c
on t.to_address = c.address
left join c a
on tf.asset_address = a.address
)
select
dt
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
, count(distinct app_address) app_ct
, count(distinct (asset_address || asset_id)) asset_ct
from d
group by 1
order by tx_ct desc
- src: bigquery
chain: bitcoin
query: >
with btc as (
SELECT
transactions.hash as tx_hash
, date(date_trunc(transactions.block_timestamp, {{level}})) dt
,inputs.addresses
FROM `bigquery-public-data.crypto_bitcoin.transactions` as transactions,
transactions.inputs as inputs
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and date(block_timestamp_month) = date('{{start_mth_dt}}')
),
btc_d as (
select
btc.dt
, btc.tx_hash
, a wallet_address
, 'n/a' app
, 'transfer' app_type
, 'BTC' asset
, 'token' asset_type
from btc,
unnest(addresses) a
)
select
dt
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
, count(distinct app) app_ct
, count(distinct asset) asset_ct
from btc_d
group by 1
- src: bigquery
chain: ethereum
query: >
with e_t as (
-- Get all transactions
select
`hash` tx_hash
, date(date_trunc(block_timestamp, {{level}})) dt
, from_address wallet_address
, to_address
, value
from `bigquery-public-data.crypto_ethereum.transactions`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and receipt_status = 1
),
e_tf as (
-- Get all asset transfers
select *
from
(
-- Get eth transfers
select tx_hash, '0x' asset_address, '' value
from e_t
where value > 0
)
union all
(
-- Get non-eth transfers
select distinct
transaction_hash tx_hash
, token_address asset_address
, value
from `bigquery-public-data.crypto_ethereum.token_transfers`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
)
),
e_c as (
-- Get contracts w/ address, name, and type
select
e_contracts.address
, coalesce(e_m.name, e_al.name, e_cl.address_name, null) name
, coalesce(e_m.type, case when e_al.typ is null then null else e_al.typ || ' asset' end, e_cl.label_type, null) type
from `bigquery-public-data.crypto_ethereum.contracts` e_contracts -- contract addresses from gcp
left join
(
SELECT * FROM UNNEST([STRUCT<address STRING, name STRING, type STRING>
('0x2791bca1f2de4661ed88a30c99a7a9449aa84174','USDC', 'token asset'),
('0xc2132d05d31c914a87c6611c10748aeb04b58e8f','USDT','token asset'),
('0x8f3cf7ad23cd3cadbd9735aff958023239c6a063','DAI','token asset'),
('0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6','WBTC','token asset'),
('0x00000000006c3852cbef3e08e8df289169ede581','OpenSea','nft')])
) e_m -- manual labels for popular contracts
on e_contracts.address = e_m.address
left join `primo-data-338518.blockchain_data.asset_labels` e_al -- asset labels from chainbase
on e_contracts.address = e_al.contract_address
and e_al.chain = 'ethereum'
left join `primo-data-338518.blockchain_data.contract_labels` e_cl -- contract labels from flipside
on e_contracts.address = e_cl.address
and e_cl.chain = 'ethereum'
),
e_d as (
-- List of every transaction w/ primary contract (app) and assets transferred
select distinct
e_t.dt
, e_t.tx_hash
, e_t.wallet_address
, case
when e_c.type like '%asset' then 'n/a'
when e_c.address is null and e_t.value > 0 then 'n/a'
when e_c.address is null then 'unknown'
else e_c.address end app_address
, case
when e_c.type like '%asset' then 'n/a'
when e_c.address is null and e_t.value > 0 then 'n/a'
when e_c.address is null then 'unknown'
else e_c.name end app_name
, case
when e_c.address is null and e_t.value > 0 then 'transfer'
when e_c.address is null then 'unknown'
when e_c.type like '%asset' and e_tf.asset_address is not null then 'transfer'
when e_c.type like '%asset' then 'nft/token'
when e_c.type is null then 'unknown'
else e_c.type end app_type
, case
when e_tf.asset_address is null then 'n/a'
else e_tf.asset_address end asset_address
, case
when e_tf.asset_address is null then 'no assets transferred'
when e_tf.asset_address = '0x' then 'ETH'
else e_a.name end asset_name
, case
when e_tf.asset_address is null then 'n/a'
when e_tf.asset_address = '0x' then 'token'
when e_a.type is null then 'unknown'
else replace(e_a.type, ' asset','') end asset_type
, case when e_a.type = 'nft asset' then e_tf.value else '' end asset_id
from e_t
left join e_tf
on e_tf.tx_hash = e_t.tx_hash
left join e_c
on e_t.to_address = e_c.address
left join e_c e_a
on e_tf.asset_address = e_a.address
)
select
dt
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
, count(distinct app_address) app_ct
, count(distinct (asset_address || asset_id)) asset_ct
from e_d
group by 1
order by tx_ct desc
agg_apps:
- src: flipside
chain: solana
query: >
with tx as (
-- Get txn data
select
date(date_trunc('{{level}}' , block_timestamp)) dt
, tx_id
, instructions
, signers[0] address
from solana.core.fact_transactions
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and succeeded = 1
),
p as (
-- Expload programs for txn
select
tx_id
, e.value:programId programid
from tx,
Table(Flatten(tx.instructions)) e
where programid not in ('ComputeBudget111111111111111111111111111111','Memo1UhkJRfHyvLMcVucJwxXeuD728EqVDDwQDxFMNo','MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr','KeccakSecp256k11111111111111111111111111111') -- solana internal contracts
),
pl as (
-- Get program names & types
select distinct
tx_id
, case when programid in ('TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA','ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL','11111111111111111111111111111111') then 'TokenProgram' else programid end programid
, case when l.label = 'solana' then null else l.label end app_name
, case when programid = 'Stake11111111111111111111111111111111111111' then 'staking'
when l.label = 'solana' then null
else l.label_type end tx_type
from p
left join solana.core.dim_labels l
on p.programid = l.address
),
pa as (
-- Reaggregate programs per txn
select
tx_id
, listagg(programid, ', ') within group (order by programid desc) programs
, listagg(app_name, ', ') within group (order by programid desc) app_name
, listagg(tx_type, ', ') within group (order by programid desc) tx_type
from pl
group by 1
),
l as (
-- Get token and NFT names
select *
from
(
-- Get token names
select
token_address address
, upper(symbol) address_name
, 'token' label_subtype
from solana.core.dim_tokens
group by 1,2,3
)
union all
(
-- Get NFT names
select
contract_address address
, contract_name address_name
, 'nft' label_subtype
from solana.core.dim_nft_metadata
group by 1,2,3
)
),
d as (
-- Join txns to aggregate program data and transfer data
select distinct
tx.dt
, tx.tx_id tx_hash
, tx.address wallet_address
, case
when pa.programs like 'TokenProgram, %' then replace(pa.programs,'TokenProgram, ','')
when pa.programs like '%, TokenProgram%' then replace(pa.programs,', TokenProgram','')
when pa.programs = 'TokenProgram' then 'n/a'
else pa.programs end app_address
, case
when pa.programs = 'TokenProgram' then 'n/a'
when app_name = '' then null
else app_name end app_name
, case
when pa.programs = 'TokenProgram' and tf.mint is null then 'nft/token'
when pa.programs = 'TokenProgram' then 'transfer'
when tx_type = '' then 'unknown'
else tx_type end app_type
, case
when tf.mint is null then 'n/a'
else tf.mint end asset_address
, case
when tf.mint is null then 'no assets transferred'
else l.address_name end asset_name
, case
when l.label_subtype is not null then l.label_subtype
when tf.mint is null then 'n/a'
-- when tf.mint is not null then 'nft/token'
else 'unknown' end asset_type
from tx
left join pa
on tx.tx_id = pa.tx_id
left join solana.core.fact_transfers tf
on tx.tx_id = tf.tx_id
and date(tf.block_timestamp) >= date('{{start_dt}}')
and date(tf.block_timestamp) <= date('{{end_dt}}')
left join l
on tf.mint = l.address
)
select
dt
, coalesce(app_name, app_address) app
, app_type
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
from d
group by 1,2,3
- src: bigquery
chain: polygon
query: >
with t as (
-- Get all transactions
select
`hash` tx_hash
, date(date_trunc(block_timestamp, {{level}})) dt
, from_address wallet_address
, to_address
, value
from `public-data-finance.crypto_polygon.transactions`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and receipt_status = 1
),
tf as (
-- Get all asset transfers
select *
from
(
-- Get matic transfers
select tx_hash, '0x' asset_address
from t
where value > 0
)
union all
(
-- Get non-matic transfers
select distinct
transaction_hash tx_hash
, token_address asset_address
from `public-data-finance.crypto_polygon.token_transfers`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
)
),
c as (
-- Get contracts w/ address, name, and type
select
contracts.address
, coalesce(m.name, al.name, cl.address_name, null) name
, coalesce(m.type, case when al.typ is null then null else al.typ || ' asset' end, cl.label_type, null) type
from `public-data-finance.crypto_polygon.contracts` contracts -- contract addresses from gcp
left join
(
SELECT * FROM UNNEST([STRUCT<address STRING, name STRING, type STRING>
('0x2791bca1f2de4661ed88a30c99a7a9449aa84174','USDC', 'token asset'),
('0xc2132d05d31c914a87c6611c10748aeb04b58e8f','USDT','token asset'),
('0x8f3cf7ad23cd3cadbd9735aff958023239c6a063','DAI','token asset'),
('0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6','WBTC','token asset'),
('0x00000000006c3852cbef3e08e8df289169ede581','OpenSea','nft')])
) m -- manual labels for popular contracts
on contracts.address = m.address
left join `primo-data-338518.blockchain_data.asset_labels` al -- asset labels from chainbase
on contracts.address = al.contract_address
and al.chain = 'polygon'
left join `primo-data-338518.blockchain_data.contract_labels` cl -- contract labels from flipside
on contracts.address = cl.address
and cl.chain = 'polygon'
),
d as (
-- List of every transaction w/ primary contract (app) and assets transferred
select distinct
t.dt
, t.tx_hash
, t.wallet_address
, case
when c.type like '%asset' then 'n/a'
when c.address is null and t.value > 0 then 'n/a'
when c.address is null then 'unknown'
else c.address end app_address
, case
when c.type like '%asset' then 'n/a'
when c.address is null and t.value > 0 then 'n/a'
when c.address is null then 'unknown'
else c.name end app_name
, case
when c.address is null and t.value > 0 then 'transfer'
when c.address is null then 'unknown'
when c.type like '%asset' and tf.asset_address is not null then 'transfer'
when c.type like '%asset' then 'nft/token'
when c.type is null then 'unknown'
else c.type end app_type
, case
when tf.asset_address is null then 'n/a'
else tf.asset_address end asset_address
, case
when tf.asset_address is null then 'no assets transferred'
when tf.asset_address = '0x' then 'MATIC'
else a.name end asset_name
, case
when tf.asset_address is null then 'n/a'
when tf.asset_address = '0x' then 'token'
when a.type is null then 'unknown'
else replace(a.type, ' asset','') end asset_type
from t
left join tf
on tf.tx_hash = t.tx_hash
left join c
on t.to_address = c.address
left join c a
on tf.asset_address = a.address
)
select
dt
, coalesce(app_name, app_address) app
, app_type
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
from d
group by 1,2,3
order by tx_ct desc
- src: bigquery
chain: bitcoin
query: >
with btc as (
SELECT
transactions.hash as tx_hash
, date(date_trunc(transactions.block_timestamp, {{level}})) dt
,inputs.addresses
FROM `bigquery-public-data.crypto_bitcoin.transactions` as transactions,
transactions.inputs as inputs
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and date(block_timestamp_month) = date('{{start_mth_dt}}')
),
btc_d as (
select
btc.dt
, btc.tx_hash
, a wallet_address
, 'n/a' app
, 'transfer' app_type
, 'BTC' asset
, 'token' asset_type
from btc,
unnest(addresses) a
)
select
dt
, app
, app_type
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
from btc_d
group by 1,2,3
- src: bigquery
chain: ethereum
query: >
with e_t as (
-- Get all transactions
select
`hash` tx_hash
, date(date_trunc(block_timestamp, {{level}})) dt
, from_address wallet_address
, to_address
, value
from `bigquery-public-data.crypto_ethereum.transactions`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and receipt_status = 1
),
e_tf as (
-- Get all asset transfers
select *
from
(
-- Get eth transfers
select tx_hash, '0x' asset_address
from e_t
where value > 0
)
union all
(
-- Get non-eth transfers
select distinct
transaction_hash tx_hash
, token_address asset_address
from `bigquery-public-data.crypto_ethereum.token_transfers`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
)
),
e_c as (
-- Get contracts w/ address, name, and type
select
e_contracts.address
, coalesce(e_m.name, e_al.name, e_cl.address_name, null) name
, coalesce(e_m.type, case when e_al.typ is null then null else e_al.typ || ' asset' end, e_cl.label_type, null) type
from `bigquery-public-data.crypto_ethereum.contracts` e_contracts -- contract addresses from gcp
left join
(
SELECT * FROM UNNEST([STRUCT<address STRING, name STRING, type STRING>
('0x2791bca1f2de4661ed88a30c99a7a9449aa84174','USDC', 'token asset'),
('0xc2132d05d31c914a87c6611c10748aeb04b58e8f','USDT','token asset'),
('0x8f3cf7ad23cd3cadbd9735aff958023239c6a063','DAI','token asset'),
('0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6','WBTC','token asset'),
('0x00000000006c3852cbef3e08e8df289169ede581','OpenSea','nft')])
) e_m -- manual labels for popular contracts
on e_contracts.address = e_m.address
left join `primo-data-338518.blockchain_data.asset_labels` e_al -- asset labels from chainbase
on e_contracts.address = e_al.contract_address
and e_al.chain = 'ethereum'
left join `primo-data-338518.blockchain_data.contract_labels` e_cl -- contract labels from flipside
on e_contracts.address = e_cl.address
and e_cl.chain = 'ethereum'
),
e_d as (
-- List of every transaction w/ primary contract (app) and assets transferred
select distinct
e_t.dt
, e_t.tx_hash
, e_t.wallet_address
, case
when e_c.type like '%asset' then 'n/a'
when e_c.address is null and e_t.value > 0 then 'n/a'
when e_c.address is null then 'unknown'
else e_c.address end app_address
, case
when e_c.type like '%asset' then 'n/a'
when e_c.address is null and e_t.value > 0 then 'n/a'
when e_c.address is null then 'unknown'
else e_c.name end app_name
, case
when e_c.address is null and e_t.value > 0 then 'transfer'
when e_c.address is null then 'unknown'
when e_c.type like '%asset' and e_tf.asset_address is not null then 'transfer'
when e_c.type like '%asset' then 'nft/token'
when e_c.type is null then 'unknown'
else e_c.type end app_type
, case
when e_tf.asset_address is null then 'n/a'
else e_tf.asset_address end asset_address
, case
when e_tf.asset_address is null then 'no assets transferred'
when e_tf.asset_address = '0x' then 'ETH'
else e_a.name end asset_name
, case
when e_tf.asset_address is null then 'n/a'
when e_tf.asset_address = '0x' then 'token'
when e_a.type is null then 'unknown'
else replace(e_a.type, ' asset','') end asset_type
from e_t
left join e_tf
on e_tf.tx_hash = e_t.tx_hash
left join e_c
on e_t.to_address = e_c.address
left join e_c e_a
on e_tf.asset_address = e_a.address
)
select
dt
, coalesce(app_name, app_address) app
, app_type
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
from e_d
group by 1,2,3
agg_assets:
- src: flipside
chain: solana
query: >
with tx as (
-- Get txn data
select
date(date_trunc('{{level}}' , block_timestamp)) dt
, tx_id
, instructions
, signers[0] address
from solana.core.fact_transactions
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and succeeded = 1
),
p as (
-- Expload programs for txn
select
tx_id
, e.value:programId programid
from tx,
Table(Flatten(tx.instructions)) e
where programid not in ('ComputeBudget111111111111111111111111111111','Memo1UhkJRfHyvLMcVucJwxXeuD728EqVDDwQDxFMNo','MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr','KeccakSecp256k11111111111111111111111111111') -- solana internal contracts
),
pl as (
-- Get program names & types
select distinct
tx_id
, case when programid in ('TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA','ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL','11111111111111111111111111111111') then 'TokenProgram' else programid end programid
, case when l.label = 'solana' then null else l.label end app_name
, case when programid = 'Stake11111111111111111111111111111111111111' then 'staking'
when l.label = 'solana' then null
else l.label_type end tx_type
from p
left join solana.core.dim_labels l
on p.programid = l.address
),
pa as (
-- Reaggregate programs per txn
select
tx_id
, listagg(programid, ', ') within group (order by programid desc) programs
, listagg(app_name, ', ') within group (order by programid desc) app_name
, listagg(tx_type, ', ') within group (order by programid desc) tx_type
from pl
group by 1
),
l as (
-- Get token and NFT names
select *
from
(
-- Get token names
select
token_address address
, upper(symbol) address_name
, 'token' label_subtype
from solana.core.dim_tokens
group by 1,2,3
)
union all
(
-- Get NFT names
select
contract_address address
, contract_name address_name
, 'nft' label_subtype
from solana.core.dim_nft_metadata
group by 1,2,3
)
),
d as (
-- Join txns to aggregate program data and transfer data
select distinct
tx.dt
, tx.tx_id tx_hash
, tx.address wallet_address
, case
when pa.programs like 'TokenProgram, %' then replace(pa.programs,'TokenProgram, ','')
when pa.programs like '%, TokenProgram%' then replace(pa.programs,', TokenProgram','')
when pa.programs = 'TokenProgram' then 'n/a'
else pa.programs end app_address
, case
when pa.programs = 'TokenProgram' then 'n/a'
when app_name = '' then null
else app_name end app_name
, case
when pa.programs = 'TokenProgram' and tf.mint is null then 'nft/token'
when pa.programs = 'TokenProgram' then 'transfer'
when tx_type = '' then 'unknown'
else tx_type end app_type
, case
when tf.mint is null then 'n/a'
else tf.mint end asset_address
, case
when tf.mint is null then 'no assets transferred'
else l.address_name end asset_name
, case
when l.label_subtype is not null then l.label_subtype
when tf.mint is null then 'n/a'
-- when tf.mint is not null then 'nft/token'
else 'unknown' end asset_type
from tx
left join pa
on tx.tx_id = pa.tx_id
left join solana.core.fact_transfers tf
on tx.tx_id = tf.tx_id
and date(tf.block_timestamp) >= date('{{start_dt}}')
and date(tf.block_timestamp) <= date('{{end_dt}}')
left join l
on tf.mint = l.address
)
select
dt
, coalesce(asset_name, asset_address) asset
, asset_type
, count(distinct tx_hash) tx_ct
, count(distinct wallet_address) address_ct
from d
group by 1,2,3
- src: bigquery
chain: polygon
query: >
with t as (
-- Get all transactions
select
`hash` tx_hash
, date(date_trunc(block_timestamp, {{level}})) dt
, from_address wallet_address
, to_address
, value
from `public-data-finance.crypto_polygon.transactions`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
and receipt_status = 1
),
tf as (
-- Get all asset transfers
select *
from
(
-- Get matic transfers
select tx_hash, '0x' asset_address
from t
where value > 0
)
union all
(
-- Get non-matic transfers
select distinct
transaction_hash tx_hash
, token_address asset_address
from `public-data-finance.crypto_polygon.token_transfers`
where date(block_timestamp) >= date('{{start_dt}}')
and date(block_timestamp) <= date('{{end_dt}}')
)
),
c as (
-- Get contracts w/ address, name, and type
select
contracts.address
, coalesce(m.name, al.name, cl.address_name, null) name
, coalesce(m.type, case when al.typ is null then null else al.typ || ' asset' end, cl.label_type, null) type
from `public-data-finance.crypto_polygon.contracts` contracts -- contract addresses from gcp
left join
(
SELECT * FROM UNNEST([STRUCT<address STRING, name STRING, type STRING>
('0x2791bca1f2de4661ed88a30c99a7a9449aa84174','USDC', 'token asset'),
('0xc2132d05d31c914a87c6611c10748aeb04b58e8f','USDT','token asset'),
('0x8f3cf7ad23cd3cadbd9735aff958023239c6a063','DAI','token asset'),
('0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6','WBTC','token asset'),
('0x00000000006c3852cbef3e08e8df289169ede581','OpenSea','nft')])
) m -- manual labels for popular contracts
on contracts.address = m.address
left join `primo-data-338518.blockchain_data.asset_labels` al -- asset labels from chainbase
on contracts.address = al.contract_address
and al.chain = 'polygon'
left join `primo-data-338518.blockchain_data.contract_labels` cl -- contract labels from flipside
on contracts.address = cl.address
and cl.chain = 'polygon'
),
d as (
-- List of every transaction w/ primary contract (app) and assets transferred
select distinct
t.dt
, t.tx_hash
, t.wallet_address
, case
when c.type like '%asset' then 'n/a'
when c.address is null and t.value > 0 then 'n/a'
when c.address is null then 'unknown'
else c.address end app_address
, case
when c.type like '%asset' then 'n/a'
when c.address is null and t.value > 0 then 'n/a'
when c.address is null then 'unknown'
else c.name end app_name
, case
when c.address is null and t.value > 0 then 'transfer'
when c.address is null then 'unknown'
when c.type like '%asset' and tf.asset_address is not null then 'transfer'
when c.type like '%asset' then 'nft/token'
when c.type is null then 'unknown'
else c.type end app_type
, case
when tf.asset_address is null then 'n/a'
else tf.asset_address end asset_address
, case
when tf.asset_address is null then 'no assets transferred'
when tf.asset_address = '0x' then 'MATIC'
else a.name end asset_name
, case
when tf.asset_address is null then 'n/a'
when tf.asset_address = '0x' then 'token'
when a.type is null then 'unknown'
else replace(a.type, ' asset','') end asset_type
from t
left join tf
on tf.tx_hash = t.tx_hash
left join c
on t.to_address = c.address
left join c a
on tf.asset_address = a.address
)