-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from reown-com/docs-restructure
Docs Update: Restructuring the sidebar according to order of importance and categories
- Loading branch information
Showing
15 changed files
with
158 additions
and
24 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
docs/appkit/features/one-click-auth.mdx → .../appkit/authentication/one-click-auth.mdx
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
4 changes: 2 additions & 2 deletions
4
docs/appkit/features/socials.mdx → docs/appkit/authentication/socials.mdx
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
pagination_next: appkit/react/core/installation | ||
title: Multichain | ||
--- | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
pagination_next: appkit/react/core/installation | ||
title: On-Ramp | ||
--- | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
pagination_next: appkit/react/transactions/swaps | ||
title: Swaps | ||
--- | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
pagination_next: appkit/react/transactions/swaps | ||
title: Telegram MiniApps | ||
--- | ||
|
||
|
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,113 @@ | ||
--- | ||
title: EVM | ||
--- | ||
|
||
import Button from '../../components/button/index.js' | ||
import Container from '../../components/Container.js' | ||
import Wrapper from '../../components/Home/Wrapper.js' | ||
import W3MQuickStart from '../../components/W3MQuickStart.js' | ||
import useBaseUrl from '@docusaurus/useBaseUrl' | ||
import ReactPlayer from 'react-player' | ||
|
||
import reactLogo from '../../../static/assets/home/reactLogo.png' | ||
import nextjsLogo from '../../../static/assets/home/nextjsLogo.png' | ||
import htmlLogo from '../../../static/assets/home/htmlLogo.png' | ||
import vueLogo from '../../../static/assets/home/vueLogo.png' | ||
import androidLogo from '../../../static/assets/home/androidLogo.png' | ||
import iosLogo from '../../../static/assets/home/iosLogo.png' | ||
import rnLogo from '../../../static/assets/home/rnLogo.png' | ||
import flutterLogo from '../../../static/assets/home/flutterLogo.png' | ||
import unityLogo from '../../../static/assets/home/unityLogo.png' | ||
import javascriptLogo from '../../../static/assets/home/javascriptLogo.png' | ||
|
||
# EVM Compatible Chains | ||
|
||
## Support for all EVM Chains | ||
The AppKit SDK supports all EVM-compatible chains, allowing users to connect their EVM wallets to Web3 applications. As long as the EVM chain you are trying to configure is included in [Viem's package](https://github.com/wevm/viem/blob/main/src/chains/index.ts), AppKit will support it. | ||
|
||
<div style={{ | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
}}> | ||
<ReactPlayer url={useBaseUrl('/img/EVM.mp4')} playing loop width="100%" height="100%"/> | ||
</div> | ||
|
||
**AppKit provides a simple, secure, and seamless in-app experience for users looking to transact within web3.** | ||
|
||
<Button name="Try Demo" url="https://appkit-lab.reown.com/library/solana/" /> | ||
|
||
## Get Started | ||
|
||
<Wrapper | ||
type="large" | ||
fit={false} | ||
items={[ | ||
{ | ||
name: 'React', | ||
type: 'react', | ||
description: 'Get started with AppKit in React.', | ||
icon: reactLogo, | ||
href: '../react/core/installation' | ||
}, | ||
{ | ||
name: 'Next.js', | ||
type: 'next', | ||
description: 'Get started with AppKit in Next.js.', | ||
icon: nextjsLogo, | ||
href: '../next/core/installation', | ||
isWhite: true | ||
}, | ||
{ | ||
name: 'Vue', | ||
type: 'vue', | ||
description: 'Get started with AppKit in Vue.', | ||
icon: vueLogo, | ||
href: '../vue/core/installation' | ||
}, | ||
{ | ||
name: 'JavaScript', | ||
type: 'javascript', | ||
description: 'Get started with AppKit in JavaScript.', | ||
icon: javascriptLogo, | ||
href: '../javascript/core/installation' | ||
}, | ||
{ | ||
name: 'React Native', | ||
type: 'react-native', | ||
description: 'Get started with AppKit in React Native.', | ||
icon: rnLogo, | ||
href: '../react-native/core/installation' | ||
}, | ||
{ | ||
name: 'Flutter', | ||
type: 'flutter', | ||
description: 'Get started with AppKit in Flutter.', | ||
icon: flutterLogo, | ||
href: '../flutter/core/installation' | ||
}, | ||
{ | ||
name: 'Android', | ||
type: 'android', | ||
description: 'Get started with AppKit in Android.', | ||
icon: androidLogo, | ||
href: '../android/core/installation' | ||
}, | ||
{ | ||
name: 'iOS', | ||
type: 'ios', | ||
description: 'Get started with AppKit in iOS.', | ||
icon: iosLogo, | ||
href: '../ios/core/installation', | ||
isWhite: true | ||
}, | ||
{ | ||
name: 'Unity', | ||
type: 'unity', | ||
description: 'Get started with AppKit in Unity.', | ||
icon: unityLogo, | ||
href: '../unity/core/installation', | ||
isWhite: true | ||
} | ||
]} | ||
/> |
20 changes: 14 additions & 6 deletions
20
docs/appkit/features/solana.mdx → docs/appkit/networks/solana.mdx
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
pagination_next: appkit/features/socials | ||
title: Overview | ||
--- | ||
|
||
|
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
Binary file not shown.
Binary file not shown.