Skip to content

Commit

Permalink
[DAT-512] Add BLAST (#1804)
Browse files Browse the repository at this point in the history
* add BLAST token

* 12.2.0

* update thumbnail

* remove mainnet updates
  • Loading branch information
mzywang authored Jun 26, 2024
1 parent c39e7a7 commit 750bf58
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uniswap/default-token-list",
"version": "12.1.0",
"version": "12.2.0",
"description": "The Uniswap default token list",
"main": "build/uniswap-default.tokenlist.json",
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions src/buildList.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ const bnb = require("./tokens/bnb.json");
const sepolia = require("./tokens/sepolia.json");
const avalanche = require("./tokens/avalanche.json");
const base = require("./tokens/base.json");
const blast = require("./tokens/blast.json");

const bridgeUtils = require('@uniswap/token-list-bridge-utils');
const bridgeUtils = require("@uniswap/token-list-bridge-utils");

module.exports = function buildList() {
const parsed = version.split(".");
Expand Down Expand Up @@ -43,7 +44,8 @@ module.exports = function buildList() {
...bnb,
...sepolia,
...avalanche,
...base
...base,
...blast,
]
// sort them by symbol for easy readability
.sort((t1, t2) => {
Expand Down
10 changes: 10 additions & 0 deletions src/tokens/blast.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"chainId": 81457,
"address": "0xb1a5700fA2358173Fe465e6eA4Ff52E36e88E2ad",
"name": "Blast",
"symbol": "BLAST",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/35494/standard/Blast.jpg?1719385662"
}
]

0 comments on commit 750bf58

Please sign in to comment.