Comment on page

GraphQL API

Ethereum

Endpoint

API Key

To access our API, you need the “X-API-KEY” in the request header.
Please contact [email protected] to verify your identification and obtain the API key.

Get Owned AA of EOA

return all owned AA accounts to the master EOA address.
Query
query ParaAccounts($filter: ParaAccountFilter) {
paraAccounts(filter: $filter) {
paraAccount
EOAAccount
createdHash
createdBlockHeight
}
}
Variables
{
"filter": {
"EOAAccount": "your EOA address"
}
}
Results
{
"data": {
"paraAccounts": [
{
"paraAccount": "your AA address",
"EOAAccount": "your EOA address",
"createdHash": "the transaction of AA created",
"createdBlockHeight": "transaction block number"
}
]
}
}
Last modified 1mo ago