Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-createx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
FOUNDRY_DISABLE_NIGHTLY_WARNING: "1"

- name: Slither static analyser
uses: crytic/slither-action@v0.4.1
uses: crytic/slither-action@v0.4.2
id: slither
with:
fail-on: config
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [ApeChain](https://apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Botanix](https://botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [TAC](https://explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Katana](https://explorer.katanarpc.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Katana](https://katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Plasma](https://plasmascan.to/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Sophon](https://explorer.sophon.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Jovay](https://explorer.jovay.io/l2/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
Expand Down Expand Up @@ -2354,6 +2354,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [ApeChain Sepolia Testnet (Curtis)](https://curtis.apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Botanix Testnet](https://testnet.botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [TAC Testnet (Saint Petersburg)](https://spb.explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Katana Sepolia Testnet (Bokuto)](https://bokuto.katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Plasma Testnet](https://testnet.plasmascan.to/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Sophon Sepolia Testnet](https://explorer.testnet.sophon.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Jovay Sepolia Testnet](https://sepolia-explorer.jovay.io/l2/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
Expand Down
9 changes: 8 additions & 1 deletion deployments/deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
"name": "Katana",
"chainId": 747474,
"urls": [
"https://explorer.katanarpc.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
"https://katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
Expand Down Expand Up @@ -1265,6 +1265,13 @@
"https://spb.explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Katana Sepolia Testnet (Bokuto)",
"chainId": 737373,
"urls": [
"https://bokuto.katanascan.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Plasma Testnet",
"chainId": 9746,
Expand Down
20 changes: 17 additions & 3 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1118,6 +1118,11 @@ const config: HardhatUserConfig = {
),
accounts,
},
katanaTestnet: {
chainId: 737373,
url: vars.get("KATANA_TESTNET_URL", "https://rpc-bokuto.katanarpc.com"),
accounts,
},
katanaMain: {
chainId: 747474,
url: vars.get("KATANA_MAINNET_URL", "https://rpc.katana.network"),
Expand Down Expand Up @@ -1479,8 +1484,9 @@ const config: HardhatUserConfig = {
// For Neon EVM testnet & mainnet
neon: vars.get("NEON_API_KEY", ""),
neonTestnet: vars.get("NEON_API_KEY", ""),
// For Katana mainnet
// For Katana testnet & mainnet
katana: vars.get("KATANA_API_KEY", ""),
katanaTestnet: vars.get("KATANA_API_KEY", ""),
// For Plasma testnet & mainnet
plasma: vars.get("PLASMA_API_KEY", ""),
plasmaTestnet: vars.get("PLASMA_API_KEY", ""),
Expand Down Expand Up @@ -2722,8 +2728,16 @@ const config: HardhatUserConfig = {
network: "katana",
chainId: 747474,
urls: {
apiURL: "https://explorer.katanarpc.com/api",
browserURL: "https://explorer.katanarpc.com",
apiURL: "https://api.katanascan.com/api",
browserURL: "https://katanascan.com",
},
},
{
network: "katanaTestnet",
chainId: 737373,
urls: {
apiURL: "https://api-bokuto.katanascan.com/api",
browserURL: "https://bokuto.katanascan.com",
},
},
{
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"author": "pcaversaccio (https://pcaversaccio.com), Matt Solomon (https://mattsolomon.dev)",
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.28.0",
"packageManager": "pnpm@10.28.1",
"scripts": {
"clean": "npx hardhat clean && forge clean",
"test": "forge test --out forge-artifacts",
Expand Down Expand Up @@ -221,6 +221,7 @@
"deploy:tacmain": "npx hardhat run --no-compile --network tacMain scripts/deploy.ts",
"deploy:neontestnet": "npx hardhat run --no-compile --network neonTestnet scripts/deploy.ts",
"deploy:neonmain": "npx hardhat run --no-compile --network neonMain scripts/deploy.ts",
"deploy:katanatestnet": "npx hardhat run --no-compile --network katanaTestnet scripts/deploy.ts",
"deploy:katanamain": "npx hardhat run --no-compile --network katanaMain scripts/deploy.ts",
"deploy:plasmatestnet": "npx hardhat run --no-compile --network plasmaTestnet scripts/deploy.ts",
"deploy:plasmamain": "npx hardhat run --no-compile --network plasmaMain scripts/deploy.ts",
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading