From c9311277487c7d4bba8a5dc65f259e725adc9bdf Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sat, 13 Oct 2018 17:21:00 -0700 Subject: [PATCH] fix: add flow definition for load() --- 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 02827d0fe1..79b4958efd 100644 --- a/web3.js/module.flow.js +++ b/web3.js/module.flow.js @@ -65,6 +65,7 @@ declare module '@solana/web3.js' { ): Transaction; static move(from: PublicKey, to: PublicKey, amount: number): Transaction; static assign(from: PublicKey, programId: PublicKey): Transaction; + static load(from: PublicKey, programId: PublicKey, name: string): Transaction; } // === src/transaction.js ===