@ocap/types 1.22.2 → 1.23.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/lib/tx_pb.d.ts +10 -6
- package/package.json +1 -1
package/lib/tx_pb.d.ts
CHANGED
@@ -1793,8 +1793,10 @@ export class MintTokenTx extends jspb.Message {
|
|
1793
1793
|
getAmount(): string;
|
1794
1794
|
setAmount(value: string): void;
|
1795
1795
|
|
1796
|
-
|
1797
|
-
|
1796
|
+
clearInputsList(): void;
|
1797
|
+
getInputsList(): Array<type_pb.TTransactionInput>;
|
1798
|
+
setInputsList(value: Array<type_pb.TTransactionInput>): void;
|
1799
|
+
addInputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
1798
1800
|
|
1799
1801
|
getReceiver(): string;
|
1800
1802
|
setReceiver(value: string): void;
|
@@ -1817,7 +1819,7 @@ export class MintTokenTx extends jspb.Message {
|
|
1817
1819
|
export type TMintTokenTx = {
|
1818
1820
|
tokenFactory: string,
|
1819
1821
|
amount: string,
|
1820
|
-
|
1822
|
+
inputs: Array<type_pb.TTransactionInput>,
|
1821
1823
|
receiver: string,
|
1822
1824
|
data?: google_protobuf_any_pb.Any,
|
1823
1825
|
}
|
@@ -1826,8 +1828,10 @@ export class BurnTokenTx extends jspb.Message {
|
|
1826
1828
|
getTokenFactory(): string;
|
1827
1829
|
setTokenFactory(value: string): void;
|
1828
1830
|
|
1829
|
-
|
1830
|
-
|
1831
|
+
clearInputsList(): void;
|
1832
|
+
getInputsList(): Array<type_pb.TTransactionInput>;
|
1833
|
+
setInputsList(value: Array<type_pb.TTransactionInput>): void;
|
1834
|
+
addInputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
1831
1835
|
|
1832
1836
|
getMinReserve(): string;
|
1833
1837
|
setMinReserve(value: string): void;
|
@@ -1852,7 +1856,7 @@ export class BurnTokenTx extends jspb.Message {
|
|
1852
1856
|
|
1853
1857
|
export type TBurnTokenTx = {
|
1854
1858
|
tokenFactory: string,
|
1855
|
-
|
1859
|
+
inputs: Array<type_pb.TTransactionInput>,
|
1856
1860
|
minReserve: string,
|
1857
1861
|
receiver: string,
|
1858
1862
|
data?: google_protobuf_any_pb.Any,
|