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 @@ -2271,6 +2271,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [XRPL EVM](https://explorer.xrplevm.org/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [DMD Diamond](https://explorer.bit.diamonds/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Citrea](https://explorer.mainnet.citrea.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Lens](https://explorer.lens.xyz/addresses/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

#### Ethereum Test Networks

Expand Down Expand Up @@ -2370,6 +2371,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [DMD Diamond Testnet](https://testnet-explorer.bit.diamonds/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Citrea Testnet](https://explorer.testnet.citrea.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Tempo Testnet (Moderato)](https://explore.tempo.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Lens Sepolia Testnet](https://explorer.testnet.lens.xyz/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 @@ -702,6 +702,13 @@
"https://explorer.mainnet.citrea.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Lens",
"chainId": 232,
"urls": [
"https://explorer.lens.xyz/addresses/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Sepolia",
"chainId": 11155111,
Expand Down Expand Up @@ -1380,5 +1387,12 @@
"https://explore.tempo.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://repo.sourcify.dev/42431/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Lens Sepolia Testnet",
"chainId": 37111,
"urls": [
"https://explorer.testnet.lens.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
}
]
4 changes: 2 additions & 2 deletions foundry.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"lib/forge-std": {
"branch": {
"name": "master",
"rev": "722afcc99a78706335b5a2ece83a4f0de4bc083d"
"rev": "96abd708f045daa0d40827b27fb06fb3021b2d8c"
}
},
"lib/openzeppelin-contracts": {
"branch": {
"name": "master",
"rev": "c1edd06131cf989cf3e0c72c089cbead127384e6"
"rev": "ca6f5fab7cf2bf71d6301dc2153abe993cef42f9"
}
},
"lib/solady": {
Expand Down
30 changes: 30 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1248,6 +1248,16 @@ const config: HardhatUserConfig = {
url: vars.get("TEMPO_TESTNET_URL", "https://rpc.moderato.tempo.xyz"),
accounts,
},
lensTestnet: {
chainId: 37111,
url: vars.get("LENS_TESTNET_URL", "https://rpc.testnet.lens.xyz"),
accounts,
},
lensMain: {
chainId: 232,
url: vars.get("LENS_MAINNET_URL", "https://rpc.lens.xyz"),
accounts,
},
},
contractSizer: {
alphaSort: true,
Expand Down Expand Up @@ -1563,6 +1573,9 @@ const config: HardhatUserConfig = {
citreaTestnet: vars.get("CITREA_API_KEY", ""),
// For Tempo testnet
tempoTestnet: vars.get("TEMPO_API_KEY", ""),
// For Lens testnet & mainnet
lens: vars.get("LENS_API_KEY", ""),
lensTestnet: vars.get("LENS_API_KEY", ""),
},
customChains: [
{
Expand Down Expand Up @@ -2963,6 +2976,23 @@ const config: HardhatUserConfig = {
browserURL: "https://explore.tempo.xyz",
},
},
{
network: "lens",
chainId: 232,
urls: {
apiURL: "https://verify.lens.xyz/contract_verification",
browserURL: "https://explorer.lens.xyz",
},
},
{
network: "lensTestnet",
chainId: 37111,
urls: {
apiURL:
"https://block-explorer-verify.testnet.lens.xyz/contract_verification",
browserURL: "https://explorer.testnet.lens.xyz",
},
},
],
},
};
Expand Down
4 changes: 2 additions & 2 deletions interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
"@next/eslint-plugin-next": "^16.1.6",
"@tailwindcss/postcss": "^4.2.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.3.0",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.24",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.3",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.5",
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 180+ chains",
subtitle: "Deployed on 190+ chains",
},
{ id: 2, href: "/abi", title: "ABI", subtitle: "In any format" },
{
Expand Down
2 changes: 1 addition & 1 deletion lib/forge-std
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
4 changes: 3 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.30.2",
"packageManager": "pnpm@10.30.3",
"scripts": {
"clean": "hardhat clean && forge clean",
"test": "forge test --out forge-artifacts",
Expand Down Expand Up @@ -244,6 +244,8 @@
"deploy:citreatestnet": "npx hardhat run --no-compile --network citreaTestnet scripts/deploy.ts",
"deploy:citreamain": "npx hardhat run --no-compile --network citreaMain scripts/deploy.ts",
"deploy:tempotestnet": "npx hardhat run --no-compile --network tempoTestnet scripts/deploy.ts",
"deploy:lenstestnet": "npx hardhat run --no-compile --network lensTestnet scripts/deploy.ts",
"deploy:lensmain": "npx hardhat run --no-compile --network lensMain scripts/deploy.ts",
"prettier:check": "prettier -c \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"prettier:check:interface": "pnpm -C interface prettier:check",
"prettier:fix": "prettier -w \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
Expand Down
Loading
Loading