@mentaproject/client 0.1.21 → 0.1.23
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { GetTransactionParameters, SendTransactionParameters } from "@mentaproject/core/types";
|
|
5
5
|
import { Transaction } from "../structures/Transaction";
|
|
6
6
|
import { MentaClient } from "../structures";
|
|
7
|
-
import { JSONTransaction } from "
|
|
7
|
+
import { JSONTransaction } from "../types";
|
|
8
8
|
/**
|
|
9
9
|
* Manages blockchain transaction-related operations, providing methods to retrieve and send transactions.
|
|
10
10
|
* @class
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Transaction } from "../structures/Transaction";
|
|
2
2
|
import { getTransaction, sendTransaction } from "@mentaproject/core/actions";
|
|
3
|
-
import { parseBingints } from "
|
|
3
|
+
import { parseBingints } from "../utils/bigint";
|
|
4
4
|
/**
|
|
5
5
|
* Manages blockchain transaction-related operations, providing methods to retrieve and send transactions.
|
|
6
6
|
* @class
|
package/dist/utils/bigint.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WithoutBigintStringified } from "
|
|
1
|
+
import { WithoutBigintStringified } from "../types/Utils";
|
|
2
2
|
export declare const bigIntMax: (...args: bigint[]) => bigint;
|
|
3
3
|
export declare const bigIntMin: (...args: bigint[]) => bigint;
|
|
4
4
|
export declare function bigIntReviver(key: string, value: any): any;
|
package/package.json
CHANGED