Skip to content

Commit 5835cd2

Browse files
authored
chore: remove full list (#211)
1 parent 154c318 commit 5835cd2

36 files changed

+105
-2822
lines changed

.github/workflows/sync-mainnet-fulllist.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

.github/workflows/verify-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ jobs:
6767
run: npm install
6868

6969
- name: Execute verifyMainnetShortlist
70-
run: npm run verify-start
70+
run: npm run verify
7171

7272
- name: Check for changes
7373
run: |
7474
if [[ -n $(git diff --exit-code) ]]; then
75-
echo "Changes detected. Exiting with error."
75+
echo "Difference detected between your input and the onchain data. Please review the changes."
7676
exit 1
7777
else
7878
echo "No changes detected. Exiting successfully."

.gitignore

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
# Dependency directories
21
node_modules
3-
4-
# Compiled output
52
scripts/dist
63
dist/
74
temporary-dist/
8-
9-
# Config files
105
.env
11-
12-
# Coverage directory
13-
coverage/
6+
coverage/
7+
.idea

README.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# Linea Token List
22

3-
This repository maintains lists of ERC20 tokens available on Linea. There are two main lists each for Linea Mainnet and
4-
Linea Sepolia:
5-
6-
- A full list, automatically updated whenever a new token is bridged to Linea using the canonical bridge, and;
7-
- A shortlist, which is manually curated by our team, and updated based on submitted PRs.
3+
This repository maintains lists of ERC20 tokens available on Linea. There are two lists: one for Linea Mainnet and one for
4+
Linea Sepolia. It is manually curated by our team, and updated based on submitted PRs.
85

96
The information in this repository is also available in a [frontend app](https://consensys.github.io/linea-token-list/).
107

@@ -66,7 +63,7 @@ Example:
6663
Fields:
6764

6865
| Name | Description | type | Required? |
69-
|--------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|-------------------------------------------------------------|
66+
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ----------------------------------------------------------- |
7067
| chainId | The typically used number identifier for the chain on which the token was issued | number | Mandatory |
7168
| chainURI | A resolvable URI to the genesis block of the chain on which the token was issued following the RFC 3986 standard | string | Mandatory |
7269
| tokenId | A resolvable URI of the token following the RFC 3986 standard to for example the deployment transaction of the token, or a DID identifying the token and its issuer | string | Mandatory |
@@ -88,8 +85,6 @@ Token types:
8885
- `canonical-bridge`: token originally on Ethereum, which has been bridged to Linea with
8986
the [Linea canonical bridge](https://bridge.linea.build/) (also known as the native bridge).
9087

91-
These tokens are automatically added to the full list when bridged.
92-
9388
**Example**: DAI on Ethereum Mainnet has this address `0x6b175474e89094c44da98b954eedeac495271d0f`, after being
9489
bridged on Linea it has this address `0x4AF15ec2A0BD43Db75dd04E62FAA3B8EF36b00d5`
9590

@@ -135,11 +130,10 @@ Happy contributing!
135130
- Make sure to add the token following alphabetical order of the `symbol` field.
136131
- Update the `updatedAt` (and potentially `createdAt`) fields for the file and the token
137132
- Update the file version:
138-
- Increase `patch` when modifying information of an existing token.
139-
- Increase `minor` when modifying adding a new token.
140-
- Increase `major` when changing the structure of the file.
133+
- Increase `patch` when modifying information of an existing token.
134+
- Increase `minor` when modifying adding a new token.
135+
- Increase `major` when changing the structure of the file.
141136

142137
## Technical resources (for maintainers)
143138

144139
- [Development Guide](./docs/development.md).
145-
- [Technical Processes](./docs/technical-processes.md).

docs/development.md

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This document provides guidelines and steps for setting up, developing, and mana
88

99
1. Duplicate the Configuration:
1010

11-
```base
11+
```bash
1212
cp .env.template .env
1313
```
1414

@@ -24,40 +24,14 @@ Install all the necessary packages via:
2424
npm i
2525
```
2626

27-
### Development Scripts Execution
27+
### Scripts Execution
2828

2929
<b>Verify mainnet shortlist</b>
3030

31-
Run the development script with:
32-
33-
```bash
34-
npm run verify-dev
35-
```
36-
37-
<b>Synchronize fulllist</b>
38-
39-
Run the development script with:
40-
41-
```bash
42-
npm run verify-dev
43-
```
44-
45-
### Production Scripts Execution
46-
47-
<b>Verify mainnet shortlist</b>
48-
49-
Run the production script with:
50-
51-
```bash
52-
npm run verify-start
53-
```
54-
55-
<b>Synchronize fulllist</b>
56-
5731
Run the production script with:
5832

5933
```bash
60-
npm run start
34+
npm run verify
6135
```
6236

6337
## Unit tests

docs/mermaid/diagrams/community-token-list-updates.mmd

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/mermaid/diagrams/sync-mainnet-fulllist-action.mmd

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/mermaid/diagrams/sync-mainnet-fulllist.mmd

Lines changed: 0 additions & 28 deletions
This file was deleted.

docs/mermaid/diagrams/verify-mainnet-shortlist-action.mmd

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/mermaid/diagrams/verify-mainnet-shortlist.mmd

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)