Crypto Address Validator
A client-side Polkadot address validator that checks the validity of SS58 addresses on Ed25519 and Sr25519 curves.
Development
Installation
To install dependencies:
bun install
Running Locally
To build and run the development server:
bun run serve
This will build the TypeScript files, copy the HTML files to the public directory, and start a development server.
CLI Usage
To validate an address using the CLI:
bun run cli.ts <address>
GitLab Pages Deployment
This project is configured for automatic deployment to GitLab Pages. When you push to the main branch, the CI/CD pipeline will:
- Build the project
- Deploy the contents of the
public
directory to GitLab Pages
After deployment, your application will be available at:
https://<username>.gitlab.io/address-crypto-check/
Manual Deployment
If you want to deploy manually:
- Build the project:
bun run build
- The
public
directory will contain all the files needed for deployment - Upload these files to your web server or hosting service
This project was created using bun init
in bun v1.1.38. Bun is a fast all-in-one JavaScript runtime.