Calls
In Filecoin, calls are used to invoke methods on actors and transfer FIL. Bitquery's Calls API provides you the following information:
query ($network: FilecoinNetwork!, $from: ISO8601DateTime, $till: ISO8601DateTime) {
filecoin(network: $network) {
calls(date: {since: $from, till: $till}, options: {limit: 10}) {
callPath
callHash
method {
id
name
}
messageMethod {
id
name
}
receiver {
address
account
annotation
type
}
sender {
account
address
annotation
type
}
success
hash
}
}
}
<!-- Parameters -->
{
"network": "filecoin",
"from": "2023-08-02",
"till": "2023-08-09T23:59:59",
"dateFormat": "%Y-%m-%d"
}
Filtering Calls
Fields
callPath
: The call trace for the messagecallHash
: The hash of the call.method
: The method that was called.messageMethod
: The method that was called on the message.receiver
: The address of the actor that received the call.sender
: The address of the actor that made the call.success
: Whether the call was successful.hash
: The hash of the message that was called.