@hiero-ledger/sdk 2.84.0-beta.1 → 2.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/umd.js +15 -8
- package/dist/umd.js.map +1 -1
- package/dist/umd.min.js +1 -1
- package/dist/umd.min.js.map +1 -1
- package/lib/EthereumTransaction.cjs +2 -1
- package/lib/EthereumTransaction.d.ts +4 -6
- package/lib/EthereumTransaction.js.map +1 -1
- package/lib/client/addressbooks/mainnet.cjs +1 -1
- package/lib/client/addressbooks/mainnet.d.ts +1 -1
- package/lib/client/addressbooks/mainnet.js +1 -1
- package/lib/client/addressbooks/mainnet.js.map +1 -1
- package/lib/file/FileContentsQuery.cjs +2 -1
- package/lib/file/FileContentsQuery.d.ts +8 -2
- package/lib/file/FileContentsQuery.js.map +1 -1
- package/lib/file/FileDeleteTransaction.cjs +2 -1
- package/lib/file/FileDeleteTransaction.d.ts +4 -6
- package/lib/file/FileDeleteTransaction.js.map +1 -1
- package/lib/file/FileId.cjs +3 -1
- package/lib/file/FileId.d.ts +6 -2
- package/lib/file/FileId.js.map +1 -1
- package/lib/file/FileInfoQuery.cjs +3 -2
- package/lib/file/FileInfoQuery.d.ts +15 -2
- package/lib/file/FileInfoQuery.js.map +1 -1
- package/lib/file/FileUpdateTransaction.cjs +2 -1
- package/lib/file/FileUpdateTransaction.d.ts +4 -6
- package/lib/file/FileUpdateTransaction.js.map +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
- package/src/EthereumTransaction.js +2 -1
- package/src/client/addressbooks/mainnet.js +1 -1
- package/src/file/FileContentsQuery.js +2 -1
- package/src/file/FileDeleteTransaction.js +2 -1
- package/src/file/FileId.js +3 -1
- package/src/file/FileInfoQuery.js +3 -2
- package/src/file/FileUpdateTransaction.js +2 -1
|
@@ -19,7 +19,8 @@ import Hbar from "../Hbar.js";
|
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* @typedef {import("../channel/Channel.js").default} Channel
|
|
22
|
-
* @typedef {import("../
|
|
22
|
+
* @typedef {import("../channel/MirrorChannel.js").default} MirrorChannel
|
|
23
|
+
* @typedef {import("../client/Client.js").default<Channel, MirrorChannel>} Client
|
|
23
24
|
* @typedef {import("../account/AccountId.js").default} AccountId
|
|
24
25
|
*/
|
|
25
26
|
|
|
@@ -88,7 +89,7 @@ export default class FileInfoQuery extends Query {
|
|
|
88
89
|
|
|
89
90
|
/**
|
|
90
91
|
* @override
|
|
91
|
-
* @param {import("../client/Client.js").default<Channel,
|
|
92
|
+
* @param {import("../client/Client.js").default<Channel, MirrorChannel>} client
|
|
92
93
|
* @returns {Promise<Hbar>}
|
|
93
94
|
*/
|
|
94
95
|
async getCost(client) {
|
|
@@ -21,7 +21,8 @@ import KeyList from "../KeyList.js";
|
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* @typedef {import("../channel/Channel.js").default} Channel
|
|
24
|
-
* @typedef {import("../
|
|
24
|
+
* @typedef {import("../channel/MirrorChannel.js").default} MirrorChannel
|
|
25
|
+
* @typedef {import("../client/Client.js").default<Channel, MirrorChannel>} Client
|
|
25
26
|
* @typedef {import("../account/AccountId.js").default} AccountId
|
|
26
27
|
* @typedef {import("../transaction/TransactionId.js").default} TransactionId
|
|
27
28
|
*/
|