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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2270,6 +2270,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)
- [Tempo](https://explore.tempo.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Lens](https://explorer.lens.xyz/addresses/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

#### Ethereum Test Networks
Expand Down Expand Up @@ -2369,7 +2370,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [Arc Testnet](https://testnet.arcscan.app/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [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)
- [Tempo Testnet (Moderato)](https://explore.testnet.tempo.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Lens Sepolia Testnet](https://explorer.testnet.lens.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

## Integration With External Tooling
Expand Down
10 changes: 9 additions & 1 deletion deployments/deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,14 @@
"https://explorer.mainnet.citrea.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Tempo",
"chainId": 4217,
"urls": [
"https://explore.tempo.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://repo.sourcify.dev/4217/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Lens",
"chainId": 232,
Expand Down Expand Up @@ -1384,7 +1392,7 @@
"name": "Tempo Testnet (Moderato)",
"chainId": 42431,
"urls": [
"https://explore.tempo.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://explore.testnet.tempo.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://repo.sourcify.dev/42431/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
Expand Down
18 changes: 16 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1248,6 +1248,11 @@ const config: HardhatUserConfig = {
url: vars.get("TEMPO_TESTNET_URL", "https://rpc.moderato.tempo.xyz"),
accounts,
},
tempoMain: {
chainId: 4217,
url: vars.get("TEMPO_MAINNET_URL", "https://rpc.tempo.xyz"),
accounts,
},
lensTestnet: {
chainId: 37111,
url: vars.get("LENS_TESTNET_URL", "https://rpc.testnet.lens.xyz"),
Expand Down Expand Up @@ -1571,7 +1576,8 @@ const config: HardhatUserConfig = {
// For Citrea testnet & mainnet
citrea: vars.get("CITREA_API_KEY", ""),
citreaTestnet: vars.get("CITREA_API_KEY", ""),
// For Tempo testnet
// For Tempo testnet & mainnet
tempo: vars.get("TEMPO_API_KEY", ""),
tempoTestnet: vars.get("TEMPO_API_KEY", ""),
// For Lens testnet & mainnet
lens: vars.get("LENS_API_KEY", ""),
Expand Down Expand Up @@ -2968,12 +2974,20 @@ const config: HardhatUserConfig = {
browserURL: "https://explorer.testnet.citrea.xyz",
},
},
{
network: "tempo",
chainId: 4217,
urls: {
apiURL: "https://contracts.tempo.xyz/v2/verify/4217",
browserURL: "https://explore.tempo.xyz",
},
},
{
network: "tempoTestnet",
chainId: 42431,
urls: {
apiURL: "https://contracts.tempo.xyz/v2/verify/42431",
browserURL: "https://explore.tempo.xyz",
browserURL: "https://explore.testnet.tempo.xyz",
},
},
{
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@
"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:tempomain": "npx hardhat run --no-compile --network tempoMain 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}\"",
Expand Down Expand Up @@ -276,7 +277,7 @@
"hardhat-gas-reporter": "^2.3.0",
"prettier": "^3.8.1",
"prettier-plugin-solidity": "^2.3.1",
"solhint": "^6.0.3",
"solhint": "^6.1.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.9.3",
Expand Down
84 changes: 42 additions & 42 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading