Skip to content

Commit 855148c

Browse files
committed
➕ Add Katana Test Network Deployment
Signed-off-by: pcaversaccio <pascal.caversaccio@hotmail.ch>
1 parent 00a15f3 commit 855148c

File tree

5 files changed

+37
-14
lines changed

5 files changed

+37
-14
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2260,7 +2260,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
22602260
- [ApeChain](https://apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22612261
- [Botanix](https://botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22622262
- [TAC](https://explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2263-
- [Katana](https://explorer.katanarpc.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2263+
- [Katana](https://katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22642264
- [Plasma](https://plasmascan.to/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22652265
- [Sophon](https://explorer.sophon.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22662266
- [Jovay](https://explorer.jovay.io/l2/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
@@ -2354,6 +2354,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
23542354
- [ApeChain Sepolia Testnet (Curtis)](https://curtis.apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23552355
- [Botanix Testnet](https://testnet.botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23562356
- [TAC Testnet (Saint Petersburg)](https://spb.explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2357+
- [Katana Sepolia Testnet (Bokuto)](https://bokuto.katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23572358
- [Plasma Testnet](https://testnet.plasmascan.to/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23582359
- [Sophon Sepolia Testnet](https://explorer.testnet.sophon.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23592360
- [Jovay Sepolia Testnet](https://sepolia-explorer.jovay.io/l2/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

deployments/deployments.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@
628628
"name": "Katana",
629629
"chainId": 747474,
630630
"urls": [
631-
"https://explorer.katanarpc.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
631+
"https://katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
632632
]
633633
},
634634
{
@@ -1265,6 +1265,13 @@
12651265
"https://spb.explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
12661266
]
12671267
},
1268+
{
1269+
"name": "Katana Sepolia Testnet (Bokuto)",
1270+
"chainId": 737373,
1271+
"urls": [
1272+
"https://bokuto.katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
1273+
]
1274+
},
12681275
{
12691276
"name": "Plasma Testnet",
12701277
"chainId": 9746,

hardhat.config.ts

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1118,6 +1118,11 @@ const config: HardhatUserConfig = {
11181118
),
11191119
accounts,
11201120
},
1121+
katanaTestnet: {
1122+
chainId: 737373,
1123+
url: vars.get("KATANA_TESTNET_URL", " https://rpc-bokuto.katanarpc.com"),
1124+
accounts,
1125+
},
11211126
katanaMain: {
11221127
chainId: 747474,
11231128
url: vars.get("KATANA_MAINNET_URL", "https://rpc.katana.network"),
@@ -1479,8 +1484,9 @@ const config: HardhatUserConfig = {
14791484
// For Neon EVM testnet & mainnet
14801485
neon: vars.get("NEON_API_KEY", ""),
14811486
neonTestnet: vars.get("NEON_API_KEY", ""),
1482-
// For Katana mainnet
1487+
// For Katana testnet & mainnet
14831488
katana: vars.get("KATANA_API_KEY", ""),
1489+
katanaTestnet: vars.get("KATANA_API_KEY", ""),
14841490
// For Plasma testnet & mainnet
14851491
plasma: vars.get("PLASMA_API_KEY", ""),
14861492
plasmaTestnet: vars.get("PLASMA_API_KEY", ""),
@@ -2722,8 +2728,16 @@ const config: HardhatUserConfig = {
27222728
network: "katana",
27232729
chainId: 747474,
27242730
urls: {
2725-
apiURL: "https://explorer.katanarpc.com/api",
2726-
browserURL: "https://explorer.katanarpc.com",
2731+
apiURL: "https://api.katanascan.com/api",
2732+
browserURL: "https://katanascan.com",
2733+
},
2734+
},
2735+
{
2736+
network: "katanaTestnet",
2737+
chainId: 737373,
2738+
urls: {
2739+
apiURL: "https://api-bokuto.katanascan.com/api",
2740+
browserURL: "https://bokuto.katanascan.com",
27272741
},
27282742
},
27292743
{

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@
221221
"deploy:tacmain": "npx hardhat run --no-compile --network tacMain scripts/deploy.ts",
222222
"deploy:neontestnet": "npx hardhat run --no-compile --network neonTestnet scripts/deploy.ts",
223223
"deploy:neonmain": "npx hardhat run --no-compile --network neonMain scripts/deploy.ts",
224+
"deploy:katanatestnet": "npx hardhat run --no-compile --network katanaTestnet scripts/deploy.ts",
224225
"deploy:katanamain": "npx hardhat run --no-compile --network katanaMain scripts/deploy.ts",
225226
"deploy:plasmatestnet": "npx hardhat run --no-compile --network plasmaTestnet scripts/deploy.ts",
226227
"deploy:plasmamain": "npx hardhat run --no-compile --network plasmaMain scripts/deploy.ts",

pnpm-lock.yaml

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)