2021-09-03 10:43:57 +00:00
|
|
|
# @instadapp/vue-web3
|
2021-08-28 18:25:21 +00:00
|
|
|
|
|
|
|
Vue 2/3 wrapper for web3 built on top of [react-web3](https://github.com/NoahZinsmeister/web3-react).
|
|
|
|
|
|
|
|
## 🚀 Quick Start
|
|
|
|
|
|
|
|
Install:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# npm
|
2021-09-03 10:43:57 +00:00
|
|
|
npm i @instadapp/vue-web3
|
2021-08-28 18:25:21 +00:00
|
|
|
|
|
|
|
# yarn
|
2021-09-03 10:43:57 +00:00
|
|
|
yarn add @instadapp/vue-web3
|
2021-08-28 18:25:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
|
|
|
|
```js
|
2021-09-03 10:43:57 +00:00
|
|
|
import { useWeb3, setWeb3LibraryCallback } from '@instadapp/vue-web3'
|
2021-08-28 18:25:21 +00:00
|
|
|
import { InjectedConnector } from '@web3-react/injected-connector'
|
|
|
|
import { WalletConnectConnector } from '@web3-react/walletconnect-connector'
|
|
|
|
|
|
|
|
import Web3 from 'web3'
|
|
|
|
|
|
|
|
const injected = new InjectedConnector({
|
|
|
|
supportedChainIds: [1, 137],
|
|
|
|
})
|
|
|
|
|
|
|
|
const walletconnect = new WalletConnectConnector({
|
|
|
|
rpc: { 1: 'https://mainnet.infura.io/v3/YOUR_API_KEY' },
|
|
|
|
qrcode: true,
|
|
|
|
})
|
|
|
|
|
|
|
|
setWeb3LibraryCallback((provider) => new Web3(provider))
|
|
|
|
|
|
|
|
defineComponent({
|
|
|
|
setup() {
|
|
|
|
const { active, activate, account, library } = useWeb3()
|
|
|
|
|
|
|
|
const connectUsingMetamask = async () => {
|
|
|
|
await activate(injected)
|
|
|
|
}
|
|
|
|
|
|
|
|
const connectUsingWalletConnect = async () => {
|
|
|
|
await activate(walletconnect)
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
active,
|
|
|
|
connect,
|
|
|
|
connectUsingMetamask,
|
|
|
|
connectUsingWalletConnect,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
```
|
2021-08-29 11:18:56 +00:00
|
|
|
Typescript:
|
|
|
|
|
|
|
|
```js
|
|
|
|
import Web3 from 'web3'
|
|
|
|
|
|
|
|
const { library } = useWeb3<Web3>()
|
|
|
|
```
|
|
|
|
|
|
|
|
```js
|
|
|
|
import { Web3Provider } from "@ethersproject/providers";
|
|
|
|
|
|
|
|
const { library } = useWeb3<Web3Provider>()
|
2021-08-31 17:35:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Demo: https://github.com/KABBOUCHI/nuxt-vue-web3
|