-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83276d0
commit ce46fba
Showing
61 changed files
with
246 additions
and
194 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 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,58 @@ | ||
/** | ||
* Creating a sidebar enables you to: | ||
- create an ordered group of docs | ||
- render a sidebar for each doc of that group | ||
- provide next/previous navigation | ||
The sidebars can be generated from the filesystem, or explicitly defined here. | ||
Create as many sidebars as you want. | ||
*/ | ||
|
||
// @ts-check | ||
|
||
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ | ||
const sidebar = { | ||
// By default, Docusaurus generates a sidebar from the docs folder structure | ||
// snapsSidebar: [{type: 'autogenerated', dirName: '.'}], | ||
|
||
// But you can create a sidebar manually | ||
sdkSidebar: [ | ||
"index", | ||
{ | ||
type: "category", | ||
label: "Get started", | ||
link: { type: "generated-index", slug: "/get-started" }, | ||
collapsed: false, | ||
items: [{ type: "autogenerated", dirName: "get-started" }], | ||
}, | ||
{ | ||
type: "category", | ||
label: "How to", | ||
link: { type: "generated-index", slug: "/how-to" }, | ||
collapsed: false, | ||
items: [{ type: "autogenerated", dirName: "how-to" }], | ||
}, | ||
{ | ||
type: "category", | ||
label: "Concepts", | ||
link: { type: "generated-index", slug: "/concepts" }, | ||
collapsed: false, | ||
items: [{ type: "autogenerated", dirName: "concepts" }], | ||
}, | ||
{ | ||
type: "category", | ||
label: "Tutorials", | ||
link: { type: "generated-index", slug: "/tutorials" }, | ||
collapsed: false, | ||
items: [{ type: "autogenerated", dirName: "tutorials" }], | ||
}, | ||
{ | ||
type: "category", | ||
label: "Reference", | ||
link: { type: "generated-index", slug: "/reference" }, | ||
collapsed: false, | ||
items: [{ type: "autogenerated", dirName: "reference" }], | ||
}, | ||
], | ||
}; | ||
|
||
module.exports = sidebar; |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
7 changes: 1 addition & 6 deletions
7
wallet/concepts/sdk/connections.md → sdk/concepts/connections.md
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
6 changes: 2 additions & 4 deletions
6
...w-to/use-sdk/3rd-party-libraries/index.md → sdk/get-started/3rd-party-libraries/index.md
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,14 +1,12 @@ | ||
--- | ||
sidebar_label: Third-party libraries | ||
sidebar_position: 4 | ||
sidebar_position: 1 | ||
description: Set up the SDK using third-party libraries. | ||
tags: | ||
- JavaScript SDK | ||
--- | ||
|
||
# Use MetaMask SDK with third-party libraries | ||
|
||
Use [MetaMask SDK](../../../concepts/sdk/index.md) with the following third-party libraries: | ||
Use [MetaMask SDK](../../concepts/about-sdk.md) with the following third-party libraries: | ||
|
||
- [Web3-Onboard](web3-onboard.md) | ||
- [Wagmi](wagmi.md) |
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: 1 addition & 3 deletions
4
...e-sdk/3rd-party-libraries/web3-onboard.md → ...arted/3rd-party-libraries/web3-onboard.md
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
10 changes: 4 additions & 6 deletions
10
wallet/how-to/use-sdk/gaming/index.md → sdk/get-started/gaming/index.md
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,16 +1,14 @@ | ||
--- | ||
sidebar_label: Gaming | ||
sidebar_position: 2 | ||
sidebar_position: 4 | ||
description: Set up the SDK in your gaming dapp. | ||
tags: | ||
- Unity SDK | ||
--- | ||
|
||
# Use MetaMask SDK with gaming dapps | ||
|
||
Import [MetaMask SDK](../../../concepts/sdk/index.md) into your gaming dapp to enable your users | ||
Import [MetaMask SDK](../../concepts/about-sdk.md) into your gaming dapp to enable your users | ||
to easily connect with their MetaMask Mobile wallet. | ||
See the instructions for the following gaming platforms: | ||
|
||
- [Unity](unity/index.md) | ||
- [Unreal Engine](unreal-engine.md) (coming soon) | ||
- [Unity](unity.md) | ||
- Unreal Engine (coming soon) |
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
4 changes: 1 addition & 3 deletions
4
wallet/how-to/use-sdk/javascript/index.md → sdk/get-started/javascript/index.md
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,8 @@ | ||
{ | ||
"label": "Gaming", | ||
"position": 3, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "how-to/gaming" | ||
} | ||
} |
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,8 @@ | ||
{ | ||
"label": "Unity", | ||
"position": 1, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "how-to/gaming/unity" | ||
} | ||
} |
2 changes: 0 additions & 2 deletions
2
.../use-sdk/gaming/unity/connect-and-sign.md → sdk/how-to/gaming/unity/connect-and-sign.md
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,8 +1,6 @@ | ||
--- | ||
sidebar_position: 1 | ||
sidebar_label: Connect and sign | ||
tags: | ||
- Unity SDK | ||
--- | ||
|
||
# Connect and sign in Unity | ||
|
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
Oops, something went wrong.