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

Added plugin videos to guide #7004

Merged
merged 8 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ sidebar_position: 1
sidebar_label: 'Getting started'
---

import ReactPlayer from 'react-player'

# Getting Started

Welcome to the Web3 Plugins🧩 Guide, a new feature introduced in web3.js v4. In addition to the core web3.js libraries, plugins bring specialized functionalities tailored for end-users (functionalities, that you, as a developer, can create). These enhancements may involve creating wrappers for specific contracts, adding extra features to RPC methods, adding any external libraries, logic, extending the capabilities of web3.js methods, etc...
Expand Down Expand Up @@ -276,4 +278,17 @@ class MyPlugin extends Web3PluginBase {
```
:::info
All web3 config params [here](https://docs.web3js.org/guides/web3_config/)
:::
:::


## Videos

### Create your first plugin in 20 minutes!

<ReactPlayer playing={false} controls url='https://www.youtube.com/watch?v=fW1PDApXCtM&list=PLPn3rQCo3XrP4LbQcOyyHQR8McV7w3HZT&index=14' />



### Chainlink plugin: web3.js, viem, ethers vs web3 plugin🧩

<ReactPlayer playing={false} url='https://youtu.be/iF_O7ggQaQw?si=A1HUD_Xg6JNTW4LI' />
4 changes: 3 additions & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@
"@mdx-js/react": "^3.0.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"docusaurus": "^1.14.7",
"docusaurus-lunr-search": "^3.3.1",
"prism-react-renderer": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-player": "^2.16.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.0.0",
Expand Down
Loading