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/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" }], 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";