@meshsdk/common 1.7.14 → 1.7.16
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/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -13,7 +13,7 @@ type Data = string | number | bigint | Array<Data> | Map<Data, Data> | {
|
|
|
13
13
|
fields: Array<Data>;
|
|
14
14
|
};
|
|
15
15
|
|
|
16
|
-
type RedeemerTagType = "CERT" | "MINT" | "REWARD" | "SPEND";
|
|
16
|
+
type RedeemerTagType = "CERT" | "MINT" | "REWARD" | "SPEND" | "VOTE" | "PROPOSE";
|
|
17
17
|
type Action = {
|
|
18
18
|
data: Data;
|
|
19
19
|
index: number;
|
|
@@ -445,6 +445,7 @@ type TxInParameter = {
|
|
|
445
445
|
txIndex: number;
|
|
446
446
|
amount?: Asset[];
|
|
447
447
|
address?: string;
|
|
448
|
+
scriptSize?: number;
|
|
448
449
|
};
|
|
449
450
|
type TxIn = PubKeyTxIn | SimpleScriptTxIn | ScriptTxIn;
|
|
450
451
|
type PubKeyTxIn = {
|
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ type Data = string | number | bigint | Array<Data> | Map<Data, Data> | {
|
|
|
13
13
|
fields: Array<Data>;
|
|
14
14
|
};
|
|
15
15
|
|
|
16
|
-
type RedeemerTagType = "CERT" | "MINT" | "REWARD" | "SPEND";
|
|
16
|
+
type RedeemerTagType = "CERT" | "MINT" | "REWARD" | "SPEND" | "VOTE" | "PROPOSE";
|
|
17
17
|
type Action = {
|
|
18
18
|
data: Data;
|
|
19
19
|
index: number;
|
|
@@ -445,6 +445,7 @@ type TxInParameter = {
|
|
|
445
445
|
txIndex: number;
|
|
446
446
|
amount?: Asset[];
|
|
447
447
|
address?: string;
|
|
448
|
+
scriptSize?: number;
|
|
448
449
|
};
|
|
449
450
|
type TxIn = PubKeyTxIn | SimpleScriptTxIn | ScriptTxIn;
|
|
450
451
|
type PubKeyTxIn = {
|