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 @@ -2259,6 +2259,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [Botanix](https://botanixscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [TAC](https://explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Katana](https://explorer.katanarpc.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Plasma](https://plasmascan.to/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

#### Ethereum Test Networks

Expand Down Expand Up @@ -2346,6 +2347,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)
- [Plasma Testnet](https://testnet.plasmascan.to/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 @@ -617,6 +617,13 @@
"https://explorer.katanarpc.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Plasma",
"chainId": 9745,
"urls": [
"https://plasmascan.to/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Sepolia",
"chainId": 11155111,
Expand Down Expand Up @@ -1210,5 +1217,12 @@
"urls": [
"https://spb.explorer.tac.build/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Plasma Testnet",
"chainId": 9746,
"urls": [
"https://testnet.plasmascan.to/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
}
]
31 changes: 31 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,16 @@ const config: HardhatUserConfig = {
url: vars.get("KATANA_MAINNET_URL", "https://rpc.katana.network"),
accounts,
},
plasmaTestnet: {
chainId: 9746,
url: vars.get("PLASMA_TESTNET_URL", "https://testnet-rpc.plasma.to"),
accounts,
},
plasmaMain: {
chainId: 9745,
url: vars.get("PLASMA_MAINNET_URL", "https://rpc.plasma.to"),
accounts,
},
},
contractSizer: {
alphaSort: true,
Expand Down Expand Up @@ -1379,6 +1389,9 @@ const config: HardhatUserConfig = {
neonTestnet: vars.get("NEON_API_KEY", ""),
// For Katana mainnet
katana: vars.get("KATANA_API_KEY", ""),
// For Plasma testnet & mainnet
plasma: vars.get("PLASMA_API_KEY", ""),
plasmaTestnet: vars.get("PLASMA_API_KEY", ""),
},
customChains: [
{
Expand Down Expand Up @@ -2577,6 +2590,24 @@ const config: HardhatUserConfig = {
browserURL: "https://explorer.katanarpc.com",
},
},
{
network: "plasma",
chainId: 9745,
urls: {
apiURL:
"https://api.routescan.io/v2/network/mainnet/evm/9745/etherscan",
browserURL: "https://plasmascan.to",
},
},
{
network: "plasmaTestnet",
chainId: 9746,
urls: {
apiURL:
"https://api.routescan.io/v2/network/mainnet/evm/9746/etherscan",
browserURL: "https://testnet.plasmascan.to",
},
},
],
},
};
Expand Down
6 changes: 3 additions & 3 deletions interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"dependencies": {
"@headlessui/react": "^2.2.7",
"@heroicons/react": "^2.2.0",
"next": "^15.5.2",
"next": "^15.5.3",
"next-themes": "^0.4.6",
"prismjs": "^1.30.0",
"react": "^19.1.1",
Expand All @@ -41,15 +41,15 @@
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@next/eslint-plugin-next": "^15.5.2",
"@next/eslint-plugin-next": "^15.5.3",
"@tailwindcss/postcss": "^4.1.13",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"autoprefixer": "^10.4.21",
"eslint": "^9.35.0",
"eslint-config-next": "^15.5.2",
"eslint-config-next": "^15.5.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"next-seo": "^6.8.0",
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@
"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: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",
"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