Bind your EVM Address

Curated by

AlphaSwap

ID Type

EVM ADDRESS

Cred Type

REST

Last Update Time

01/09/2024, 04:51:28

Method

GET

Endpoint

https://dev.aleoswap.org/***

Expression

function (data) {
  if (data.data == null) {
    return 0;
  }
  if (data.data.aleo_address == null) {
    return 0;
  }

  if (data.data.aleo_address.length > 0) {
    return 1;
  } else {
    return 0;
  }
}