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