Validates an address for a specific blockchain.
Represents the input parameters for validating an address.
The blockchain address to be validated.
The blockchain network that the resource is to be created on or is currently on.
1const response = await client.validateAddress({
2 address: 'address',
3 blockchain: 'ETH',
4})
5console.log(response.data?.isValid)
1{
2 "data": {
3 "isValid": false
4 }
5}