diff --git a/web3.js/module.d.ts b/web3.js/module.d.ts index c630731eb2..7a132825ff 100644 --- a/web3.js/module.d.ts +++ b/web3.js/module.d.ts @@ -936,6 +936,7 @@ declare module '@solana/web3.js' { payer: Account, program: Account, elfBytes: Buffer | Uint8Array | Array, + version?: number, ): Promise; } diff --git a/web3.js/module.flow.js b/web3.js/module.flow.js index b94e7176f7..79302e6057 100644 --- a/web3.js/module.flow.js +++ b/web3.js/module.flow.js @@ -951,6 +951,7 @@ declare module '@solana/web3.js' { payer: Account, program: Account, elfBytes: Buffer | Uint8Array | Array, + version: ?number, ): Promise; }