Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update web3js guide scripts #51

Merged
merged 6 commits into from
Aug 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update content/tutorials/guide-web3js/10.index.md
Co-authored-by: Sabrina <sf@matterlabs.dev>
AlbionaHoti and itsacoyote authored Aug 28, 2024
commit 87e1819e0ae9a8e9410e7996314789fe88c0def0
2 changes: 1 addition & 1 deletion content/tutorials/guide-web3js/10.index.md
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ import { ZKsyncPlugin } from "web3-plugin-zksync";
const zksyncRpcUrl: string = "https://sepolia.era.zksync.dev";

console.log(`📞 Connecting to ZKsync Era [${zksyncRpcUrl}]`);
const web3: Web3 = new Web3(ZKsyncRpcUrl);
const web3: Web3 = new Web3(zksyncRpcUrl);
web3.registerPlugin(new ZKsyncPlugin(zksyncRpcUrl));
```