forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/npm_and_yarn/hosted-git-info-2.8.9
- Loading branch information
Showing
38 changed files
with
53,472 additions
and
3,056 deletions.
There are no files selected for viewing
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Binance Chain Wallet | ||
|
||
1. Set Provider Options | ||
|
||
```typescript | ||
const providerOptions = { | ||
binancechainwallet: { | ||
package: true | ||
} | ||
}; | ||
``` |
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,26 @@ | ||
# Venly (Previously Arkane Network) | ||
|
||
1. Install Provider Package | ||
|
||
```bash | ||
npm install --save @venly/web3-provider | ||
|
||
# OR | ||
|
||
yarn add @venly/web3-provider | ||
``` | ||
|
||
2. Set Provider Options | ||
|
||
```typescript | ||
import Venly from "@venly/web3-provider"; | ||
|
||
const providerOptions = { | ||
venly: { | ||
package: Venly, // required | ||
options: { | ||
clientId: "VENLY_CLIENT_ID" // required | ||
} | ||
} | ||
}; | ||
``` |
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,33 @@ | ||
# WalletLink | ||
|
||
1. Install Provider Package | ||
|
||
```bash | ||
npm install --save walletlink | ||
|
||
# OR | ||
|
||
yarn add walletlink | ||
``` | ||
|
||
2. Set Provider Options | ||
|
||
```typescript | ||
import WalletLink from "walletlink"; | ||
|
||
const providerOptions = { | ||
walletlink: { | ||
package: WalletLink, // Required | ||
options: { | ||
infuraId: "INFURA_ID", // Required unless you provide a JSON RPC url; see `rpc` below | ||
rpc: "", // Optional if `infuraId` is provided; otherwise it's required | ||
chainId: 1, // Optional. It defaults to 1 if not provided | ||
appName: "My Awesome App", // Required | ||
appLogoUrl: null, // Optional. Application logo image URL. favicon is used if unspecified | ||
darkMode: false // Optional. Use dark theme, defaults to false | ||
} | ||
} | ||
}; | ||
``` | ||
|
||
[For more information on WalletLink Web3 provider](https://github.com/walletlink/walletlink). |
Oops, something went wrong.