Skip to content

Latest commit

 

History

History
83 lines (50 loc) · 1.18 KB

development.md

File metadata and controls

83 lines (50 loc) · 1.18 KB

Linea Token List - Development Guide

This document provides guidelines and steps for setting up, developing, and managing the Linea Token List project.

Quick Start

Configuration Setup

  1. Duplicate the Configuration:
cp .env.template .env
  1. API Key Setup:

Modify .env and substitute <YOUR_INFURA_API_KEY> with your actual Infura API Key.

Dependency Installation

Install all the necessary packages via:

npm i

Development Scripts Execution

Verify mainnet shortlist

Run the development script with:

npm run verify-dev

Synchronize fulllist

Run the development script with:

npm run verify-dev

Production Scripts Execution

Verify mainnet shortlist

Run the production script with:

npm run dev

Synchronize fulllist

Run the production script with:

npm run start

Unit tests

To perform unit tests, execute:

npm run test

Lint

To perform lint, execute:

npm run lint

Managing GitHub Page

The GitHub page content is generated using index.html.

Use the Live Server extension in Visual Studio Code to preview this page.