UNPKG

@dapix/react-native-fio

Version:

The FIO react-native-fio SDK communicates with the FIO Blockchain.

15 lines (14 loc) 402 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Query_1 = require("./Query"); class AvailabilityCheck extends Query_1.Query { constructor(fioName) { super(); this.ENDPOINT = "chain/avail_check"; this.fioName = fioName; } getData() { return { fio_name: this.fioName }; } } exports.AvailabilityCheck = AvailabilityCheck;