Smart Contract Interactions

Returns a list of contract addresses the wallet interacted with in last x days. X must be under 365.

GraphQL Query

query SmartContractsInteractions($walletAddress: String!, $lastNDays: Int!){
    smartContractsInteractions(walletAddress: $walletAddress, lastNDays: $lastNDays){
        walletAddress
        smartContracts
    }
}

Variables

Response

Example

Input
Output

Last updated

Was this helpful?