holesky (#297)
This commit is contained in:
@@ -147,6 +147,7 @@ Currently, dshackle supports next chains (should be used as chain names in confi
|
|||||||
- goerli (goerli-testnet)
|
- goerli (goerli-testnet)
|
||||||
- rinkeby (rinkeby-testnet)
|
- rinkeby (rinkeby-testnet)
|
||||||
- ropsten (ropsten-testnet)
|
- ropsten (ropsten-testnet)
|
||||||
|
- ethereum-holesky
|
||||||
- bitcoin (bitcoin-testnet)
|
- bitcoin (bitcoin-testnet)
|
||||||
- base
|
- base
|
||||||
- base-goerli
|
- base-goerli
|
||||||
|
|||||||
Submodule emerald-grpc updated: f09ac8be09...1bda79548a
@@ -106,7 +106,8 @@ enum class Chain(val id: Int, val chainCode: String, val chainName: String) {
|
|||||||
MANTLE__TESTNET(10023, "MANTLE_TESTNET", "Mantle Testnet"),
|
MANTLE__TESTNET(10023, "MANTLE_TESTNET", "Mantle Testnet"),
|
||||||
KLAYTN__BAOBAB(10024, "KLAYTN_BAOBAB", "Klaytn Baobab"),
|
KLAYTN__BAOBAB(10024, "KLAYTN_BAOBAB", "Klaytn Baobab"),
|
||||||
SCROLL__SEPOLIA(10025, "SCROLL_SEPOLIA", "Scroll Sepolia"),
|
SCROLL__SEPOLIA(10025, "SCROLL_SEPOLIA", "Scroll Sepolia"),
|
||||||
BSC__TESTNET(10026, "BSC_TESTNET", "Binance Smart Chain Testnet");
|
BSC__TESTNET(10026, "BSC_TESTNET", "Binance Smart Chain Testnet"),
|
||||||
|
ETHEREUM__HOLESKY(10027, "ETHEREUM_HOLESKY", "Ethereum Holesky");
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun byId(id: Int): Chain {
|
fun byId(id: Int): Chain {
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ class Global {
|
|||||||
"bitcoin-testnet" to Chain.BITCOIN__TESTNET,
|
"bitcoin-testnet" to Chain.BITCOIN__TESTNET,
|
||||||
"sepolia" to Chain.ETHEREUM__SEPOLIA,
|
"sepolia" to Chain.ETHEREUM__SEPOLIA,
|
||||||
"sepolia-testnet" to Chain.ETHEREUM__SEPOLIA,
|
"sepolia-testnet" to Chain.ETHEREUM__SEPOLIA,
|
||||||
|
"ethereum-holesky" to Chain.ETHEREUM__HOLESKY,
|
||||||
"optimism-testnet" to Chain.OPTIMISM__GOERLI,
|
"optimism-testnet" to Chain.OPTIMISM__GOERLI,
|
||||||
"arbitrum-testnet" to Chain.ARBITRUM__GOERLI,
|
"arbitrum-testnet" to Chain.ARBITRUM__GOERLI,
|
||||||
"arbitrum-nova" to Chain.ARBITRUM_NOVA__MAINNET,
|
"arbitrum-nova" to Chain.ARBITRUM_NOVA__MAINNET,
|
||||||
|
|||||||
@@ -79,6 +79,7 @@ class DefaultEthereumMethods(
|
|||||||
Chain.ETHEREUM__KOVAN to createHardcodedData("\"42\"", "\"0x2a\""),
|
Chain.ETHEREUM__KOVAN to createHardcodedData("\"42\"", "\"0x2a\""),
|
||||||
Chain.ETHEREUM__GOERLI to createHardcodedData("\"5\"", "\"0x5\""),
|
Chain.ETHEREUM__GOERLI to createHardcodedData("\"5\"", "\"0x5\""),
|
||||||
Chain.ETHEREUM__SEPOLIA to createHardcodedData("\"11155111\"", "\"0xaa36a7\""),
|
Chain.ETHEREUM__SEPOLIA to createHardcodedData("\"11155111\"", "\"0xaa36a7\""),
|
||||||
|
Chain.ETHEREUM__HOLESKY to createHardcodedData("\"17000\"", "\"0x4268\""),
|
||||||
|
|
||||||
Chain.ETHEREUM_CLASSIC__MAINNET to createHardcodedData("\"1\"", "\"0x3d\""),
|
Chain.ETHEREUM_CLASSIC__MAINNET to createHardcodedData("\"1\"", "\"0x3d\""),
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user