Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0b79037
SDK new structure PoC
alexandratran Sep 23, 2025
44a6248
edits
alexandratran Sep 24, 2025
f234baf
remove custom reference component
alexandratran Sep 24, 2025
f331654
edits
alexandratran Sep 25, 2025
e2f4b8b
Merge branch 'main' into sdk-new-structure
alexandratran Sep 30, 2025
ef20ee1
fix links, update redirects, "metamask wallet sdk"
alexandratran Sep 30, 2025
39b9b16
Merge branch 'main' into sdk-new-structure
alexandratran Oct 16, 2025
905d9a8
add simplified api reference with two examples
alexandratran Oct 18, 2025
549887c
missing files
alexandratran Oct 18, 2025
1b97b2c
Merge branch 'main' into sdk-new-structure
alexandratran Oct 20, 2025
bb103fb
remove starknet docs
alexandratran Oct 21, 2025
8216d8b
copy over solana docs
alexandratran Oct 21, 2025
34aed2c
Merge branch 'main' into sdk-new-structure
alexandratran Oct 22, 2025
d64e8a4
Merge branch 'main' into sdk-new-structure
alexandratran Oct 23, 2025
e02092a
Update terminology and restructure EVM docs
alexandratran Oct 23, 2025
956c09a
fix broken links
alexandratran Oct 23, 2025
86d2dfc
Merge branch 'main' into sdk-new-structure
alexandratran Nov 4, 2025
f70f940
fix broken links
alexandratran Nov 4, 2025
e1e0008
Add/update Solana Wallet Adapter docs (#2443)
alexandratran Nov 7, 2025
37a4d06
Merge branch 'main' into sdk-new-structure
alexandratran Nov 10, 2025
30d0439
Update mobile products menu
alexandratran Nov 10, 2025
3db005f
Update MM Connect EVM JS code samples with potential new usage (#2454)
alexandratran Nov 12, 2025
d122361
Merge branch 'main' into sdk-new-structure
alexandratran Nov 13, 2025
360383d
Remove ParserOpenRPC component and replace usage in Linea services
alexandratran Nov 14, 2025
98476fe
Merge branch 'main' into sdk-new-structure
alexandratran Nov 18, 2025
c04fb6d
fix broken link
alexandratran Nov 18, 2025
b034e01
Add more multichain info (#2479)
alexandratran Nov 18, 2025
77bb9a9
Merge branch 'main' into sdk-new-structure
alexandratran Nov 27, 2025
b4716d6
Enhance JS section {WIP} (#2450)
shahbaz17 Nov 27, 2025
2a6e4ab
Add view & wagmi options
shahbaz17 Nov 27, 2025
6cf2880
Merge branch 'main' into sdk-new-structure
alexandratran Nov 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove custom reference component
  • Loading branch information
alexandratran committed Sep 24, 2025
commit f234bafbb41cc31ea04dcd21ef9978c2bd000002
2 changes: 1 addition & 1 deletion sdk-sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const sdkSidebar = {
collapsible: true,
collapsed: true,
link: { type: "doc", id: "evm/connect/reference/json-rpc-methods/index" },
items: [{ type: "autogenerated", dirName: "evm/connect/reference/json-rpc-methods" }],
items: [],
},
],
},
Expand Down
83 changes: 0 additions & 83 deletions src/components/CustomReferencePage/index.tsx

This file was deleted.

46 changes: 0 additions & 46 deletions src/components/CustomReferencePage/styles.module.css

This file was deleted.

16 changes: 9 additions & 7 deletions src/plugins/plugin-json-rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,23 +69,23 @@ async function fetchMultipleData(
}

export const RPC_NETWORK_URL = 'https://sot-network-methods.vercel.app/specs'
export const MM_RPC_URL = 'https://metamask.github.io/api-specs/latest/openrpc.json'
export const MM_REF_PATH = 'sdk/evm/connect/reference/json-rpc-methods'
// export const MM_RPC_URL = 'https://metamask.github.io/api-specs/latest/openrpc.json'
// export const MM_REF_PATH = 'sdk/evm/connect/reference/json-rpc-methods'

export enum NETWORK_NAMES {
linea = 'linea',
metamask = 'metamask',
// metamask = 'metamask',
}

const requests = [
{
url: `${RPC_NETWORK_URL}/${NETWORK_NAMES.linea}`,
name: NETWORK_NAMES.linea,
},
{
url: MM_RPC_URL,
name: NETWORK_NAMES.metamask,
},
// {
// url: MM_RPC_URL,
// name: NETWORK_NAMES.metamask,
// },
]

export const prepareLinkItems = (
Expand Down Expand Up @@ -129,6 +129,7 @@ export default function useNetworksMethodPlugin() {
async contentLoaded({ content, actions }) {
const { addRoute, createData, setGlobalData } = actions
setGlobalData({ netData: content })
/*
const dynamicRoutes = content.find(item => item.name === NETWORK_NAMES.metamask)
if (dynamicRoutes) {
const methodsData = await createData(
Expand All @@ -147,6 +148,7 @@ export default function useNetworksMethodPlugin() {
})
}
}
*/
},
configureWebpack() {
return {
Expand Down
Loading