UNPKG

@dapix/react-native-fio

Version:

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

15 lines (14 loc) 444 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Query_1 = require("./Query"); class PendingFioRequests extends Query_1.Query { constructor(fioPublicKey) { super(); this.ENDPOINT = "chain/get_pending_fio_requests"; this.fioPublicKey = fioPublicKey; } getData() { return { fio_public_key: this.fioPublicKey }; } } exports.PendingFioRequests = PendingFioRequests;