From 9ff17a1c187ccc639eafd48344ab75bd80c89077 Mon Sep 17 00:00:00 2001 From: Colin Gray Date: Mon, 3 May 2021 23:16:46 -0700 Subject: [PATCH] Update web3.js import sample --- web3.js/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3.js/README.md b/web3.js/README.md index 0ec29a85f6..dae2413b56 100644 --- a/web3.js/README.md +++ b/web3.js/README.md @@ -69,7 +69,7 @@ console.log(solanaWeb3); ### ES6 ```js -import solanaWeb3 from '@solana/web3.js'; +import * as solanaWeb3 from '@solana/web3.js'; console.log(solanaWeb3); ```