total weeks | weeks with payments | payment consistency score | avg payment days per week | avg payment count per week | avg amount per week | avg amount in payment weeks | total amount (all time) | |
---|---|---|---|---|---|---|---|---|
1 | 32 | 14 | 43.75 | 0.5 | 0.53 | 94.99 | 94.99 | 1330 |
defi__joshCross-Chain USDT/USDC Payment Analysis: Weekly Transfer Patterns Between Specific Addresses
Updated 2025-05-10
999
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
›
⌄
with addy as (
select
block_timestamp,
symbol,
amount
from
ethereum.core.ez_token_transfers
where
(
symbol ilike 'USDT'
or symbol ilike 'USDC'
)
and from_address ilike '{{ dev_wallet }}'
and to_address ilike '{{ your_wallet }}'
and block_timestamp between '{{ start_date }}' and '{{ end_date }}'
union all
select
block_timestamp,
symbol,
amount
from
bsc.core.ez_token_transfers
where
(
symbol ilike 'USDT'
or symbol ilike 'USDC'
)
and from_address ilike '{{ dev_wallet }}'
and to_address ilike '{{ your_wallet }}'
and block_timestamp between '{{ start_date }}' and '{{ end_date }}'
union all
select
Last run: 22 days ago
1
41B
49s