Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenmarcus committed Sep 19, 2024
1 parent 9399170 commit fdef042
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You can check a [quick example of Simple Login](https://github.com/Mintbase/exam

- [Installing](#Installing)

- [MintbaseWalletContextProvider (default)](#mintbasewalletcontextprovider) : The default Mintbase Wallet provider
- [BitteWalletContextProvider (default)](#bittewalletcontextprovider) : The default Bitte Wallet provider


# Installing
Expand Down Expand Up @@ -52,9 +52,9 @@ pnpm install @mintbase-js/react
pnpm install @near-wallet-selector/modal-ui
```

# MintbaseWalletContextProvider
# BitteWalletContextProvider

the default way of interacting with Mintbase Wallet is using the MintbaseWalletContextProvider
the default way of interacting with Mintbase Wallet is using the BitteWalletContextProvider

{% code title="app.tsx" overflow="wrap" lineNumbers="true" %}

Expand All @@ -72,15 +72,15 @@ the default way of interacting with Mintbase Wallet is using the MintbaseWalletC

```typescript
import "@near-wallet-selector/modal-ui/styles.css";
import { MintbaseWalletContextProvider } from '@mintbase-js/react'
import { BitteWalletContextProvider } from '@mintbase-js/react'

<MintbaseWalletContextProvider
<BitteWalletContextProvider
contractAddress="mycontract.mintbase1.near"
network="mainnet"
callbackUrl="https://www.mywebsite.com/callback"
>
<Component {...pageProps} />
</MintbaseWalletContextProvider>
</BitteWalletContextProvider>

```

Expand Down
1 change: 0 additions & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"build": "tsc",
"watch": "tsc && tsc --watch & jest --watch --coverage",
"lint": "eslint . --fix --ext ts --ext tsx",
"test": "jest --coverage"
},
"files": [
"lib"
Expand Down

0 comments on commit fdef042

Please sign in to comment.