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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2232,6 +2232,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [Lisk](https://blockscout.lisk.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Metal L2](https://explorer.metall2.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Superseed](https://explorer.superseed.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Story](https://www.storyscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Sonic](https://sonicscan.org/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [EVM on Flow](https://evm.flowscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Ink](https://explorer.inkonchain.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
Expand Down
7 changes: 7 additions & 0 deletions deployments/deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,13 @@
"https://explorer.superseed.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Story",
"chainId": 1514,
"urls": [
"https://www.storyscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Sonic",
"chainId": 146,
Expand Down
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module.exports = tseslint.config(
parser: tseslint.parser,
parserOptions: {
project: true,
tsconfigRootDir: __dirname,
},
},
},
Expand Down
16 changes: 15 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,11 @@ const config: HardhatUserConfig = {
url: vars.get("STORY_TESTNET_URL", "https://aeneid.storyrpc.io"),
accounts,
},
storyMain: {
chainId: 1514,
url: vars.get("STORY_MAINNET_URL", "https://mainnet.storyrpc.io"),
accounts,
},
sonicTestnet: {
chainId: 57054,
url: vars.get("SONIC_TESTNET_URL", "https://rpc.blaze.soniclabs.com"),
Expand Down Expand Up @@ -1298,7 +1303,8 @@ const config: HardhatUserConfig = {
// For Superseed testnet & mainnet
superseed: vars.get("SUPERSEED_API_KEY", ""),
superseedTestnet: vars.get("SUPERSEED_API_KEY", ""),
// For Story testnet
// For Story testnet & mainnet
story: vars.get("STORY_API_KEY", ""),
storyTestnet: vars.get("STORY_API_KEY", ""),
// For Sonic testnet & mainnet
sonic: vars.get("SONIC_API_KEY", ""),
Expand Down Expand Up @@ -2165,6 +2171,14 @@ const config: HardhatUserConfig = {
browserURL: "https://sepolia-explorer.superseed.xyz",
},
},
{
network: "story",
chainId: 1514,
urls: {
apiURL: "https://www.storyscan.io/api",
browserURL: "https://www.storyscan.io",
},
},
{
network: "storyTestnet",
chainId: 1315,
Expand Down
1 change: 1 addition & 0 deletions interface/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = tseslint.config(
parser: tseslint.parser,
parserOptions: {
project: true,
tsconfigRootDir: __dirname,
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
"typescript-eslint": "^8.37.0"
}
}
2 changes: 1 addition & 1 deletion lib/solady
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@
"deploy:superseedtestnet": "npx hardhat run --no-compile --network superseedTestnet scripts/deploy.ts",
"deploy:superseedmain": "npx hardhat run --no-compile --network superseedMain scripts/deploy.ts",
"deploy:storytestnet": "npx hardhat run --no-compile --network storyTestnet scripts/deploy.ts",
"deploy:storymain": "npx hardhat run --no-compile --network storyMain scripts/deploy.ts",
"deploy:sonictestnet": "npx hardhat run --no-compile --network sonicTestnet scripts/deploy.ts",
"deploy:sonicmain": "npx hardhat run --no-compile --network sonicMain scripts/deploy.ts",
"deploy:flowtestnet": "npx hardhat run --no-compile --network flowTestnet scripts/deploy.ts",
Expand Down Expand Up @@ -251,6 +252,6 @@
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
"typescript-eslint": "^8.37.0"
}
}
Loading
Loading