Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Verifierlive removal #196

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://tonverifier.live/",
"homepage": "https://verifier.ton.org",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp dist/index.html dist/404.html",
4 changes: 2 additions & 2 deletions public/tonconnect-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"url": "https://tonverifier.live",
"url": "https://verifier.ton.org",
"name": "TON Verifier",
"iconUrl": "https://tonverifier.live/tonverifier.png"
"iconUrl": "https://verifier.ton.org/tonverifier.png"
}
2 changes: 1 addition & 1 deletion src/components/DevExamples.tsx
Original file line number Diff line number Diff line change
@@ -120,7 +120,7 @@ const examples = [

function exportExamples() {
const mapExample = ([name, address, comment]: any) =>
`[https://tonverifier.live/${address}]\t\t// ${name} ${comment ?? ""}`;
`[https://verifier.ton.org/${address}]\t\t// ${name} ${comment ?? ""}`;

const content = ["# Verified Examples"];

2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<SnackbarProvider maxSnack={3}>
<ThemeProvider theme={theme}>
<QueryClientProvider client={queryClient}>
<TonConnectUIProvider manifestUrl="https://tonverifier.live/tonconnect-manifest.json">
<TonConnectUIProvider manifestUrl="https://verifier.ton.org/tonconnect-manifest.json">
<BrowserRouter basename={import.meta.env.BASE_URL}>
<Routes>
<Route path="/interact" element={<ContractInteract />} />