This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 205
Add BRNKC Mainnet and BRNKC Testnet #300
Merged
Changes from 5 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
48682ac
Add BRNKC Mainnet and BRNKC Testnet
BearNetwork-BRNKC 4340a7c
Add BRNKC Mainnet and BRNKC Testnet
github-actions[bot] e6acfb9
Update .changeset/eleven-trainers-yell.md
BearNetwork-BRNKC 488360a
Update .changeset/eleven-trainers-yell.md
BearNetwork-BRNKC 6fbf497
Update packages/chains/src/BearNetworkChainTestnet.ts
BearNetwork-BRNKC 902a045
Update .changeset/eleven-trainers-yell.md
tmm 7bedffe
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC afaf3e6
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 597fd91
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 4e1ef6a
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC a80f298
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 300199b
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 5b4e802
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 28a27a4
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 31833ba
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 9c1b541
Added Bear Network Mainnet and Testnet
BearNetwork-BRNKC 776cdf4
Merge branch 'wagmi-dev:main' into main
BearNetwork-BRNKC File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ | ||
--- | ||
'@wagmi/chains': patch | ||
--- | ||
|
||
Added Bear Network Mainnet and Testnet | ||
BearNetwork-BRNKC marked this conversation as resolved.
Show resolved
Hide resolved
|
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,19 @@ | ||
import { Chain } from './types' | ||
|
||
export const BearNetworkChainMainnet = { | ||
id: 641230, | ||
name: 'Bear Network Chain Mainnet', | ||
network: 'BearNetworkChainMainnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'BearNetworkChain', | ||
symbol: 'BRNKC', | ||
}, | ||
rpcUrls: { | ||
public: { http: ['https://brnkc-mainnet.bearnetwork.net'] }, | ||
default: { http: ['https://brnkc-mainnet.bearnetwork.net'] }, | ||
}, | ||
blockExplorers: { | ||
default: { name: 'BrnkScan', url: 'https://brnkscan.bearnetwork.net' }, | ||
}, | ||
} as const satisfies Chain |
BearNetwork-BRNKC marked this conversation as resolved.
Show resolved
Hide resolved
|
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 { Chain } from './types' | ||
|
||
export const BearNetworkChainTestnet = { | ||
id: 751230, | ||
name: 'Bear Network Chain Testnet', | ||
network: 'BearNetworkChainTestnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'tBRNKC', | ||
symbol: 'tBRNKC', | ||
}, | ||
rpcUrls: { | ||
public: { http: ['https://brnkc-test.bearnetwork.net'] }, | ||
default: { http: ['https://brnkc-test.bearnetwork.net'] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'BrnkTestScan', | ||
url: 'https://brnktest-scan.bearnetwork.net', | ||
}, | ||
}, | ||
testnet: true, | ||
} as const satisfies Chain |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.