Skip to content

Commit

Permalink
refactor: Update URLs for TMA Wallet PoC
Browse files Browse the repository at this point in the history
This commit updates the URLs for the TMA Wallet Proof of Concept. The manifest URL and origin URL have been changed from "https://softstackhq.github.io/telegram-mini-app/" to "https://softstack.github.io/telegram-mini-app/". This change ensures that the URLs are up to date and consistent across the codebase.

Note: Please remove any meta information such as issue references, tags, or author names before using the commit message.
  • Loading branch information
daniel-vahn committed May 13, 2024
1 parent b0fa066 commit c8509eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/tonconnect-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"url": "https://softstackhq.github.io/telegram-mini-app/",
"url": "https://softstack.github.io/telegram-mini-app/",
"name": "TMA Wallet PoC",
"iconUrl": "https://ton.vote/logo.png"
}
2 changes: 1 addition & 1 deletion src/configs/walletConnect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const createWalletConnectModal = () => {
const metadata = {
name: 'TMA Proof of Concept',
description: 'Telegram Mini App Wallet Proof of Concept',
url: 'https://softstackhq.github.io/telegram-mini-app/', // origin must match your domain & subdomain
url: 'https://softstack.github.io/telegram-mini-app/', // origin must match your domain & subdomain
icons: [''],
};

Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const root = ReactDOM.createRoot(

root.render(
<React.StrictMode>
<TonConnectUIProvider manifestUrl="https://softstackhq.github.io/telegram-mini-app/tonconnect-manifest.json">
<TonConnectUIProvider manifestUrl="https://softstack.github.io/telegram-mini-app/tonconnect-manifest.json">
<App />
</TonConnectUIProvider>
</React.StrictMode>
Expand Down

0 comments on commit c8509eb

Please sign in to comment.