From 535f77eef5a66992e7cd24462210daf4ff11f801 Mon Sep 17 00:00:00 2001 From: 0xbyt4 <35742124+0xbyt4@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:56:30 +0300 Subject: [PATCH 1/2] feat: add Aptos file upload example for testnet Adds a Next.js web app demonstrating Aptos native file upload to Shelby Protocol using @aptos-labs/wallet-adapter-react and @shelby-protocol/react hooks. - AIP-62 wallet auto-detection (Petra, Nightly, etc.) - Upload files with useUploadBlobs hook - Network.TESTNET (early access testnet) - Wallet address used directly as storage account (no derivation) --- apps/aptos/file-upload/.env.example | 2 + apps/aptos/file-upload/README.md | 92 +++ .../app/components/file-upload.tsx | 192 ++++++ .../file-upload/app/components/header.tsx | 20 + .../file-upload/app/components/providers.tsx | 29 + .../app/components/wallet-button.tsx | 185 ++++++ apps/aptos/file-upload/app/globals.css | 61 ++ apps/aptos/file-upload/app/layout.tsx | 37 ++ .../file-upload/app/lib/shelby-client.ts | 12 + apps/aptos/file-upload/app/page.tsx | 30 + apps/aptos/file-upload/eslint.config.mjs | 11 + apps/aptos/file-upload/next-env.d.ts | 6 + apps/aptos/file-upload/next.config.ts | 5 + apps/aptos/file-upload/package.json | 42 ++ apps/aptos/file-upload/postcss.config.mjs | 7 + apps/aptos/file-upload/tsconfig.json | 34 ++ pnpm-lock.yaml | 562 ++++++++++++++++-- pnpm-workspace.yaml | 1 + 18 files changed, 1269 insertions(+), 59 deletions(-) create mode 100644 apps/aptos/file-upload/.env.example create mode 100644 apps/aptos/file-upload/README.md create mode 100644 apps/aptos/file-upload/app/components/file-upload.tsx create mode 100644 apps/aptos/file-upload/app/components/header.tsx create mode 100644 apps/aptos/file-upload/app/components/providers.tsx create mode 100644 apps/aptos/file-upload/app/components/wallet-button.tsx create mode 100644 apps/aptos/file-upload/app/globals.css create mode 100644 apps/aptos/file-upload/app/layout.tsx create mode 100644 apps/aptos/file-upload/app/lib/shelby-client.ts create mode 100644 apps/aptos/file-upload/app/page.tsx create mode 100644 apps/aptos/file-upload/eslint.config.mjs create mode 100644 apps/aptos/file-upload/next-env.d.ts create mode 100644 apps/aptos/file-upload/next.config.ts create mode 100644 apps/aptos/file-upload/package.json create mode 100644 apps/aptos/file-upload/postcss.config.mjs create mode 100644 apps/aptos/file-upload/tsconfig.json diff --git a/apps/aptos/file-upload/.env.example b/apps/aptos/file-upload/.env.example new file mode 100644 index 0000000..9756a76 --- /dev/null +++ b/apps/aptos/file-upload/.env.example @@ -0,0 +1,2 @@ +# Shelby API key - get one from https://docs.shelby.xyz/sdks/typescript/acquire-api-keys +NEXT_PUBLIC_SHELBY_API_KEY=AG-xxx diff --git a/apps/aptos/file-upload/README.md b/apps/aptos/file-upload/README.md new file mode 100644 index 0000000..ac8251a --- /dev/null +++ b/apps/aptos/file-upload/README.md @@ -0,0 +1,92 @@ +# Aptos File Upload Example + +A Next.js example application demonstrating how Aptos developers can build a file upload dApp on [Shelby Protocol](https://shelby.xyz). This app allows users to connect their Aptos wallet and upload files to decentralized storage. + +## Features + +- Connect Aptos wallets via [@aptos-labs/wallet-adapter-react](https://www.npmjs.com/package/@aptos-labs/wallet-adapter-react) +- Upload files to Shelby's decentralized storage +- Native Aptos address as storage account (no derivation needed) +- Clean UI with file selection and upload status + +## Prerequisites + +- [Node.js](https://nodejs.org/) v22 or higher +- [pnpm](https://pnpm.io/) package manager +- An Aptos wallet (e.g., Petra, Nightly) +- A Shelby API key + +## Getting Started + +### 1. Clone the Repository + +```bash +git clone https://github.com/shelby-protocol/shelby-examples.git +cd shelby-examples/apps/aptos/file-upload +``` + +### 2. Install Dependencies + +From the monorepo root: + +```bash +pnpm install +``` + +### 3. Set Up Environment Variables + +Copy the example environment file: + +```bash +cp .env.example .env +``` + +### 4. Get Your Shelby API Key + +1. Visit the [Shelby API Keys documentation](https://docs.shelby.xyz/sdks/typescript/acquire-api-keys) +2. Follow the instructions to acquire your API key +3. Add your API key to the `.env` file: + +```env +NEXT_PUBLIC_SHELBY_API_KEY=your-api-key-here +``` + +### 5. Fund Your Account + +Testnet tokens (APT and ShelbyUSD) are available through the [Shelby Discord](https://discord.gg/shelbyserves). + +### 6. Run the Development Server + +```bash +pnpm dev +``` + +Open [http://localhost:3000](http://localhost:3000) in your browser. + +## How It Works + +This example uses the following packages: + +- [`@shelby-protocol/sdk`](https://docs.shelby.xyz/sdks/typescript) - Core TypeScript SDK for interacting with Shelby Protocol +- [`@shelby-protocol/react`](https://docs.shelby.xyz/sdks/typescript) - React hooks for blob uploads +- [`@aptos-labs/wallet-adapter-react`](https://www.npmjs.com/package/@aptos-labs/wallet-adapter-react) - Aptos wallet connection + +### Key Components + +- **FileUpload** - Main component handling file selection and upload +- **Header** - Navigation with wallet connection button +- **WalletButton** - Wallet connection with AIP-62 wallet detection +- **providers.tsx** - AptosWalletAdapterProvider and QueryClientProvider configuration + +### Storage Account + +With Aptos, your wallet address is directly used as your Shelby storage account. No derivation is needed unlike Ethereum or Solana cross-chain flows. + +## Learn More + +- [Shelby Documentation](https://docs.shelby.xyz) +- [Shelby Explorer](https://explorer.shelby.xyz) - View your uploaded files + +## License + +MIT diff --git a/apps/aptos/file-upload/app/components/file-upload.tsx b/apps/aptos/file-upload/app/components/file-upload.tsx new file mode 100644 index 0000000..d51440e --- /dev/null +++ b/apps/aptos/file-upload/app/components/file-upload.tsx @@ -0,0 +1,192 @@ +"use client"; + +import { useWallet } from "@aptos-labs/wallet-adapter-react"; +import { useUploadBlobs } from "@shelby-protocol/react"; +import type { ReactNode } from "react"; +import { useCallback, useRef, useState } from "react"; +import { shelbyClient } from "../lib/shelby-client"; + +type UploadStep = "idle" | "uploading" | "done" | "error"; + +export function FileUpload() { + const { connected, account, signAndSubmitTransaction } = useWallet(); + const fileInputRef = useRef(null); + + const storageAddress = account?.address?.toString(); + + const { mutateAsync: uploadBlobs, isPending } = useUploadBlobs({ + client: shelbyClient, + }); + + const [selectedFile, setSelectedFile] = useState(null); + const [step, setStep] = useState("idle"); + const [statusMessage, setStatusMessage] = useState(null); + + const clearFile = useCallback(() => { + setSelectedFile(null); + if (fileInputRef.current) { + fileInputRef.current.value = ""; + } + }, []); + + const handleFileChange = useCallback( + (e: React.ChangeEvent) => { + const file = e.target.files?.[0] ?? null; + setSelectedFile(file); + setStep("idle"); + setStatusMessage(null); + }, + [], + ); + + const handleUpload = useCallback(async () => { + if (!selectedFile || !storageAddress) return; + + try { + setStep("uploading"); + setStatusMessage("Uploading file to Shelby..."); + + const fileBytes = new Uint8Array(await selectedFile.arrayBuffer()); + + await uploadBlobs({ + signer: { account: storageAddress, signAndSubmitTransaction }, + blobs: [ + { + blobName: selectedFile.name, + blobData: fileBytes, + }, + ], + // 30 days from now in microseconds + expirationMicros: (1000 * 60 * 60 * 24 * 30 + Date.now()) * 1000, + }); + + setStep("done"); + const explorerUrl = `https://explorer.shelby.xyz/testnet/account/${storageAddress}/blobs`; + setStatusMessage( + <> + Successfully uploaded: {selectedFile.name}.{" "} + + View in Explorer + + , + ); + clearFile(); + } catch (err) { + setStep("error"); + const message = err instanceof Error ? err.message : "Unknown error"; + const cause = + err instanceof Error && err.cause instanceof Error + ? err.cause.message + : undefined; + setStatusMessage( + cause ? `Error: ${message} — ${cause}` : `Error: ${message}`, + ); + } + }, [ + selectedFile, + storageAddress, + signAndSubmitTransaction, + uploadBlobs, + clearFile, + ]); + + const handleSelectFile = useCallback(() => { + fileInputRef.current?.click(); + }, []); + + const isProcessing = step === "uploading" || isPending; + + if (!connected) { + return ( +
+
+

Upload File to Shelby

+

+ Connect your wallet to upload files to decentralized storage. +

+
+
+ Wallet not connected +
+
+ ); + } + + return ( +
+
+

Upload File to Shelby

+

+ Upload any file to Shelby's decentralized storage using your + Aptos wallet. +

+
+ + {/* File Input */} +
+ + +
+ {selectedFile ? ( +
+

{selectedFile.name}

+

+ {(selectedFile.size / 1024).toFixed(1)} KB +

+
+ ) : ( +
+

Click to select a file

+
+ )} +
+ + {/* Upload Button */} + +
+ + {/* Status Message */} + {statusMessage && ( +
+ {statusMessage} +
+ )} + + {/* Storage Account Info */} +
+

+ Storage Account:{" "} + {storageAddress} +

+
+
+ ); +} diff --git a/apps/aptos/file-upload/app/components/header.tsx b/apps/aptos/file-upload/app/components/header.tsx new file mode 100644 index 0000000..4641ae8 --- /dev/null +++ b/apps/aptos/file-upload/app/components/header.tsx @@ -0,0 +1,20 @@ +"use client"; + +import Link from "next/link"; +import { WalletButton } from "./wallet-button"; + +export function Header() { + return ( +
+
+ + + FU + + File Upload + + +
+
+ ); +} diff --git a/apps/aptos/file-upload/app/components/providers.tsx b/apps/aptos/file-upload/app/components/providers.tsx new file mode 100644 index 0000000..e34f4d7 --- /dev/null +++ b/apps/aptos/file-upload/app/components/providers.tsx @@ -0,0 +1,29 @@ +"use client"; + +import { Network } from "@aptos-labs/ts-sdk"; +import { AptosWalletAdapterProvider } from "@aptos-labs/wallet-adapter-react"; +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; + +const queryClient = new QueryClient(); + +export function Providers({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + {children} + + + ); +} diff --git a/apps/aptos/file-upload/app/components/wallet-button.tsx b/apps/aptos/file-upload/app/components/wallet-button.tsx new file mode 100644 index 0000000..e92fefb --- /dev/null +++ b/apps/aptos/file-upload/app/components/wallet-button.tsx @@ -0,0 +1,185 @@ +"use client"; + +import { useWallet } from "@aptos-labs/wallet-adapter-react"; +import { useEffect, useRef, useState } from "react"; +import { createPortal } from "react-dom"; + +function formatAddress(address?: string) { + if (!address) return "Not connected"; + return `${address.slice(0, 6)}...${address.slice(-4)}`; +} + +export function WalletButton() { + const { connected, account, wallets, connect, disconnect } = useWallet(); + const [isModalOpen, setIsModalOpen] = useState(false); + const [isMenuOpen, setIsMenuOpen] = useState(false); + const menuRef = useRef(null); + + const walletAddress = account?.address?.toString(); + + // Close modal when connection succeeds + useEffect(() => { + if (connected) { + // eslint-disable-next-line react-hooks/set-state-in-effect + setIsModalOpen(false); + } + }, [connected]); + + // Close dropdown when clicking outside + useEffect(() => { + if (!isMenuOpen) return; + + function handleClickOutside(e: MouseEvent) { + if (menuRef.current && !menuRef.current.contains(e.target as Node)) { + setIsMenuOpen(false); + } + } + + document.addEventListener("mousedown", handleClickOutside); + return () => document.removeEventListener("mousedown", handleClickOutside); + }, [isMenuOpen]); + + return ( +
+ + + {isMenuOpen && connected && ( +
+ {/* Wallet Address */} +
+
Wallet address
+
+ + {formatAddress(walletAddress)} + + +
+
+ + {/* Disconnect */} +
+ +
+
+ )} + + {isModalOpen && + !connected && + createPortal( +
setIsModalOpen(false)} + onKeyDown={(e) => e.key === "Escape" && setIsModalOpen(false)} + role="dialog" + > +
e.stopPropagation()} + > +
+
+

Select a wallet

+

+ Choose an Aptos wallet to continue. +

+
+ +
+ +
+ {wallets && wallets.length > 0 ? ( + wallets.map((w) => ( + + )) + ) : ( +
+ No Aptos wallets detected. Install{" "} + + Petra + {" "} + to get started. +
+ )} +
+
+
, + document.body, + )} +
+ ); +} diff --git a/apps/aptos/file-upload/app/globals.css b/apps/aptos/file-upload/app/globals.css new file mode 100644 index 0000000..6a2c2ad --- /dev/null +++ b/apps/aptos/file-upload/app/globals.css @@ -0,0 +1,61 @@ +@import "tailwindcss"; + +:root { + --background: #ffffff; + --foreground: oklch(0.145 0 0); + --border-strong: oklch(0.839 0.0187 78.23); + --border-low: oklch(0.927 0.0122 96.43); + --accent: oklch(0 0 0); + --muted: #3a3a3a; + --cream: oklch(0.9553 0.0029 84.56); + --card: #ffffff; + --card-foreground: oklch(0.145 0 0); + --radius: 0.625rem; + --font-sans: var(--font-inter), system-ui, sans-serif; + --font-mono: var(--font-geist-mono), ui-monospace, monospace; +} + +@media (prefers-color-scheme: dark) { + :root { + --background: oklch(0.145 0 0); + --foreground: oklch(0.985 0 0); + --border-strong: oklch(1 0 0 / 0.12); + --border-low: oklch(1 0 0 / 0.08); + --accent: oklch(0.922 0 0); + --muted: oklch(0.75 0.01 260); + --cream: oklch(0.22 0.009 70.82); + --card: oklch(0.205 0 0); + --card-foreground: oklch(0.985 0 0); + } +} + +@theme inline { + --color-background: var(--background); + --color-bg1: var(--background); + --color-foreground: var(--foreground); + --color-cream: var(--cream); + --color-border: var(--border-strong); + --color-border-strong: var(--border-strong); + --color-border-low: var(--border-low); + --color-primary: var(--accent); + --color-muted: var(--muted); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --font-sans: var(--font-sans); + --font-mono: var(--font-mono); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); +} + +@layer base { + * { + @apply border-border outline-transparent; + } + + body { + @apply bg-bg1 text-foreground antialiased; + font-family: var(--font-sans); + color-scheme: light dark; + } +} diff --git a/apps/aptos/file-upload/app/layout.tsx b/apps/aptos/file-upload/app/layout.tsx new file mode 100644 index 0000000..b42698d --- /dev/null +++ b/apps/aptos/file-upload/app/layout.tsx @@ -0,0 +1,37 @@ +import type { Metadata } from "next"; +import { Geist_Mono, Inter } from "next/font/google"; +import "./globals.css"; +import { Providers } from "./components/providers"; + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], + display: "swap", +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", + subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Aptos File Upload", + description: "Upload files to Shelby using your Aptos wallet", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + {children} + + + ); +} diff --git a/apps/aptos/file-upload/app/lib/shelby-client.ts b/apps/aptos/file-upload/app/lib/shelby-client.ts new file mode 100644 index 0000000..aa79f31 --- /dev/null +++ b/apps/aptos/file-upload/app/lib/shelby-client.ts @@ -0,0 +1,12 @@ +"use client"; + +import { Network } from "@aptos-labs/ts-sdk"; +import { ShelbyClient } from "@shelby-protocol/sdk/browser"; + +/** + * Shared Shelby client for all storage interactions. + */ +export const shelbyClient = new ShelbyClient({ + network: Network.TESTNET, + apiKey: process.env.NEXT_PUBLIC_SHELBY_API_KEY || "", +}); diff --git a/apps/aptos/file-upload/app/page.tsx b/apps/aptos/file-upload/app/page.tsx new file mode 100644 index 0000000..f583f93 --- /dev/null +++ b/apps/aptos/file-upload/app/page.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { FileUpload } from "./components/file-upload"; +import { Header } from "./components/header"; + +export default function Home() { + return ( +
+
+ +
+
+

+ Aptos File Upload +

+

+ Upload files to Shelby +

+

+ Connect your Aptos wallet and upload files to decentralized storage. + Files are stored on Shelby Protocol with 30-day expiration on + testnet. +

+
+ + +
+
+ ); +} diff --git a/apps/aptos/file-upload/eslint.config.mjs b/apps/aptos/file-upload/eslint.config.mjs new file mode 100644 index 0000000..c03c2a9 --- /dev/null +++ b/apps/aptos/file-upload/eslint.config.mjs @@ -0,0 +1,11 @@ +import { defineConfig, globalIgnores } from "eslint/config"; +import nextVitals from "eslint-config-next/core-web-vitals"; +import nextTs from "eslint-config-next/typescript"; + +const eslintConfig = defineConfig([ + ...nextVitals, + ...nextTs, + globalIgnores([".next/**", "out/**", "build/**", "next-env.d.ts"]), +]); + +export default eslintConfig; diff --git a/apps/aptos/file-upload/next-env.d.ts b/apps/aptos/file-upload/next-env.d.ts new file mode 100644 index 0000000..c4b7818 --- /dev/null +++ b/apps/aptos/file-upload/next-env.d.ts @@ -0,0 +1,6 @@ +/// +/// +import "./.next/dev/types/routes.d.ts"; + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/apps/aptos/file-upload/next.config.ts b/apps/aptos/file-upload/next.config.ts new file mode 100644 index 0000000..cb651cd --- /dev/null +++ b/apps/aptos/file-upload/next.config.ts @@ -0,0 +1,5 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = {}; + +export default nextConfig; diff --git a/apps/aptos/file-upload/package.json b/apps/aptos/file-upload/package.json new file mode 100644 index 0000000..dcd1501 --- /dev/null +++ b/apps/aptos/file-upload/package.json @@ -0,0 +1,42 @@ +{ + "name": "aptos-file-upload", + "description": "Simple Aptos file upload to Shelby using @aptos-labs/wallet-adapter-react", + "keywords": [ + "nextjs", + "react", + "aptos", + "shelby", + "tailwind", + "typescript" + ], + "version": "0.0.0", + "private": true, + "scripts": { + "build": "next build", + "dev": "next dev", + "lint": "eslint", + "fmt": "prettier --write .", + "start": "next start" + }, + "dependencies": { + "@aptos-labs/ts-sdk": "^5.1.1", + "@aptos-labs/wallet-adapter-react": "^3.7.3", + "@shelby-protocol/react": "latest", + "@shelby-protocol/sdk": "latest", + "@tanstack/react-query": "^5.90.16", + "next": "16.0.10", + "react": "^19.1.0", + "react-dom": "^19.1.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "eslint": "^9", + "eslint-config-next": "16.0.10", + "prettier": "^3.6.2", + "tailwindcss": "^4", + "typescript": "^5" + } +} diff --git a/apps/aptos/file-upload/postcss.config.mjs b/apps/aptos/file-upload/postcss.config.mjs new file mode 100644 index 0000000..61e3684 --- /dev/null +++ b/apps/aptos/file-upload/postcss.config.mjs @@ -0,0 +1,7 @@ +const config = { + plugins: { + "@tailwindcss/postcss": {}, + }, +}; + +export default config; diff --git a/apps/aptos/file-upload/tsconfig.json b/apps/aptos/file-upload/tsconfig.json new file mode 100644 index 0000000..15c7b97 --- /dev/null +++ b/apps/aptos/file-upload/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "target": "ES2020", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "react-jsx", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./*"] + } + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts", + "**/*.mts" + ], + "exclude": ["node_modules"] +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0989b1..608afd8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -40,7 +40,7 @@ importers: version: 8.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@types/react@18.3.27)(@wallet-standard/core@1.1.1)(react@19.2.4) '@shelby-protocol/sdk': specifier: latest - version: 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) '@shelby-protocol/ui': specifier: workspace:* version: link:../../packages/ui @@ -76,6 +76,61 @@ importers: specifier: ^18.3.1 version: 18.3.7(@types/react@18.3.27) + apps/aptos/file-upload: + dependencies: + '@aptos-labs/ts-sdk': + specifier: ^5.1.1 + version: 5.2.1(got@11.8.6) + '@aptos-labs/wallet-adapter-react': + specifier: ^3.7.3 + version: 3.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@types/react@19.2.10)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)(react@19.2.4) + '@shelby-protocol/react': + specifier: latest + version: 1.0.3(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-adapter-react@3.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@types/react@19.2.10)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)(react@19.2.4))(@shelby-protocol/sdk@0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)))(@tanstack/react-query@5.90.20(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@shelby-protocol/sdk': + specifier: latest + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + '@tanstack/react-query': + specifier: ^5.90.16 + version: 5.90.20(react@19.2.4) + next: + specifier: 16.0.10 + version: 16.0.10(@babel/core@7.28.6)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + react: + specifier: ^19.1.0 + version: 19.2.4 + react-dom: + specifier: ^19.1.0 + version: 19.2.4(react@19.2.4) + devDependencies: + '@tailwindcss/postcss': + specifier: ^4 + version: 4.1.18 + '@types/node': + specifier: ^20 + version: 20.19.30 + '@types/react': + specifier: ^19 + version: 19.2.10 + '@types/react-dom': + specifier: ^19 + version: 19.2.3(@types/react@19.2.10) + eslint: + specifier: ^9 + version: 9.39.2(jiti@2.6.1) + eslint-config-next: + specifier: 16.0.10 + version: 16.0.10(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + prettier: + specifier: ^3.6.2 + version: 3.8.1 + tailwindcss: + specifier: ^4 + version: 4.1.18 + typescript: + specifier: ^5 + version: 5.9.3 + apps/cross-chain-accounts: dependencies: '@aptos-labs/derived-wallet-ethereum': @@ -92,7 +147,7 @@ importers: version: 8.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@types/react@18.3.27)(@wallet-standard/core@1.1.1)(react@19.2.4) '@shelby-protocol/sdk': specifier: latest - version: 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) '@shelby-protocol/ui': specifier: workspace:* version: link:../../packages/ui @@ -123,7 +178,7 @@ importers: version: 5.2.1(got@11.8.6) '@shelby-protocol/sdk': specifier: latest - version: 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) devDependencies: '@biomejs/biome': specifier: 2.2.4 @@ -230,7 +285,7 @@ importers: version: 5.2.1(got@11.8.6) '@shelby-protocol/sdk': specifier: latest - version: 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) devDependencies: '@biomejs/biome': specifier: 2.2.4 @@ -249,13 +304,13 @@ importers: dependencies: '@shelby-protocol/react': specifier: latest - version: 0.0.5(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@shelby-protocol/sdk@0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)))(@tanstack/react-query@5.90.20(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + version: 1.0.3(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-adapter-react@3.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@types/react@19.2.10)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)(react@19.2.4))(@shelby-protocol/sdk@0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)))(@tanstack/react-query@5.90.20(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) '@shelby-protocol/sdk': specifier: latest - version: 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) '@shelby-protocol/solana-kit': specifier: latest - version: 0.2.0(@wallet-standard/core@1.1.1)(bs58@6.0.0)(bufferutil@4.1.0)(got@11.8.6)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@5.0.10) + version: 0.2.6(@wallet-standard/core@1.1.1)(bs58@6.0.0)(bufferutil@4.1.0)(got@11.8.6)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@5.0.10) '@solana/client': specifier: ^1.2.0 version: 1.7.0(@solana/sysvars@5.5.1(typescript@5.9.3))(@types/react@19.2.10)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.6.0(react@19.2.4))(utf-8-validate@5.0.10) @@ -298,7 +353,7 @@ importers: version: 9.39.2(jiti@2.6.1) eslint-config-next: specifier: 16.0.10 - version: 16.0.10(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + version: 16.0.10(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) prettier: specifier: ^3.6.2 version: 3.8.1 @@ -319,13 +374,13 @@ importers: version: 0.31.1(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@5.0.10) '@shelby-protocol/react': specifier: latest - version: 0.0.5(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@shelby-protocol/sdk@0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)))(@tanstack/react-query@5.90.20(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + version: 1.0.3(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-adapter-react@3.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@types/react@19.2.10)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)(react@19.2.4))(@shelby-protocol/sdk@0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)))(@tanstack/react-query@5.90.20(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) '@shelby-protocol/sdk': specifier: latest - version: 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) '@shelby-protocol/solana-kit': specifier: latest - version: 0.2.0(@wallet-standard/core@1.1.1)(bs58@6.0.0)(bufferutil@4.1.0)(got@11.8.6)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@5.0.10) + version: 0.2.6(@wallet-standard/core@1.1.1)(bs58@6.0.0)(bufferutil@4.1.0)(got@11.8.6)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@5.0.10) '@solana/client': specifier: ^1.2.0 version: 1.7.0(@solana/sysvars@5.5.1(typescript@5.9.3))(@types/react@19.2.10)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.6.0(react@19.2.4))(utf-8-validate@5.0.10) @@ -398,7 +453,7 @@ importers: version: 5.2.1(got@11.8.6) '@shelby-protocol/sdk': specifier: latest - version: 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + version: 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) devDependencies: '@biomejs/biome': specifier: 2.2.4 @@ -517,6 +572,11 @@ packages: resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} + '@aptos-connect/wallet-adapter-plugin@2.8.0': + resolution: {integrity: sha512-xa+qeqLbPNBTWh8LzldvXJBW6E7xv4OW5TZ18lckmbWD9FZHKpd1rFgIizFHX1RX4j9PRhnfZCZo8RlMm2oUSA==} + peerDependencies: + '@aptos-labs/ts-sdk': ^1.33.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@aptos-connect/wallet-adapter-plugin@3.0.2': resolution: {integrity: sha512-6CvTUDktqGJFjp4M/FO5MHPHq3GtsL7JIpw5xCJjs19qLfhtRIKE+okjRhv7CrFyqcJroOIhCuZTqzPWEmTl+A==} peerDependencies: @@ -527,6 +587,13 @@ packages: peerDependencies: '@aptos-labs/ts-sdk': ^1.33.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@aptos-connect/web-transport@0.5.0': + resolution: {integrity: sha512-Rqy30VSiEVyvZ5jmegg358ZOHDzHzuK5uZ63RCcTnCARg1mb+epg6RwVD23W7JbuLhA50V1hBiu3ZTTFWgLN5w==} + peerDependencies: + '@aptos-labs/ts-sdk': ^1.33.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@aptos-labs/wallet-standard': ^0.5.0 + '@telegram-apps/bridge': ^1.0.0 + '@aptos-connect/web-transport@0.6.1': resolution: {integrity: sha512-wyzOsYnYltTduI1ZbHwOz5PDxQ0K1LuABOtllV9z+rhUdDABKGSOdCO/0L0ybI9LYE4epvTYxcn72B7rjIQkMg==} peerDependencies: @@ -544,12 +611,23 @@ packages: resolution: {integrity: sha512-sB7CokCM6s76SLJmccysbnFR+MDik6udKfj2+9ZsmTLV0/t73veIeCDKbvWJmbW267ibx4HiGbPI7L+1+yjEbQ==} hasBin: true + '@aptos-labs/aptos-client@1.2.0': + resolution: {integrity: sha512-pBlIAT/W+Qa0TOr/318U8r0Gxw/jfyRLcvDGMEXgcVrPqO9Qhwsmozw6LPPIZ963FB7smwIaMeexWFDs3zijcg==} + engines: {node: '>=15.10.0'} + deprecated: This version is deprecated. Please upgrade to version 2.1.0 or later. + peerDependencies: + axios: ^1.8.4 + got: ^11.8.6 + '@aptos-labs/aptos-client@2.1.0': resolution: {integrity: sha512-ttdY0qclRvbYAAwzijkFeipuqTfLFJnoXlNIm58tIw3DKhIlfYdR6iLqTeCpI23oOPghnO99FZecej/0MTrtuA==} engines: {node: '>=20.0.0'} peerDependencies: got: ^11.8.6 + '@aptos-labs/aptos-dynamic-transaction-composer@0.1.5': + resolution: {integrity: sha512-Xs8BSCcL4hnpYONFC2e2Kj/vqvMVJU9l70vN0RNMagYLsvyiyNgUo55I+5uCrhIgj68bgxFsSoKUh/XDpDqRiw==} + '@aptos-labs/derived-wallet-base@0.10.1': resolution: {integrity: sha512-+MAungqVURNEFzFkwHc76LSj9nb29fE3EvvB3babgJWogjFIBSoeRWA28JKoMx5hRr7oKuvdRNYmlvFN0lxJLg==} peerDependencies: @@ -583,26 +661,73 @@ packages: '@aptos-labs/gas-station-client@2.0.3': resolution: {integrity: sha512-zKy/gy6rHE9q9+58Oi+AjLukv1rGhVopAlBreil5TDvjVZvpIV4S05cXSRBVgo1UK7c+ClrXgKqCFgGn/q7udg==} + '@aptos-labs/script-composer-pack@0.0.9': + resolution: {integrity: sha512-Y3kA1rgF65HETgoTn2omDymsgO+fnZouPLrKJZ9sbxTGdOekIIHtGee3A2gk84eCqa02ZKBumZmP+IDCXRtU/g==} + + '@aptos-labs/ts-sdk@1.39.0': + resolution: {integrity: sha512-VFEWZsqb8Mto8XbLK8lDRdUvyHjp+geiwFxRzRcQK6HftMGB4bYuEsOI2Vy6u/TqkUft8DvmpV5yX027R5/SMQ==} + engines: {node: '>=20.0.0'} + deprecated: This version is deprecated, please upgrade to 5.2.1, or the latest version + '@aptos-labs/ts-sdk@5.2.1': resolution: {integrity: sha512-kazYjqfsPCBx2UJI+nYUOb6Ov7q7brSgYEfxp2sP27IeJWdDNa50lfs0WIpDJ92kQxdtlm9q3ZWw7Toh9f1gxQ==} engines: {node: '>=20.0.0'} + '@aptos-labs/wallet-adapter-core@4.25.0': + resolution: {integrity: sha512-TMiHvteU/DvL9p8npna32kRjCsJdiQgP83QhFLoZKV1rGhvB9NwCs1BnPzoCSTCkgfGkWqZGjVmhynX2p+HZEA==} + peerDependencies: + '@aptos-labs/ts-sdk': ^1.33.1 + aptos: ^1.21.0 + '@aptos-labs/wallet-adapter-core@8.2.0': resolution: {integrity: sha512-vN9CMMVSMT1b4pMKdwgvdc/CwYX8x91mxvhzmMfyhrPt6w4ydv/0Q/pj1fKcHPSlWtpWY48aphebBWSH3XGOow==} peerDependencies: '@aptos-labs/ts-sdk': ^5.1.1 + '@aptos-labs/wallet-adapter-react@3.8.0': + resolution: {integrity: sha512-g+mU6PROwCm14ihuLWgBUEKcBheAmQj7c67SBrc6wUD0EPTRreq0J2lkE+yQ+J9m78XHAdXxoi5Fg5EoxrGqiw==} + peerDependencies: + react: ^18 + '@aptos-labs/wallet-adapter-react@8.2.0': resolution: {integrity: sha512-IWpdeOEZ88wHNW3vmZI9L60MQbaP0bifrUsdDKNQwR0ZbivBhyowEzayQCvlloftgYWyIq6qvr/SFIX/+wzbtw==} peerDependencies: react: ^18.0.0 || ^19.0.0 + '@aptos-labs/wallet-standard@0.0.11': + resolution: {integrity: sha512-8dygyPBby7TaMJjUSyeVP4R1WC9D/FPpX9gVMMLaqTKCXrSbkzhGDxcuwbMZ3ziEwRmx3zz+d6BIJbDhd0hm5g==} + + '@aptos-labs/wallet-standard@0.1.0-ms.1': + resolution: {integrity: sha512-3aWEmdqMcll8D2lzhBZuYUW1o49TDpqw4QRAkHk00tSC3SwAkuukoW8g/M9lB5nHFxaX7UzuxeaYv8l6/mhJVQ==} + peerDependencies: + '@aptos-labs/ts-sdk': ^1.17.0 + '@wallet-standard/core': ^1.0.3 + + '@aptos-labs/wallet-standard@0.2.0': + resolution: {integrity: sha512-4aoO4MlqzrW+CtO83MwbHMMtu91DL5B7YKRvhJbRnVB4R+QCOwBI/aQTkNZbKBDfOplLlqWTTl6Li0l6e02YLQ==} + peerDependencies: + '@aptos-labs/ts-sdk': ^1.17.0 + '@wallet-standard/core': ^1.0.3 + '@aptos-labs/wallet-standard@0.5.2': resolution: {integrity: sha512-aFQOMLLRSmEYXHBGzhLGSOICoQRKqrtRyaMR7kDdyKtEI+4Ocgf2QeW+5yNZEUKoeWlydcBZGIuO7xAQpWU7dw==} peerDependencies: '@aptos-labs/ts-sdk': ^3.1.3 || ^4.0.0 || ^5.0.0 '@wallet-standard/core': ^1.0.3 + '@atomrigslab/aptos-wallet-adapter@0.1.21': + resolution: {integrity: sha512-LwT0OTOaGglctggMcihXLd4mzBFwRoJsR0aeFBHQRfTxZV1agNTgN/PxJl6N13+WYAvzc00j/WByxAmWgonorA==} + peerDependencies: + '@aptos-labs/ts-sdk': ^1.9.0 + + '@atomrigslab/dekey-web-wallet-provider@1.2.1': + resolution: {integrity: sha512-GMEGjARgle9lIRopvxm4uis+sRr/ih26HzBgFbnLsk8+G94Z5dE87EclAIGFQUSAxYj7SmSk6xpx7//qUJDW/A==} + engines: {node: '>=12.0.0'} + + '@atomrigslab/providers@1.1.0': + resolution: {integrity: sha512-QLYxSCVrxwlN1oZ7vLnZbKZxkbZ6QG77Bj4pmTEowIpTcq7qZdBtU9pn+vqJAso1nnA3+AkmPuE9Jnx7+Jo1zQ==} + engines: {node: '>=12.0.0'} + '@babel/code-frame@7.28.6': resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==} engines: {node: '>=6.9.0'} @@ -1099,6 +1224,12 @@ packages: peerDependencies: '@aptos-labs/ts-sdk': ^1.33.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@identity-connect/dapp-sdk@0.15.0': + resolution: {integrity: sha512-wWRQCWce1GhQTRu0SFURMFB80ErHw2sr1ZpK2bwPo99us1LmW6yRCETnOjRzVA04wSn/0B3ZvrlOT4i7lohe+Q==} + peerDependencies: + '@aptos-labs/ts-sdk': ^1.33.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@aptos-labs/wallet-standard': ^0.5.0 + '@identity-connect/dapp-sdk@0.16.1': resolution: {integrity: sha512-Zy1KMPSxLc5HRCSxORjYtTGG3S85RMdQ9oKm9m9v7ia6T0MS9V0JSWXF/mv2wTaW66EL+zMPzpWL8eCWyZC1wg==} peerDependencies: @@ -1281,6 +1412,10 @@ packages: resolution: {integrity: sha512-yUdzsJK04Ev98Ck4D7lmRNQ8FPioXYhEUZOMS01LXW8qTvPGiRVXmVltj2p4wrLkh0vW7u6nv0mNl5xzC5Qmfg==} engines: {node: '>=16.0.0'} + '@metamask/object-multiplex@1.3.0': + resolution: {integrity: sha512-czcQeVYdSNtabd+NcYQnrM69MciiJyd1qvKH8WM2Id3C0ZiUUX5Xa/MK+/VUk633DBhVOwdNzAKIQ33lGyA+eQ==} + engines: {node: '>=12.0.0'} + '@metamask/object-multiplex@2.1.0': resolution: {integrity: sha512-4vKIiv0DQxljcXwfpnbsXcfa5glMj5Zg9mqn4xpIWqkv6uJ2ma5/GtUfLFSxhlxnR8asRMv8dDmWya1Tc1sDFA==} engines: {node: ^16.20 || ^18.16 || >=20} @@ -1296,6 +1431,9 @@ packages: resolution: {integrity: sha512-1ugFO1UoirU2esS3juZanS/Fo8C8XYocCuBpfZI5N7ECtoG+zu0wF+uWZASik6CkO6w9n/Iebt4iI4pT0vptpg==} engines: {node: '>=16.0.0'} + '@metamask/safe-event-emitter@2.0.0': + resolution: {integrity: sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==} + '@metamask/safe-event-emitter@3.1.2': resolution: {integrity: sha512-5yb2gMI1BDm0JybZezeoX/3XhPDOtTbcFvpTXM9kxsoZjPZFh4XciqRbpD6N86HYZqWDhEaKUDuOyR0sQHEjMA==} engines: {node: '>=12.0.0'} @@ -1330,6 +1468,25 @@ packages: resolution: {integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g==} engines: {node: '>=16.0.0'} + '@microsoft/fetch-event-source@2.0.1': + resolution: {integrity: sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==} + + '@mizuwallet-sdk/aptos-wallet-adapter@0.3.2': + resolution: {integrity: sha512-YljOzWoaTTp+dGZ6p0vTQwVBYe9AQeCLNfLcmKzSWU14ktEflIeDk85xVD0WRgQUbfyW707/18JcmKA+7V12rg==} + peerDependencies: + '@mizuwallet-sdk/core': '>=1.4.0' + '@mizuwallet-sdk/protocol': 0.0.6 + + '@mizuwallet-sdk/core@1.4.0': + resolution: {integrity: sha512-03jKqKr+P4kCgcNQT2YNXmFBRVmeZ88vpEFKpQ9SaorCY4L9lF56kJS4Y+e/+A4Gb1bnqA7xuFmnEz13LjsZyg==} + peerDependencies: + '@aptos-labs/ts-sdk': '>=1.14.0' + '@mizuwallet-sdk/protocol': 0.0.2 + graphql-request: '>=7.0.1' + + '@mizuwallet-sdk/protocol@0.0.6': + resolution: {integrity: sha512-I6ibbdPmPqsqc4JfCfI9qplZ2RcqeUxawyYBNb3TNhibMqQhoVUUaczt9kLuML20ODTvvZW/ja+5S6PXSzWPiw==} + '@napi-rs/wasm-runtime@0.2.12': resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} @@ -1460,6 +1617,10 @@ packages: resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} engines: {node: '>= 16'} + '@noble/hashes@1.3.3': + resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} + engines: {node: '>= 16'} + '@noble/hashes@1.4.0': resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} engines: {node: '>= 16'} @@ -1991,6 +2152,9 @@ packages: '@scure/bip32@1.7.0': resolution: {integrity: sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==} + '@scure/bip39@1.2.1': + resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} + '@scure/bip39@1.3.0': resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} @@ -2028,12 +2192,12 @@ packages: '@aptos-labs/wallet-adapter-react': optional: true - '@shelby-protocol/react@0.0.5': - resolution: {integrity: sha512-Y4oU/eOUlClWZmthXPiPKB9Umw66SJXKvyscbfGEprUBSoyvPsrEHsjOhuGlYmkXwWQe68OIZFO6p91xJPsVTA==} + '@shelby-protocol/react@1.0.3': + resolution: {integrity: sha512-QT7g9ytKrjQ/6LNtlCYjSvMVYbMYfhTUTqp6zYqv2Y0N7im8Htco91/qEoProRwrRz+24oYbMNgAJLmSXWq1Uw==} peerDependencies: '@aptos-labs/ts-sdk': '>=5.0.0' '@aptos-labs/wallet-adapter-react': ^6.0.0 || ^7.0.0 - '@shelby-protocol/sdk': 0.0.9 + '@shelby-protocol/sdk': 0.2.3 '@tanstack/react-query': '>=5.0.0' react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 @@ -2050,8 +2214,13 @@ packages: peerDependencies: '@aptos-labs/ts-sdk': ^2.0.1 || ^3.0.0 || ^4.0.0 || ^5.0.0 - '@shelby-protocol/solana-kit@0.2.0': - resolution: {integrity: sha512-lKIBrVNZxeIod1RlG4VM+YcBbZIkIWLp9sBlae7H+EV7dzE/t5ECUuKb9MrH1a/S213rAnrV8OpxDazoYp39vw==} + '@shelby-protocol/sdk@0.2.4': + resolution: {integrity: sha512-9IAiHCnUFWl1Y32BKi97sdPYb+5iPkTZbsf3iiEbpvnuWw9LOPcL7FRZ9DSTm63BK+4hBzbvPvNRGtukbpmR6g==} + peerDependencies: + '@aptos-labs/ts-sdk': ^2.0.1 || ^3.0.0 || ^4.0.0 || ^5.0.0 + + '@shelby-protocol/solana-kit@0.2.6': + resolution: {integrity: sha512-iY9nGkA8o/cNV8NykIBMDCgHFdodiUjwQ7m153DCES83do7EWrB6vQ4z1NX6kJu5HaBKyad4RPfN2QWgpGNomQ==} peerDependencies: react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 @@ -2956,6 +3125,9 @@ packages: '@types/chai@5.2.3': resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + '@types/chrome@0.0.136': + resolution: {integrity: sha512-XDEiRhLkMd+SB7Iw3ZUIj/fov3wLd4HyTdLltVszkgl1dBfc3Rb7oPMVZ2Mz2TLqnF7Ow+StbR8E7r9lqpb4DA==} + '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} @@ -2968,6 +3140,15 @@ packages: '@types/estree@1.0.8': resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + '@types/filesystem@0.0.36': + resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==} + + '@types/filewriter@0.0.33': + resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==} + + '@types/har-format@1.2.16': + resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==} + '@types/http-cache-semantics@4.2.0': resolution: {integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==} @@ -3286,6 +3467,10 @@ packages: resolution: {integrity: sha512-DJDQhjKmSNVLKWItoKThJS+CsJQjR9AOBOirBVT1F9YpRyC9oYHE+ZnSf8y8bxUphtKqdQMPVQ2mHohYdRvDVQ==} engines: {node: '>=16'} + '@wallet-standard/core@1.0.3': + resolution: {integrity: sha512-Jb33IIjC1wM1HoKkYD7xQ6d6PZ8EmMZvyc8R7dFgX66n/xkvksVTW04g9yLvQXrLFbcIjHrCxW6TXMhvpsAAzg==} + engines: {node: '>=16'} + '@wallet-standard/core@1.1.1': resolution: {integrity: sha512-5Xmjc6+Oe0hcPfVc5n8F77NVLwx1JVAoCVgQpLyv/43/bhtIif+Gx3WUrDlaSDoM8i2kA2xd6YoFbHCxs+e0zA==} engines: {node: '>=16'} @@ -3338,6 +3523,11 @@ packages: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} + aptos@1.22.1: + resolution: {integrity: sha512-zw8IbCkMOpXdeAxp106W6CLHR8i88QY+z5u912XIlwZ3AngUVKY55b3rG8KP3uKEeLAIcY9FVWzS5ndzV60grg==} + engines: {node: '>=20.0.0'} + deprecated: Please update to the newer '@aptos-labs/ts-sdk'. 'aptos' is deprecated + argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} @@ -3958,6 +4148,10 @@ packages: resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} engines: {node: '>=12.0.0'} + extension-port-stream@2.1.1: + resolution: {integrity: sha512-qknp5o5rj2J9CRKfVB8KJr+uXQlrojNZzdESUPhKYLXf97TPcGf6qWWKmpsNNtUyOdzFhab1ON0jzouNxHHvow==} + engines: {node: '>=12.0.0'} + extension-port-stream@3.0.0: resolution: {integrity: sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==} engines: {node: '>=12.0.0'} @@ -3966,6 +4160,9 @@ packages: resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} engines: {node: '> 0.1.90'} + fast-deep-equal@2.0.1: + resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} + fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -4383,6 +4580,13 @@ packages: json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + json-rpc-engine@6.1.0: + resolution: {integrity: sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==} + engines: {node: '>=10.0.0'} + + json-rpc-middleware-stream@3.0.0: + resolution: {integrity: sha512-JmZmlehE0xF3swwORpLHny/GvW3MZxCsb2uFNBrn8TOqMqivzCfz232NSDLLOtIQlrPlgyEjiYpyzyOPFOzClw==} + json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} @@ -5300,6 +5504,9 @@ packages: tw-animate-css@1.4.0: resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==} + tweetnacl-util@0.15.1: + resolution: {integrity: sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==} + tweetnacl@1.0.3: resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} @@ -5357,9 +5564,6 @@ packages: undici-types@7.16.0: resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} - undici-types@7.18.2: - resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} - undici-types@7.19.2: resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==} @@ -5527,9 +5731,16 @@ packages: resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} engines: {node: '>= 8'} + webextension-polyfill-ts@0.25.0: + resolution: {integrity: sha512-ikQhwwHYkpBu00pFaUzIKY26I6L87DeRI+Q6jBT1daZUNuu8dSrg5U9l/ZbqdaQ1M/TTSPKeAa3kolP5liuedw==} + deprecated: This project has moved to @types/webextension-polyfill + webextension-polyfill@0.10.0: resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==} + webextension-polyfill@0.7.0: + resolution: {integrity: sha512-su48BkMLxqzTTvPSE1eWxKToPS2Tv5DLGxKexLEVpwFd6Po6N8hhSLIvG6acPAg7qERoEaDL+Y5HQJeJeml5Aw==} + webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -5688,6 +5899,18 @@ snapshots: '@alloc/quick-lru@5.2.0': {} + '@aptos-connect/wallet-adapter-plugin@2.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)': + dependencies: + '@aptos-connect/wallet-api': 0.6.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@aptos-labs/wallet-standard': 0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@identity-connect/crypto': 0.3.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@identity-connect/dapp-sdk': 0.15.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-standard@0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1) + transitivePeerDependencies: + - '@telegram-apps/bridge' + - '@wallet-standard/core' + - debug + '@aptos-connect/wallet-adapter-plugin@3.0.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)': dependencies: '@aptos-connect/wallet-api': 0.6.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) @@ -5708,6 +5931,16 @@ snapshots: transitivePeerDependencies: - '@wallet-standard/core' + '@aptos-connect/web-transport@0.5.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-standard@0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)': + dependencies: + '@aptos-connect/wallet-api': 0.6.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@aptos-labs/wallet-standard': 0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@telegram-apps/bridge': 1.9.2 + uuid: 9.0.1 + transitivePeerDependencies: + - '@wallet-standard/core' + '@aptos-connect/web-transport@0.6.1(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-standard@0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)': dependencies: '@aptos-connect/wallet-api': 0.6.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) @@ -5730,10 +5963,17 @@ snapshots: dependencies: commander: 12.1.0 + '@aptos-labs/aptos-client@1.2.0(axios@1.13.4)(got@11.8.6)': + dependencies: + axios: 1.13.4 + got: 11.8.6 + '@aptos-labs/aptos-client@2.1.0(got@11.8.6)': dependencies: got: 11.8.6 + '@aptos-labs/aptos-dynamic-transaction-composer@0.1.5': {} + '@aptos-labs/derived-wallet-base@0.10.1(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1)': dependencies: '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) @@ -5823,6 +6063,28 @@ snapshots: transitivePeerDependencies: - got + '@aptos-labs/script-composer-pack@0.0.9': + dependencies: + '@aptos-labs/aptos-dynamic-transaction-composer': 0.1.5 + + '@aptos-labs/ts-sdk@1.39.0(axios@1.13.4)(got@11.8.6)': + dependencies: + '@aptos-labs/aptos-cli': 1.1.1 + '@aptos-labs/aptos-client': 1.2.0(axios@1.13.4)(got@11.8.6) + '@aptos-labs/script-composer-pack': 0.0.9 + '@noble/curves': 1.9.7 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + eventemitter3: 5.0.1 + form-data: 4.0.5 + js-base64: 3.7.8 + jwt-decode: 4.0.0 + poseidon-lite: 0.2.1 + transitivePeerDependencies: + - axios + - got + '@aptos-labs/ts-sdk@5.2.1(got@11.8.6)': dependencies: '@aptos-labs/aptos-cli': 1.1.1 @@ -5838,6 +6100,26 @@ snapshots: transitivePeerDependencies: - got + '@aptos-labs/wallet-adapter-core@4.25.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)': + dependencies: + '@aptos-connect/wallet-adapter-plugin': 2.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1) + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@aptos-labs/wallet-standard': 0.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@atomrigslab/aptos-wallet-adapter': 0.1.21(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(axios@1.13.4)(got@11.8.6) + '@mizuwallet-sdk/aptos-wallet-adapter': 0.3.2(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@wallet-standard/core@1.1.1)(axios@1.13.4)(got@11.8.6) + aptos: 1.22.1(got@11.8.6) + buffer: 6.0.3 + eventemitter3: 4.0.7 + tweetnacl: 1.0.3 + transitivePeerDependencies: + - '@mizuwallet-sdk/core' + - '@mizuwallet-sdk/protocol' + - '@telegram-apps/bridge' + - '@wallet-standard/core' + - axios + - debug + - got + '@aptos-labs/wallet-adapter-core@8.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)': dependencies: '@aptos-connect/wallet-adapter-plugin': 3.0.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1) @@ -5851,6 +6133,23 @@ snapshots: - '@wallet-standard/core' - debug + '@aptos-labs/wallet-adapter-react@3.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@types/react@19.2.10)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)(react@19.2.4)': + dependencies: + '@aptos-labs/wallet-adapter-core': 4.25.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6) + '@radix-ui/react-slot': 1.2.4(@types/react@19.2.10)(react@19.2.4) + react: 19.2.4 + transitivePeerDependencies: + - '@aptos-labs/ts-sdk' + - '@mizuwallet-sdk/core' + - '@mizuwallet-sdk/protocol' + - '@telegram-apps/bridge' + - '@types/react' + - '@wallet-standard/core' + - aptos + - axios + - debug + - got + '@aptos-labs/wallet-adapter-react@8.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@types/react@18.3.27)(@wallet-standard/core@1.1.1)(react@19.2.4)': dependencies: '@aptos-labs/wallet-adapter-core': 8.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1) @@ -5863,11 +6162,57 @@ snapshots: - '@wallet-standard/core' - debug + '@aptos-labs/wallet-standard@0.0.11(axios@1.13.4)(got@11.8.6)': + dependencies: + '@aptos-labs/ts-sdk': 1.39.0(axios@1.13.4)(got@11.8.6) + '@wallet-standard/core': 1.0.3 + transitivePeerDependencies: + - axios + - got + + '@aptos-labs/wallet-standard@0.1.0-ms.1(@aptos-labs/ts-sdk@1.39.0(axios@1.13.4)(got@11.8.6))(@wallet-standard/core@1.1.1)': + dependencies: + '@aptos-labs/ts-sdk': 1.39.0(axios@1.13.4)(got@11.8.6) + '@wallet-standard/core': 1.1.1 + + '@aptos-labs/wallet-standard@0.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1)': + dependencies: + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@wallet-standard/core': 1.1.1 + '@aptos-labs/wallet-standard@0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1)': dependencies: '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) '@wallet-standard/core': 1.1.1 + '@atomrigslab/aptos-wallet-adapter@0.1.21(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)': + dependencies: + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@aptos-labs/wallet-standard': 0.0.11(axios@1.13.4)(got@11.8.6) + '@atomrigslab/dekey-web-wallet-provider': 1.2.1 + transitivePeerDependencies: + - axios + - got + + '@atomrigslab/dekey-web-wallet-provider@1.2.1': + dependencies: + '@atomrigslab/providers': 1.1.0 + + '@atomrigslab/providers@1.1.0': + dependencies: + '@metamask/object-multiplex': 1.3.0 + '@metamask/safe-event-emitter': 2.0.0 + '@types/chrome': 0.0.136 + detect-browser: 5.3.0 + eth-rpc-errors: 4.0.3 + extension-port-stream: 2.1.1 + fast-deep-equal: 2.0.1 + is-stream: 2.0.1 + json-rpc-engine: 6.1.0 + json-rpc-middleware-stream: 3.0.0 + pump: 3.0.3 + webextension-polyfill-ts: 0.25.0 + '@babel/code-frame@7.28.6': dependencies: '@babel/helper-validator-identifier': 7.28.5 @@ -6349,6 +6694,22 @@ snapshots: transitivePeerDependencies: - '@wallet-standard/core' + '@identity-connect/dapp-sdk@0.15.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-standard@0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)': + dependencies: + '@aptos-connect/wallet-api': 0.6.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@aptos-connect/web-transport': 0.5.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-standard@0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1) + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@aptos-labs/wallet-standard': 0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@identity-connect/api': 0.8.0 + '@identity-connect/crypto': 0.3.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) + '@identity-connect/wallet-api': 0.2.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + axios: 1.13.4 + uuid: 9.0.1 + transitivePeerDependencies: + - '@telegram-apps/bridge' + - '@wallet-standard/core' + - debug + '@identity-connect/dapp-sdk@0.16.1(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-standard@0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1))(@telegram-apps/bridge@1.9.2)(@wallet-standard/core@1.1.1)': dependencies: '@aptos-connect/wallet-api': 0.6.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) @@ -6512,6 +6873,12 @@ snapshots: transitivePeerDependencies: - supports-color + '@metamask/object-multiplex@1.3.0': + dependencies: + end-of-stream: 1.4.5 + once: 1.4.0 + readable-stream: 2.3.8 + '@metamask/object-multiplex@2.1.0': dependencies: once: 1.4.0 @@ -6545,6 +6912,8 @@ snapshots: transitivePeerDependencies: - supports-color + '@metamask/safe-event-emitter@2.0.0': {} + '@metamask/safe-event-emitter@3.1.2': {} '@metamask/sdk-analytics@0.0.5': @@ -6629,6 +6998,34 @@ snapshots: transitivePeerDependencies: - supports-color + '@microsoft/fetch-event-source@2.0.1': {} + + '@mizuwallet-sdk/aptos-wallet-adapter@0.3.2(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@wallet-standard/core@1.1.1)(axios@1.13.4)(got@11.8.6)': + dependencies: + '@aptos-labs/ts-sdk': 1.39.0(axios@1.13.4)(got@11.8.6) + '@aptos-labs/wallet-standard': 0.1.0-ms.1(@aptos-labs/ts-sdk@1.39.0(axios@1.13.4)(got@11.8.6))(@wallet-standard/core@1.1.1) + '@mizuwallet-sdk/core': 1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)) + '@mizuwallet-sdk/protocol': 0.0.6 + buffer: 6.0.3 + transitivePeerDependencies: + - '@wallet-standard/core' + - axios + - got + + '@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0))': + dependencies: + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@mizuwallet-sdk/protocol': 0.0.6 + buffer: 6.0.3 + graphql-request: 7.4.0(graphql@16.12.0) + jwt-decode: 4.0.0 + + '@mizuwallet-sdk/protocol@0.0.6': + dependencies: + '@microsoft/fetch-event-source': 2.0.1 + tweetnacl: 1.0.3 + tweetnacl-util: 0.15.1 + '@napi-rs/wasm-runtime@0.2.12': dependencies: '@emnapi/core': 1.8.1 @@ -6712,6 +7109,8 @@ snapshots: '@noble/hashes@1.3.2': {} + '@noble/hashes@1.3.3': {} + '@noble/hashes@1.4.0': {} '@noble/hashes@1.8.0': {} @@ -7185,6 +7584,11 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/base': 1.2.6 + '@scure/bip39@1.2.1': + dependencies: + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.9 + '@scure/bip39@1.3.0': dependencies: '@noble/hashes': 1.4.0 @@ -7227,15 +7631,17 @@ snapshots: react-dom: 19.2.4(react@19.2.4) typescript: 5.9.3 - '@shelby-protocol/react@0.0.5(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@shelby-protocol/sdk@0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)))(@tanstack/react-query@5.90.20(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)': + '@shelby-protocol/react@1.0.3(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@aptos-labs/wallet-adapter-react@3.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@types/react@19.2.10)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)(react@19.2.4))(@shelby-protocol/sdk@0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)))(@tanstack/react-query@5.90.20(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)': dependencies: '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) - '@shelby-protocol/sdk': 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + '@shelby-protocol/sdk': 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) '@tanstack/react-query': 5.90.20(react@19.2.4) p-limit: 7.2.0 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) typescript: 5.9.3 + optionalDependencies: + '@aptos-labs/wallet-adapter-react': 3.8.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/core@1.4.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@mizuwallet-sdk/protocol@0.0.6)(graphql-request@7.4.0(graphql@16.12.0)))(@mizuwallet-sdk/protocol@0.0.6)(@telegram-apps/bridge@1.9.2)(@types/react@19.2.10)(@wallet-standard/core@1.1.1)(aptos@1.22.1(got@11.8.6))(axios@1.13.4)(got@11.8.6)(react@19.2.4) '@shelby-protocol/reed-solomon@0.0.1': {} @@ -7250,13 +7656,24 @@ snapshots: p-limit: 7.1.1 zod: 3.25.76 - '@shelby-protocol/solana-kit@0.2.0(@wallet-standard/core@1.1.1)(bs58@6.0.0)(bufferutil@4.1.0)(got@11.8.6)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@5.0.10)': + '@shelby-protocol/sdk@0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))': + dependencies: + '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) + '@shelby-protocol/clay-codes': 0.0.2 + '@shelby-protocol/reed-solomon': 0.0.1 + graphql: 16.12.0 + graphql-request: 7.4.0(graphql@16.12.0) + graphql-tag: 2.12.6(graphql@16.12.0) + p-limit: 7.1.1 + zod: 3.25.76 + + '@shelby-protocol/solana-kit@0.2.6(@wallet-standard/core@1.1.1)(bs58@6.0.0)(bufferutil@4.1.0)(got@11.8.6)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@5.0.10)': dependencies: '@aptos-labs/derived-wallet-solana': 0.12.0(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1)(bs58@6.0.0)(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@5.0.10) '@aptos-labs/gas-station-client': 2.0.3(got@11.8.6) '@aptos-labs/ts-sdk': 5.2.1(got@11.8.6) '@aptos-labs/wallet-standard': 0.5.2(@aptos-labs/ts-sdk@5.2.1(got@11.8.6))(@wallet-standard/core@1.1.1) - '@shelby-protocol/sdk': 0.0.9(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) + '@shelby-protocol/sdk': 0.2.4(@aptos-labs/ts-sdk@5.2.1(got@11.8.6)) '@solana/wallet-standard-features': 1.3.0 '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@5.0.10) optionalDependencies: @@ -7910,7 +8327,7 @@ snapshots: '@solana/errors': 5.4.0(typescript@5.9.3) '@solana/rpc-spec': 5.4.0(typescript@5.9.3) '@solana/rpc-spec-types': 5.4.0(typescript@5.9.3) - undici-types: 7.18.2 + undici-types: 7.19.2 optionalDependencies: typescript: 5.9.3 @@ -8326,6 +8743,11 @@ snapshots: '@types/deep-eql': 4.0.2 assertion-error: 2.0.1 + '@types/chrome@0.0.136': + dependencies: + '@types/filesystem': 0.0.36 + '@types/har-format': 1.2.16 + '@types/connect@3.4.38': dependencies: '@types/node': 22.19.7 @@ -8338,6 +8760,14 @@ snapshots: '@types/estree@1.0.8': {} + '@types/filesystem@0.0.36': + dependencies: + '@types/filewriter': 0.0.33 + + '@types/filewriter@0.0.33': {} + + '@types/har-format@1.2.16': {} + '@types/http-cache-semantics@4.2.0': {} '@types/json-schema@7.0.15': {} @@ -8655,6 +9085,13 @@ snapshots: '@wallet-standard/base@1.1.0': {} + '@wallet-standard/core@1.0.3': + dependencies: + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + '@wallet-standard/wallet': 1.1.0 + '@wallet-standard/core@1.1.1': dependencies: '@wallet-standard/app': 1.1.0 @@ -8704,6 +9141,16 @@ snapshots: dependencies: color-convert: 2.0.1 + aptos@1.22.1(got@11.8.6): + dependencies: + '@aptos-labs/aptos-client': 2.1.0(got@11.8.6) + '@noble/hashes': 1.3.3 + '@scure/bip39': 1.2.1 + eventemitter3: 5.0.1 + tweetnacl: 1.0.3 + transitivePeerDependencies: + - got + argparse@2.0.1: {} aria-hidden@1.2.6: @@ -9281,8 +9728,8 @@ snapshots: '@next/eslint-plugin-next': 16.0.10 eslint: 9.39.2(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.2(jiti@2.6.1)) eslint-plugin-react: 7.37.5(eslint@9.39.2(jiti@2.6.1)) eslint-plugin-react-hooks: 7.0.1(eslint@9.39.2(jiti@2.6.1)) @@ -9324,21 +9771,6 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)): - dependencies: - '@nolyfill/is-core-module': 1.0.39 - debug: 4.4.3 - eslint: 9.39.2(jiti@2.6.1) - get-tsconfig: 4.13.0 - is-bun-module: 2.0.0 - stable-hash: 0.0.5 - tinyglobby: 0.2.15 - unrs-resolver: 1.11.1 - optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) - transitivePeerDependencies: - - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)): dependencies: '@nolyfill/is-core-module': 1.0.39 @@ -9350,32 +9782,22 @@ snapshots: tinyglobby: 0.2.15 unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.32.0(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) - eslint: 9.39.2(jiti@2.6.1) - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) - transitivePeerDependencies: - - supports-color - - eslint-module-utils@2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)): - dependencies: - debug: 3.2.7 - optionalDependencies: eslint: 9.39.2(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -9386,7 +9808,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.39.2(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -9415,7 +9837,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.39.2(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.53.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -9587,6 +10009,10 @@ snapshots: expect-type@1.3.0: {} + extension-port-stream@2.1.1: + dependencies: + webextension-polyfill: 0.10.0 + extension-port-stream@3.0.0: dependencies: readable-stream: 3.6.2 @@ -9594,6 +10020,8 @@ snapshots: eyes@0.1.8: {} + fast-deep-equal@2.0.1: {} + fast-deep-equal@3.1.3: {} fast-glob@3.3.1: @@ -10011,6 +10439,16 @@ snapshots: json-buffer@3.0.1: {} + json-rpc-engine@6.1.0: + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + eth-rpc-errors: 4.0.3 + + json-rpc-middleware-stream@3.0.0: + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + readable-stream: 2.3.8 + json-schema-traverse@0.4.1: {} json-stable-stringify-without-jsonify@1.0.1: {} @@ -10966,6 +11404,8 @@ snapshots: tw-animate-css@1.4.0: {} + tweetnacl-util@0.15.1: {} + tweetnacl@1.0.3: {} type-check@0.4.0: @@ -11035,8 +11475,6 @@ snapshots: undici-types@7.16.0: {} - undici-types@7.18.2: {} - undici-types@7.19.2: {} unrs-resolver@1.11.1: @@ -11267,8 +11705,14 @@ snapshots: web-streams-polyfill@3.3.3: {} + webextension-polyfill-ts@0.25.0: + dependencies: + webextension-polyfill: 0.7.0 + webextension-polyfill@0.10.0: {} + webextension-polyfill@0.7.0: {} + webidl-conversions@3.0.1: {} whatwg-url@5.0.0: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 0e78c4c..0ca8fba 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,5 +1,6 @@ packages: - apps/* + - apps/aptos/* - apps/solana/* - apps/ethereum/* - packages/* From c825011b54b3bf540201317920dba5dd4c2dfd95 Mon Sep 17 00:00:00 2001 From: 0xbyt4 <35742124+0xbyt4@users.noreply.github.com> Date: Mon, 9 Mar 2026 15:25:28 +0300 Subject: [PATCH 2/2] fix: upgrade wallet-adapter-react to v7 and remove misused API key --- .../file-upload/app/components/providers.tsx | 3 - .../app/components/wallet-button.tsx | 2 +- apps/aptos/file-upload/package.json | 2 +- pnpm-lock.yaml | 408 +----------------- 4 files changed, 24 insertions(+), 391 deletions(-) diff --git a/apps/aptos/file-upload/app/components/providers.tsx b/apps/aptos/file-upload/app/components/providers.tsx index e34f4d7..f770ab0 100644 --- a/apps/aptos/file-upload/app/components/providers.tsx +++ b/apps/aptos/file-upload/app/components/providers.tsx @@ -17,9 +17,6 @@ export function Providers({ autoConnect dappConfig={{ network: Network.TESTNET, - aptosApiKeys: { - testnet: process.env.NEXT_PUBLIC_SHELBY_API_KEY, - }, }} > {children} diff --git a/apps/aptos/file-upload/app/components/wallet-button.tsx b/apps/aptos/file-upload/app/components/wallet-button.tsx index e92fefb..60a5dbc 100644 --- a/apps/aptos/file-upload/app/components/wallet-button.tsx +++ b/apps/aptos/file-upload/app/components/wallet-button.tsx @@ -132,7 +132,7 @@ export function WalletButton() {
- {wallets && wallets.length > 0 ? ( + {wallets.length > 0 ? ( wallets.map((w) => (