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