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: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2256,6 +2256,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [HyperEVM](https://purrsec.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Kaia](https://kaiascope.com/account/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [ApeChain](https://apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Botanix](https://botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

#### Ethereum Test Networks

Expand Down Expand Up @@ -2341,6 +2342,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [Abstract Sepolia Testnet](https://sepolia.abscan.org/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [HyperEVM Testnet](https://testnet.purrsec.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [ApeChain Sepolia Testnet (Curtis)](https://curtis.apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Botanix Testnet](https://testnet.botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

## Integration With External Tooling

Expand Down
14 changes: 14 additions & 0 deletions deployments/deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,13 @@
"https://apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Botanix",
"chainId": 3637,
"urls": [
"https://botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Sepolia",
"chainId": 11155111,
Expand Down Expand Up @@ -1168,5 +1175,12 @@
"https://curtis.apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://repo.sourcify.dev/33111/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Botanix Testnet",
"chainId": 3636,
"urls": [
"https://testnet.botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
}
]
34 changes: 34 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,19 @@ const config: HardhatUserConfig = {
),
accounts,
},
botanixTestnet: {
chainId: 3636,
url: vars.get(
"BOTANIX_TESTNET_URL",
"https://rpc.ankr.com/botanix_testnet",
),
accounts,
},
botanixMain: {
chainId: 3637,
url: vars.get("BOTANIX_MAINNET_URL", "https://rpc.botanixlabs.com"),
accounts,
},
},
contractSizer: {
alphaSort: true,
Expand Down Expand Up @@ -1321,6 +1334,9 @@ const config: HardhatUserConfig = {
// For ApeChain testnet & mainnet
apeChain: vars.get("APECHAIN_API_KEY", ""),
apeChainTestnet: vars.get("APECHAIN_API_KEY", ""),
// For Botanix testnet & mainnet
botanix: vars.get("BOTANIX_API_KEY", ""),
botanixTestnet: vars.get("BOTANIX_API_KEY", ""),
},
customChains: [
{
Expand Down Expand Up @@ -2453,6 +2469,24 @@ const config: HardhatUserConfig = {
browserURL: "https://curtis.apescan.io",
},
},
{
network: "botanix",
chainId: 3637,
urls: {
apiURL:
"https://api.routescan.io/v2/network/mainnet/evm/3637/etherscan/api",
browserURL: "https://botanixscan.io",
},
},
{
network: "botanixTestnet",
chainId: 3636,
urls: {
apiURL:
"https://api.routescan.io/v2/network/testnet/evm/3636/etherscan/api",
browserURL: "https://testnet.botanixscan.io",
},
},
],
},
};
Expand Down
4 changes: 2 additions & 2 deletions interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
"sharp": "^0.34.2"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@eslint/js": "^9.29.0",
"@next/eslint-plugin-next": "^15.3.3",
"@tailwindcss/postcss": "^4.1.10",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"autoprefixer": "^10.4.21",
"eslint": "^9.28.0",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
Expand Down
2 changes: 1 addition & 1 deletion interface/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Home = () => {
id: 1,
href: "/deployments",
title: "Deployments",
subtitle: "Deployed on 150+ chains",
subtitle: "Deployed on 160+ chains",
},
{ id: 2, href: "/abi", title: "ABI", subtitle: "In any format" },
{
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@
"deploy:kaiamain": "npx hardhat run --no-compile --network kaiaMain scripts/deploy.ts",
"deploy:apechaintestnet": "npx hardhat run --no-compile --network apeChainTestnet scripts/deploy.ts",
"deploy:apechainmain": "npx hardhat run --no-compile --network apeChainMain scripts/deploy.ts",
"deploy:botanixtestnet": "npx hardhat run --no-compile --network botanixTestnet scripts/deploy.ts",
"deploy:botanixmain": "npx hardhat run --no-compile --network botanixMain scripts/deploy.ts",
"prettier:check": "npx prettier -c \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"prettier:check:interface": "pnpm -C interface prettier:check",
"prettier:fix": "npx prettier -w \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
Expand All @@ -226,15 +228,15 @@
"start:interface": "pnpm -C interface start"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@eslint/js": "^9.29.0",
"@nomicfoundation/hardhat-ethers": "^3.0.9",
"@nomicfoundation/hardhat-verify": "^2.0.14",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"eslint": "^9.28.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"ethers": "^6.14.3",
"hardhat": "^2.24.2",
"ethers": "^6.14.4",
"hardhat": "^2.24.3",
"hardhat-abi-exporter": "^2.11.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.3.0",
Expand Down
Loading
Loading