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