-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Degen chain * Update degen.ts --------- Co-authored-by: jxom <jakemoxey@gmail.com>
- Loading branch information
1 parent
d89514a
commit dd0ed3e
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"viem": patch | ||
--- | ||
|
||
Added Degen chain. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const degen = /*#__PURE__*/ defineChain({ | ||
id: 666666666, | ||
name: 'Degen', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Degen', | ||
symbol: 'DEGEN', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.degen.tips'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Degen Chain Explorer', | ||
url: 'https://explorer.degen.tips', | ||
apiUrl: 'https://explorer.degen.tips/api/v2', | ||
}, | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters