Skip to content

Commit 4dcd5b0

Browse files
committed
support morph
1 parent 3a8dc0e commit 4dcd5b0

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

public/images/chains/morph.svg

Lines changed: 1 addition & 0 deletions
Loading

src/config/chains.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,5 +168,16 @@ export const chains: CHAIN[] = [
168168
}
169169
},
170170
testnet: true
171-
}
171+
},
172+
{
173+
id: ChAIN_ID.MORPH,
174+
name: 'Morph',
175+
iconUrl: '/images/chains/morph.svg',
176+
blockExplorers: {
177+
default: {
178+
name: 'Morph',
179+
url: 'https://explorer.morphl2.io/'
180+
}
181+
}
182+
},
172183
];

src/types/chains.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ export enum ChAIN_ID {
1616
MOONBEAM = 1284,
1717
TAIKO_HEKLA = 167009,
1818
PANGORO = 45,
19-
KOI = 701
19+
KOI = 701,
20+
MORPH = 2818
2021
}
2122

2223
export type CHAIN = {

0 commit comments

Comments
 (0)