Coinpath
The coinpath field allows us to retrieve detailed information about money flow using coinpath technology.
Filtering Options
Coinpath data can be filtered using following arguments:
currency: Filter by the currency involved in the transaction.date: Filter by the date of the transaction.depth: Filter by the depth of the transaction.initialAddress: Filter by the initial address.initialDate: Filter by the initial date.initialTime: Filter by the initial time.options: Filter returned data by ordering, limiting, and constraining it.receiver: Filter by the receiver's address.sender: Filter by the sender's address.time: Filter by the time of the transaction.
The following are available fields for the coinpath:
amount: returns the amount of tokens involved in the transaction.any:block: returns details of the block where the transaction happened.count: returns the aggregate count of transactions.countBigInt: returns the aggregate count of transactions in BigInt format.currency: returns details of the currency used in the transaction.depth: returns depth information.maximum: returns maximum of selected coinpath measurable fieldsminimum: returns minimum of selected coinpath measurable fieldsreceiver: returns information about the receiver.sender: returns information about the sender.transaction: returns transaction details.transactions: returns attributes of transactions.
Example Query
The following query traces outbound CRO fund flow from an address up to 2 hops deep, returning sender/receiver details, amounts, and block timestamps. Add direction: inbound inside options to trace incoming funds instead.
{
ethereum(network: cronos) {
coinpath(
initialAddress: { is: "0x6f5e71A271579E3aF530067a2e7c7eaCe8fBe68a" }
currency: { is: "CRO" }
depth: { lteq: 2 }
options: {
seed: 110
asc: "depth"
desc: "amount"
limitBy: { each: "depth", limit: 10 }
}
date: { since: "2023-01-01", till: "2023-06-30" }
) {
sender {
address
annotation
smartContract {
contractType
currency {
symbol
name
}
}
}
receiver {
address
annotation
smartContract {
contractType
currency {
symbol
name
}
}
}
amount
currency {
symbol
name
}
transaction {
hash
value
}
block {
height
timestamp {
time(format: "%Y-%m-%d")
}
}
depth
count
}
}
}
For more coinpath examples — including inbound tracing, two-address relationship analysis, and multi-hop fund tracking — see the Coinpath Money Flow API examples.