This commit is contained in:
Pascal Engélibert 2025-06-22 22:10:41 +02:00
commit 2bab960f23
9 changed files with 62500 additions and 911 deletions

View file

@ -0,0 +1,12 @@
query ReceivedTransactions($address: String!, $block: Int!) {
tx: transfer(where: { blockNumber: { _gt: 1 }, to: { id: { _eq: "" } } }) {
amount
comment {
remark
}
}
b: block(limit: 1, orderBy: { height: DESC }) {
height
hash
}
}