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
- [Kaia](https://kaiascope.com/account/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [ApeChain](https://apescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Botanix](https://botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [TAC](https://explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

#### Ethereum Test Networks

Expand Down Expand Up @@ -2342,6 +2343,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [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)
- [TAC Testnet (Saint Petersburg)](https://spb.explorer.tac.build/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 @@ -596,6 +596,13 @@
"https://botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "TAC",
"chainId": 239,
"urls": [
"https://explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Sepolia",
"chainId": 11155111,
Expand Down Expand Up @@ -1182,5 +1189,12 @@
"urls": [
"https://testnet.botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "TAC Testnet (Saint Petersburg)",
"chainId": 2391,
"urls": [
"https://spb.explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
}
]
61 changes: 61 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1069,6 +1069,29 @@ const config: HardhatUserConfig = {
url: vars.get("BOTANIX_MAINNET_URL", "https://rpc.botanixlabs.com"),
accounts,
},
tacTestnet: {
chainId: 2391,
url: vars.get("TAC_TESTNET_URL", "https://spb.rpc.tac.build"),
accounts,
},
tacMain: {
chainId: 239,
url: vars.get("TAC_MAINNET_URL", "https://rpc.tac.build"),
accounts,
},
neonTestnet: {
chainId: 245022926,
url: vars.get("NEON_TESTNET_URL", "https://devnet.neonevm.org"),
accounts,
},
neonMain: {
chainId: 245022934,
url: vars.get(
"NEON_MAINNET_URL",
"https://neon-proxy-mainnet.solana.p2p.org",
),
accounts,
},
},
contractSizer: {
alphaSort: true,
Expand Down Expand Up @@ -1337,6 +1360,12 @@ const config: HardhatUserConfig = {
// For Botanix testnet & mainnet
botanix: vars.get("BOTANIX_API_KEY", ""),
botanixTestnet: vars.get("BOTANIX_API_KEY", ""),
// For TAC testnet & mainnet
tac: vars.get("TAC_API_KEY", ""),
tacTestnet: vars.get("TAC_API_KEY", ""),
// For Neon EVM testnet & mainnet
neon: vars.get("NEON_API_KEY", ""),
neonTestnet: vars.get("NEON_API_KEY", ""),
},
customChains: [
{
Expand Down Expand Up @@ -2487,6 +2516,38 @@ const config: HardhatUserConfig = {
browserURL: "https://testnet.botanixscan.io",
},
},
{
network: "tac",
chainId: 239,
urls: {
apiURL: "https://explorer.tac.build/api",
browserURL: "https://explorer.tac.build",
},
},
{
network: "tacTestnet",
chainId: 2391,
urls: {
apiURL: "https://spb.explorer.tac.build/api",
browserURL: "https://spb.explorer.tac.build",
},
},
{
network: "neon",
chainId: 245022934,
urls: {
apiURL: "https://api.neonscan.org/hardhat/verify",
browserURL: "https://neonscan.org",
},
},
{
network: "neonTestnet",
chainId: 245022926,
urls: {
apiURL: "https://devnet-api.neonscan.org/hardhat/verify",
browserURL: "https://devnet.neonscan.org",
},
},
],
},
};
Expand Down
4 changes: 2 additions & 2 deletions interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"devDependencies": {
"@eslint/js": "^9.29.0",
"@next/eslint-plugin-next": "^15.3.4",
"@tailwindcss/postcss": "^4.1.10",
"@tailwindcss/postcss": "^4.1.11",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.0.4",
"@types/react": "^19.1.8",
Expand All @@ -56,7 +56,7 @@
"postcss": "^8.5.6",
"prettier": "^3.6.1",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^4.1.10",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/solady
Submodule solady updated 5 files
+1 βˆ’0 README.md
+66 βˆ’0 docs/utils/base58.md
+1 βˆ’0 src/Milady.sol
+189 βˆ’0 src/utils/Base58.sol
+231 βˆ’0 test/Base58.t.sol
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@
"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",
"deploy:tactestnet": "npx hardhat run --no-compile --network tacTestnet scripts/deploy.ts",
"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",
"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 Down
Loading
Loading