From de3c1a30ac63a719dd3a51ccb789dcd71d4383d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Wed, 29 Nov 2023 12:37:36 +0200 Subject: [PATCH 1/2] Fix unit test. --- src/smartcontracts/nativeSerializer.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smartcontracts/nativeSerializer.spec.ts b/src/smartcontracts/nativeSerializer.spec.ts index f24e8238..2a8cb233 100644 --- a/src/smartcontracts/nativeSerializer.spec.ts +++ b/src/smartcontracts/nativeSerializer.spec.ts @@ -291,7 +291,7 @@ describe("test native serializer", () => { }, { "type": "tuple>", }, { - "type": "List>>", + "type": "List>", }, { "type": "u64" }], From 7b78bab6edc0b47f90bb430a359e48be85464017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Wed, 29 Nov 2023 14:57:50 +0200 Subject: [PATCH 2/2] Adjust some exports (e.g. for transactions factories). --- src/index.ts | 1 + src/transactionsFactories/index.ts | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 src/transactionsFactories/index.ts diff --git a/src/index.ts b/src/index.ts index cb6d0047..545ba190 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,6 +15,7 @@ export * from "./signableMessage"; export * from "./smartcontracts"; export * from "./tokenOperations"; export * from "./tokenTransfer"; +export * from "./tokens"; export * from "./transaction"; export * from "./transactionPayload"; export * from "./transactionWatcher"; diff --git a/src/transactionsFactories/index.ts b/src/transactionsFactories/index.ts new file mode 100644 index 00000000..79cd9a63 --- /dev/null +++ b/src/transactionsFactories/index.ts @@ -0,0 +1,5 @@ +export * from "./delegationTransactionsFactory"; +export * from "./smartContractTransactionsFactory"; +export * from "./tokenManagementTransactionsFactory"; +export * from "./transactionsFactoryConfig"; +export * from "./transferTransactionsFactory";