Skip to content

Commit 302f39a

Browse files
committed
Add XRPL and Multi chain examples
1 parent b8baf28 commit 302f39a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+20364
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Web3Auth (`@web3auth/no-modal`) x Multi-Chain
2+
3+
[![Web3Auth](https://img.shields.io/badge/Web3Auth-SDK-blue)](https://web3auth.io/docs/sdk/pnp/web/no-modal)
4+
[![Web3Auth](https://img.shields.io/badge/Web3Auth-Community-cyan)](https://community.web3auth.io)
5+
6+
[Join our Community Portal](https://community.web3auth.io/) to get support and stay up to date with the latest news and updates.
7+
8+
This example demonstrates how to use Web3Auth with multiple chains.
9+
10+
## How to Use
11+
12+
### One-Click Deploy to Vercel
13+
14+
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FWeb3Auth%2Fweb3auth-pnp-examples%2Ftree%2Fmain%2Fweb-no-modal-sdk%2Fblockchain-connection-examples%2Fmulti-chain-no-modal-example&project-name=w3a-multi-chain-no-modal&repository-name=w3a-multi-chain-no-modal)
15+
16+
### Download Manually
17+
18+
```bash
19+
npx degit Web3Auth/web3auth-pnp-examples/web-no-modal-sdk/blockchain-connection-examples/multi-chain-no-modal-example w3a-example
20+
```
21+
22+
Install & Run:
23+
24+
```bash
25+
cd w3a-example
26+
npm install
27+
npm run start
28+
# or
29+
cd w3a-example
30+
yarn
31+
yarn start
32+
```
33+
34+
## Important Links
35+
36+
- [Website](https://web3auth.io)
37+
- [Docs](https://web3auth.io/docs)
38+
- [Guides](https://web3auth.io/docs/guides)
39+
- [SDK / API References](https://web3auth.io/docs/sdk)
40+
- [Pricing](https://web3auth.io/pricing.html)
41+
- [Community Portal](https://community.web3auth.io)
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<script type="module">
5+
import { Buffer } from "buffer";
6+
import process from "process";
7+
window.Buffer = Buffer;
8+
window.process = process;
9+
</script>
10+
<meta charset="utf-8" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1" />
12+
<meta name="theme-color" content="#000000" />
13+
<meta name="description" content="Web site created using create-react-app but later moved to vite" />
14+
15+
<title>Web3auth EVM Modal Demo App</title>
16+
</head>
17+
<body>
18+
<noscript>You need to enable JavaScript to run this app.</noscript>
19+
<div id="root"></div>
20+
21+
<script type="module" src="/src/index.tsx"></script>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)