Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

crypto-checker

  • 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:

    1. Build the project
    2. 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:

    1. Build the project: bun run build
    2. The public directory will contain all the files needed for deployment
    3. 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.