-
-
Notifications
You must be signed in to change notification settings - Fork 838
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added ql1 chain * Updated ql1 file * Revert pnpm-lock.yaml file * Update index.ts --------- Co-authored-by: jxom <j@wevm.dev>
- Loading branch information
1 parent
5c9ed2f
commit 5889209
Showing
3 changed files
with
36 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 ql1 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,30 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const ql1 = /*#__PURE__*/ defineChain({ | ||
id: 766, | ||
name: 'QL1', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'QOM', | ||
symbol: 'QOM', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: [ | ||
'https://rpc.qom.one', | ||
], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Ql1 Explorer', | ||
url: 'https://scan.qom.one', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0x7A52370716ea730585884F5BDB0f6E60C39b8C64', | ||
}, | ||
}, | ||
testnet: false, | ||
}) |
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