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

chore: rename to aztec scan #249

Merged
merged 13 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
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 README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Chicmoz - [aztecscout.xyz](https://aztecscout.xyz)
# Chicmoz - [aztecscan.xyz](https://aztecscan.xyz)

## running locally

Expand Down
2 changes: 1 addition & 1 deletion k6/stress-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const options = {
},
};

const BASE_URL = "https://api.aztecscout.xyz/v1/d1e2083a-660c-4314-a6f2-1d42f4b944f4";
const BASE_URL = "https://api.aztecscan.xyz/v1/d1e2083a-660c-4314-a6f2-1d42f4b944f4";

let VALID_BLOCK_HEIGHT = 2;

Expand Down
4 changes: 2 additions & 2 deletions k8s/production/skaffold.production.full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ build:
dockerfile: Dockerfile
buildArgs:
NODE_ENV: "production"
VITE_API_URL: "https://api.aztecscout.xyz/v1/d1e2083a-660c-4314-a6f2-1d42f4b944f4" # TODO: change the api key
VITE_WS_URL: "wss://ws.aztecscout.xyz"
VITE_API_URL: "https://api.aztecscan.xyz/v1/d1e2083a-660c-4314-a6f2-1d42f4b944f4" # TODO: change the api key
VITE_WS_URL: "wss://ws.aztecscan.xyz"
VITE_DISCORD_URL: "https://discord.gg/obscura-network"
VITE_X_URL: "https://x.com/Obscura_Network"
VITE_GITHUB_URL: "https://github.com/aztlan-labs/chicmoz"
Expand Down
4 changes: 2 additions & 2 deletions k8s/production/skaffold.production.light.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ build:
dockerfile: Dockerfile
buildArgs:
NODE_ENV: "production"
VITE_API_URL: "https://api.aztecscout.xyz/v1/d1e2083a-660c-4314-a6f2-1d42f4b944f4" # TODO: change the api key
VITE_WS_URL: "wss://ws.aztecscout.xyz"
VITE_API_URL: "https://api.aztecscan.xyz/v1/d1e2083a-660c-4314-a6f2-1d42f4b944f4" # TODO: change the api key
VITE_WS_URL: "wss://ws.aztecscan.xyz"
VITE_DISCORD_URL: "https://discord.gg/obscura-network"
VITE_X_URL: "https://x.com/Obscura_Network"
VITE_GITHUB_URL: "https://github.com/aztlan-labs/chicmoz"
Expand Down
2 changes: 1 addition & 1 deletion services/explorer-api/src/http-server/open-api-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const genereateOpenApiSpec = () => ({
},
servers: [
{
url: "https://api.aztecscout.xyz/v1/{apiKey}",
url: "https://api.aztecscan.xyz/v1/{apiKey}",
variables: {
apiKey: {
default: PUBLIC_API_KEY,
Expand Down
20 changes: 10 additions & 10 deletions services/explorer-ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,34 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/aztec-icon.svg" />
<link rel="canonical" href="https://aztecscout.xyz" />
<link rel="canonical" href="https://aztecscan.xyz" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Aztec-Scout - A comprehensive Aztec block explorer with real-time data and analytics for the Aztec Network blockchain."
content="Aztec-Scan - A comprehensive Aztec block explorer with real-time data and analytics for the Aztec Network blockchain."
/>
<meta property="og:title" content="Aztec-Scout" />
<meta property="og:title" content="Aztec-Scan" />
<meta
property="og:description"
content="Monitor Aztec transactions, blocks, and addresses in real-time."
/>
<meta property="og:image" content="/src/assets/aztecscout-preview.png" />
<meta property="og:url" content="https://aztecscout.xyz" />
<meta property="og:image" content="/src/assets/aztecscan-preview.png" />
<meta property="og:url" content="https://aztecscan.xyz" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Aztec-Scout" />
<meta name="twitter:title" content="Aztec-Scan" />
<meta
name="twitter:description"
content="Monitor Aztec transactions, blocks, and addresses in real-time."
/>
<meta name="twitter:image" content="/src/assets/aztecscout-preview.png" />
<meta name="twitter:url" content="https://aztecscout.xyz" />
<meta name="twitter:image" content="/src/assets/aztecscan-preview.png" />
<meta name="twitter:url" content="https://aztecscan.xyz" />
<meta
name="keywords"
content="aztec, block explorer, blockchain, chicmoz, aztecscout, aztec scout"
content="aztec, block explorer, blockchain, chicmoz, aztecscan, aztec scan"
/>

<title>Aztec-Scout</title>
<title>Aztec-Scan</title>
</head>
<body>
<div id="root"></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function ChicmozHomeLink({
<p
className={`${textClasses} text-white ml-1 font-bold text-[24px] font-space-grotesk`}
>
Aztec-Scout
Aztec-Scan
</p>
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion services/explorer-ui/src/pages/privacy-policy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const PrivacyPolicy: FC = () => {
</p>
<ul className="list-disc list-inside">
<li>
Visit our website at https://aztecscout.xyz, or any website of ours
Visit our website at https://aztecscan.xyz, or any website of ours
that links to this privacy notice{" "}
</li>
<li>
Expand Down