@hiero-ledger/sdk
Version:
158 lines (143 loc) • 5.62 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _Query = _interopRequireWildcard(require("../query/Query.cjs"));
var _ContractId = _interopRequireDefault(require("./ContractId.cjs"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
// SPDX-License-Identifier: Apache-2.0
/**
* @namespace proto
* @typedef {import("@hashgraph/proto").proto.IQuery} HieroProto.proto.IQuery
* @typedef {import("@hashgraph/proto").proto.IQueryHeader} HieroProto.proto.IQueryHeader
* @typedef {import("@hashgraph/proto").proto.IResponse} HieroProto.proto.IResponse
* @typedef {import("@hashgraph/proto").proto.IResponseHeader} HieroProto.proto.IResponseHeader
* @typedef {import("@hashgraph/proto").proto.IContractGetBytecodeQuery} HieroProto.proto.IContractGetBytecodeQuery
* @typedef {import("@hashgraph/proto").proto.IContractGetBytecodeResponse} HieroProto.proto.IContractGetBytecodeResponse
*/
/**
* @typedef {import("../channel/Channel.js").default} Channel
* @typedef {import("../client/Client.js").default<*, *>} Client
* @typedef {import("../account/AccountId.js").default} AccountId
*/
/**
* Query to retrieve the bytecode of a smart contract from the network.
*
* This query returns the bytecode of a smart contract instance that has been
* created on the Hedera network. The bytecode represents the compiled code
* that is executed by the Hedera network when the contract is called.
*
* @augments {Query<Uint8Array>}
*/
class ContractByteCodeQuery extends _Query.default {
/**
* @param {object} props
* @param {ContractId | string} [props.contractId]
*/
constructor(props = {}) {
super();
/**
* @type {?ContractId}
* @private
*/
this._contractId = null;
if (props.contractId != null) {
this.setContractId(props.contractId);
}
}
/**
* @internal
* @param {HieroProto.proto.IQuery} query
* @returns {ContractByteCodeQuery}
*/
static _fromProtobuf(query) {
const bytecode = /** @type {HieroProto.proto.IContractGetBytecodeQuery} */
query.contractGetBytecode;
return new ContractByteCodeQuery({
contractId: bytecode.contractID != null ? _ContractId.default._fromProtobuf(bytecode.contractID) : undefined
});
}
/**
* @returns {?ContractId}
*/
get contractId() {
return this._contractId;
}
/**
* Set the contract ID for which the info is being requested.
*
* @param {ContractId | string} contractId
* @returns {ContractByteCodeQuery}
*/
setContractId(contractId) {
this._contractId = typeof contractId === "string" ? _ContractId.default.fromString(contractId) : contractId.clone();
return this;
}
/**
* @param {Client} client
*/
_validateChecksums(client) {
if (this._contractId != null) {
this._contractId.validateChecksum(client);
}
}
/**
* @override
* @internal
* @param {Channel} channel
* @param {HieroProto.proto.IQuery} request
* @returns {Promise<HieroProto.proto.IResponse>}
*/
_execute(channel, request) {
return channel.smartContract.contractGetBytecode(request);
}
/**
* @override
* @internal
* @param {HieroProto.proto.IResponse} response
* @returns {HieroProto.proto.IResponseHeader}
*/
_mapResponseHeader(response) {
const contractGetBytecodeResponse = /** @type {HieroProto.proto.IContractGetBytecodeResponse} */
response.contractGetBytecodeResponse;
return /** @type {HieroProto.proto.IResponseHeader} */contractGetBytecodeResponse.header;
}
/**
* @protected
* @override
* @param {HieroProto.proto.IResponse} response
* @returns {Promise<Uint8Array>}
*/
_mapResponse(response) {
const contractGetBytecodeResponse = /** @type {HieroProto.proto.IContractGetBytecodeResponse} */
response.contractGetBytecodeResponse;
return Promise.resolve(contractGetBytecodeResponse.bytecode != null ? contractGetBytecodeResponse.bytecode : new Uint8Array());
}
/**
* @override
* @internal
* @param {HieroProto.proto.IQueryHeader} header
* @returns {HieroProto.proto.IQuery}
*/
_onMakeRequest(header) {
return {
contractGetBytecode: {
header,
contractID: this._contractId != null ? this._contractId._toProtobuf() : null
}
};
}
/**
* @returns {string}
*/
_getLogId() {
const timestamp = this._paymentTransactionId != null && this._paymentTransactionId.validStart != null ? this._paymentTransactionId.validStart : this._timestamp;
return `ContractByteCodeQuery:${timestamp.toString()}`;
}
}
// eslint-disable-next-line @typescript-eslint/unbound-method
exports.default = ContractByteCodeQuery;
_Query.QUERY_REGISTRY.set("contractGetBytecode", ContractByteCodeQuery._fromProtobuf);