@nevenhsu/uni-wallet-connect
TypeScript icon, indicating that this package has built-in type declarations

0.1.18 • Public • Published

Uni-wallet-connect

A library extracted from the Uniswap v3 codebase and rewritten for reusability. It uses @web-react and ethers.js. NextJS is supported by default.

Demo

How to use

See next example for complete details.

npm install @nevenhsu/uni-wallet-connect

pages/_app.tsx

import '@nevenhsu/uni-wallet-connect/dist/esm/index.css'
import '../styles/globals.css'
import type { AppProps } from 'next/app'
import dynamic from 'next/dynamic'
import React, { StrictMode } from 'react'

const Wrapper = dynamic(() => import('../components/Wrapper'), {
  ssr: false,
})

function MyApp({ Component, pageProps }: AppProps) {
  return (
    <StrictMode>
      <Wrapper>
        <Component {...pageProps} />
      </Wrapper>
    </StrictMode>
  )
}

export default MyApp

components/Wrapper.tsx

import React from 'react'
import { HashRouter } from 'react-router-dom'
import { Provider } from 'react-redux'
import Uniswap, { ThemeProvider, makeStore } from '@nevenhsu/uni-wallet-connect'

const store = makeStore()

export default function Wrapper({ children }: React.PropsWithChildren<{}>) {
  return (
    <Provider store={store}>
      <ThemeProvider>
        <HashRouter>
          <Uniswap>{children}</Uniswap>
        </HashRouter>
      </ThemeProvider>
    </Provider>
  )
}

.env

NEXT_PUBLIC_INFURA_KEY=xxxxxyyyyyzzzzz
NEXT_PUBLIC_FORTMATIC_KEY=pk_live_xxxxx # Optional
NEXT_PUBLIC_DEFAULT_CHAIN_ID=1 # Optional

NEXT_PUBLIC_APP_NAME=uni-wallet
NEXT_PUBLIC_LOGO_URL=http://localhost:3000/icon.png # Optional

Package Sidebar

Install

npm i @nevenhsu/uni-wallet-connect

Weekly Downloads

1

Version

0.1.18

License

GPL-3.0-or-later

Unpacked Size

2.8 MB

Total Files

687

Last publish

Collaborators

  • nevenhsu