@dapix/react-native-fio
Version:
The FIO react-native-fio SDK communicates with the FIO Blockchain.
15 lines (14 loc) • 403 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Query_1 = require("./Query");
class GetNames extends Query_1.Query {
constructor(fioPublicKey) {
super();
this.ENDPOINT = "chain/get_fio_names";
this.fioPublicKey = fioPublicKey;
}
getData() {
return { fio_public_key: this.fioPublicKey };
}
}
exports.GetNames = GetNames;