This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/thirdweb-dev/docs into paym…
…ents
- Loading branch information
Showing
947 changed files
with
149,023 additions
and
114,838 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
slug: /wallet/coin98-wallet | ||
title: Coin98 Wallet | ||
--- | ||
|
||
import Tabs from "@theme/Tabs"; | ||
import TabItem from "@theme/TabItem"; | ||
import CodeBlock from "@theme/CodeBlock"; | ||
|
||
Prompt users to connect to their [Coin98 wallet](https://coin98.com/). | ||
|
||
## Usage | ||
|
||
```javascript | ||
import { Coin98Wallet } from "@thirdweb-dev/wallets"; | ||
|
||
const wallet = new Coin98Wallet(); | ||
|
||
wallet.connect(); | ||
``` | ||
|
||
## Configuration | ||
|
||
Optionally, provide a configuration object when instantiating the `Coin98Wallet` class. | ||
|
||
<details> | ||
<summary>projectId (recommended) </summary> | ||
<div> | ||
|
||
This is only relevant if you want to use [WalletConnect](https://walletconnect.com/) for connecting to Coin98 wallet mobile app when MetaMask is not injected. | ||
|
||
This `projectId` can be obtained at [cloud.walletconnect.com](https://cloud.walletconnect.com/). It is highly recommended to use your own project id and only use the default one for testing purposes. | ||
|
||
```javascript | ||
import { Coin98Wallet } from "@thirdweb-dev/wallets"; | ||
|
||
const wallet = new Coin98Wallet( | ||
// highlight-start | ||
{ | ||
projectId: "YOUR_WALLET_CONNECT_PROJECT_ID", | ||
}, | ||
// highlight-end | ||
); | ||
``` | ||
|
||
</div> | ||
</details> | ||
|
||
<details> | ||
<summary>recommended (optional) </summary> | ||
<div> | ||
|
||
Show this wallet as "recommended" in the [ConnectWallet Modal](/react/react.connectwallet). | ||
|
||
```ts | ||
Coin98Wallet({ | ||
// highlight-start | ||
recommended: true, | ||
// highlight-end | ||
}); | ||
``` | ||
|
||
</div> | ||
</details> | ||
|
||
## Methods | ||
|
||
Inherits all the public methods from the [`AbstractClientWallet`](interfaces/abstract-client-wallet) class. |
Oops, something went wrong.