PHP WebShell
Текущая директория: /usr/lib/node_modules/bitgo/node_modules/@bitgo/sdk-coin-hbar/node_modules/@hashgraph/sdk/lib/file
Просмотр файла: FileInfo.cjs
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _FileId = _interopRequireDefault(require("./FileId.cjs"));
var _Timestamp = _interopRequireDefault(require("../Timestamp.cjs"));
var _long = _interopRequireDefault(require("long"));
var _KeyList = _interopRequireDefault(require("../KeyList.cjs"));
var _LedgerId = _interopRequireDefault(require("../LedgerId.cjs"));
var HashgraphProto = _interopRequireWildcard(require("@hashgraph/proto"));
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/*-
*
* Hedera JavaScript SDK
*
* Copyright (C) 2020 - 2022 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
const {
proto
} = HashgraphProto;
/**
* Response when the client sends the node CryptoGetInfoQuery.
*/
class FileInfo {
/**
* @private
* @param {object} props
* @param {FileId} props.fileId
* @param {Long} props.size
* @param {Timestamp} props.expirationTime
* @param {boolean} props.isDeleted
* @param {KeyList} props.keys
* @param {string} props.fileMemo
* @param {LedgerId|null} props.ledgerId
*/
constructor(props) {
/**
* The ID of the file for which information is requested.
*
* @readonly
*/
this.fileId = props.fileId;
/**
* Number of bytes in contents.
*
* @readonly
*/
this.size = props.size;
/**
* The current time at which this account is set to expire.
*
* @readonly
*/
this.expirationTime = props.expirationTime;
/**
* True if deleted but not yet expired.
*
* @readonly
*/
this.isDeleted = props.isDeleted;
/**
* One of these keys must sign in order to delete the file.
* All of these keys must sign in order to update the file.
*
* @readonly
*/
this.keys = props.keys;
this.fileMemo = props.fileMemo;
this.ledgerId = props.ledgerId;
Object.freeze(this);
}
/**
* @internal
* @param {HashgraphProto.proto.FileGetInfoResponse.IFileInfo} info
* @returns {FileInfo}
*/
static _fromProtobuf(info) {
const size = /** @type {Long | number} */info.size;
return new FileInfo({
fileId: _FileId.default._fromProtobuf( /** @type {HashgraphProto.proto.IFileID} */info.fileID),
size: size instanceof _long.default ? size : _long.default.fromValue(size),
expirationTime: _Timestamp.default._fromProtobuf( /** @type {HashgraphProto.proto.ITimestamp} */
info.expirationTime),
isDeleted: /** @type {boolean} */info.deleted,
keys: info.keys != null ? _KeyList.default.__fromProtobufKeyList(info.keys) : new _KeyList.default(),
fileMemo: info.memo != null ? info.memo : "",
ledgerId: info.ledgerId != null ? _LedgerId.default.fromBytes(info.ledgerId) : null
});
}
/**
* @internal
* @returns {HashgraphProto.proto.FileGetInfoResponse.IFileInfo}
*/
_toProtobuf() {
return {
fileID: this.fileId._toProtobuf(),
size: this.size,
expirationTime: this.expirationTime._toProtobuf(),
deleted: this.isDeleted,
keys: this.keys._toProtobufKey().keyList,
memo: this.fileMemo,
ledgerId: this.ledgerId != null ? this.ledgerId.toBytes() : null
};
}
/**
* @param {Uint8Array} bytes
* @returns {FileInfo}
*/
static fromBytes(bytes) {
return FileInfo._fromProtobuf(HashgraphProto.proto.FileGetInfoResponse.FileInfo.decode(bytes));
}
/**
* @returns {Uint8Array}
*/
toBytes() {
return proto.FileGetInfoResponse.FileInfo.encode(this._toProtobuf()).finish();
}
}
exports.default = FileInfo;Выполнить команду
Для локальной разработки. Не используйте в интернете!