SDK Explorer

Confirms that a specified address is valid for a given token on a certain blockchain.

Parameters
input
object
Required

Represents the input parameters for validating an address.

address
string
Required

The blockchain address to be validated.

blockchain
string
Required

The blockchain network that the resource is to be created on or is currently on.

Allowed valuesARBARB-SEPOLIAAVAXAVAX-FUJIBASEBASE-SEPOLIAETHETH-SEPOLIAEVMEVM-TESTNETMATICMATIC-AMOYNEARNEAR-TESTNETOPOP-SEPOLIASOLSOL-DEVNETUNIUNI-SEPOLIA
Responses
Example
1const response = await client.validateAddress({
2  address: '0xa95f8fafb3f6ae0f9ba7204eef07bde7a64cf2bc',
3  blockchain: 'ETH-SEPOLIA',
4})
5console.log(response.data?.isValid)
ResponseChoose an example
1{
2  "data": {
3    "isValid": false
4  }
5}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.