request(
"GET",
"/v1/custody/mpc/is_valid_address/",
{
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/mpc/is_valid_address/', {
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
}, api_key, api_secret, host)
.then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/mpc/is_valid_address/", map[string]string{
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
})
{
"success": true,
"result": false
}
Account
Is Valid Address
This content applies to WaaS 1.0 only. We highly recommend that you upgrade to WaaS 2.0.
GET
/
v1
/
custody
/
mpc
/
is_valid_address
/
request(
"GET",
"/v1/custody/mpc/is_valid_address/",
{
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/mpc/is_valid_address/', {
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
}, api_key, api_secret, host)
.then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/mpc/is_valid_address/", map[string]string{
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
})
{
"success": true,
"result": false
}
Request
String
required
Coin code
String
required
address; please use โ๏ฝโ to separate the addresses if thereโs also a memo
Response
bool
request successful or failed
bool
Whether the address is valid or not.
request(
"GET",
"/v1/custody/mpc/is_valid_address/",
{
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/mpc/is_valid_address/', {
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
}, api_key, api_secret, host)
.then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/mpc/is_valid_address/", map[string]string{
"coin": "ETH",
"address": "0x9414933Ff7777bb28cA22D15c178596A6e58d957"
})
{
"success": true,
"result": false
}
Was this page helpful?
