Export makeMultisignedTx

This commit is contained in:
Simon Warta 2021-03-24 15:53:02 +01:00
parent f8fafd17b6
commit f82b175506
2 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,8 @@ and this project adheres to
sequence and chain ID.
- @cosmjs/stargate: Add constructor `SigningStargateClient.offline` which does
not connect to Tendermint. This allows offline signing.
- @cosmjs/stargate: Add `makeMultisignedTx` which allows you to assemble a
transaction signed by a multisig account.
### Changed

View File

@ -4,6 +4,7 @@ export { Account, accountFromAny } from "./accounts";
export { AminoConverter, AminoTypes } from "./aminotypes";
export { buildFeeTable, FeeTable, GasLimits, GasPrice, StdFee } from "./fee";
export * as logs from "./logs";
export { makeMultisignedTx } from "./multisignature";
export {
AuthExtension,
BankExtension,