@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
39 lines (38 loc) • 1.23 kB
JavaScript
const MINIMUM_ACCOUNT_ID_LENGTH = 2;
const MAXIMUM_ACCOUNT_ID_LENGTH = 64;
const RULES_URL = 'https://docs.near.org/docs/concepts/account#account-id-rules';
export default class NearContract {
account;
static identifierName() {
return 'account';
}
constructor(account) {
this.account = account;
this.account = account;
}
validateLength(value) {
return value.length >= MINIMUM_ACCOUNT_ID_LENGTH && value.length <= MAXIMUM_ACCOUNT_ID_LENGTH;
}
validateFormat(value) {
const pattern = /^(([a-z\d]+[-_])*[a-z\d]+\.)*([a-z\d]+[-_])*[a-z\d]+$/;
return pattern.test(value);
}
validate() {
if (!this.validateLength(this.account)) {
return {
valid: false,
error: `Account must be between '${MINIMUM_ACCOUNT_ID_LENGTH}' and '${MAXIMUM_ACCOUNT_ID_LENGTH}' characters, see ${RULES_URL}`,
};
}
if (!this.validateFormat(this.account)) {
return {
valid: false,
error: `Account must conform to the rules on ${RULES_URL}`,
};
}
return {
valid: true,
error: null,
};
}
}