From bb0730f86e4e9bd3c0a960e92b1c82cae96535af Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 24 Oct 2018 09:00:01 -0700 Subject: [PATCH] fix(flow): add Transaction.add() --- web3.js/module.flow.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web3.js/module.flow.js b/web3.js/module.flow.js index 3a2fe59110..22f183ac36 100644 --- a/web3.js/module.flow.js +++ b/web3.js/module.flow.js @@ -101,6 +101,7 @@ declare module '@solana/web3.js' { fee: number; constructor(opts?: TransactionCtorFields): Transaction; + add(item: Transaction | TransactionInstructionCtorFields): Transaction; sign(from: Account): void; serialize(): Buffer; }