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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2264,6 +2264,8 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [Sophon](https://explorer.sophon.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Jovay](https://explorer.jovay.io/l2/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Intuition](https://explorer.intuition.systems/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [MemeCore](https://memecorescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [LightLink Phoenix](https://phoenix.lightlink.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

#### Ethereum Test Networks

Expand Down Expand Up @@ -2354,6 +2356,8 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [Sophon Sepolia Testnet](https://explorer.testnet.sophon.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Jovay Sepolia Testnet](https://sepolia-explorer.jovay.io/l2/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Intuition Sepolia Testnet](https://testnet.explorer.intuition.systems/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [MemeCore Testnet (Insectarium)](https://insectarium.blockscout.memecore.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [LightLink Testnet (Pegasus)](https://pegasus.lightlink.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

## Integration With External Tooling

Expand Down
30 changes: 30 additions & 0 deletions deployments/deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,21 @@
"https://explorer.intuition.systems/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "MemeCore",
"chainId": 4352,
"urls": [
"https://memecorescan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "LightLink Phoenix",
"chainId": 1890,
"urls": [
"https://phoenix.lightlink.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://repo.sourcify.dev/1890/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "Sepolia",
"chainId": 11155111,
Expand Down Expand Up @@ -1264,5 +1279,20 @@
"urls": [
"https://testnet.explorer.intuition.systems/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "MemeCore Testnet (Insectarium)",
"chainId": 43522,
"urls": [
"https://insectarium.blockscout.memecore.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
"name": "LightLink Testnet (Pegasus)",
"chainId": 1891,
"urls": [
"https://pegasus.lightlink.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://repo.sourcify.dev/1891/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": "b69e66b0ff79924d487d49bf7fb47c9ec326acba"
"rev": "799589bfa97698c2bdf0ba8df4d461b607e36c57"
}
},
"lib/openzeppelin-contracts": {
"branch": {
"name": "master",
"rev": "d0131a9c50954b3841f6fb8e364e1822af127a43"
"rev": "62713176a5a27e8380f950002a6a47a0831fb0c9"
}
},
"lib/solady": {
Expand Down
67 changes: 67 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1153,6 +1153,35 @@ const config: HardhatUserConfig = {
url: vars.get("INTUITION_MAINNET_URL", "https://rpc.intuition.systems"),
accounts,
},
memecoreTestnet: {
chainId: 43522,
url: vars.get(
"MEMECORE_TESTNET_URL",
"https://rpc.insectarium.memecore.net",
),
accounts,
},
memecoreMain: {
chainId: 4352,
url: vars.get("MEMECORE_MAINNET_URL", "https://rpc.memecore.net"),
accounts,
},
lightlinkTestnet: {
chainId: 1891,
url: vars.get(
"LIGHTLINK_TESTNET_URL",
"https://replicator.pegasus.lightlink.io/rpc/v1",
),
accounts,
},
lightlinkMain: {
chainId: 1890,
url: vars.get(
"LIGHTLINK_MAINNET_URL",
"https://replicator.phoenix.lightlink.io/rpc/v1",
),
accounts,
},
},
contractSizer: {
alphaSort: true,
Expand Down Expand Up @@ -1442,6 +1471,12 @@ const config: HardhatUserConfig = {
// For Intuition testnet & mainnet
intuition: vars.get("INTUITION_API_KEY", ""),
intuitionTestnet: vars.get("INTUITION_API_KEY", ""),
// For MemeCore testnet & mainnet
memecore: vars.get("MEMECORE_API_KEY", ""),
memecoreTestnet: vars.get("MEMECORE_API_KEY", ""),
// For LightLink testnet & mainnet
lightlink: vars.get("LIGHTLINK_API_KEY", ""),
lightlinkTestnet: vars.get("LIGHTLINK_API_KEY", ""),
},
customChains: [
{
Expand Down Expand Up @@ -2706,6 +2741,38 @@ const config: HardhatUserConfig = {
browserURL: "https://testnet.explorer.intuition.systems",
},
},
{
network: "memecore",
chainId: 4352,
urls: {
apiURL: "https://api.memecorescan.io/api",
browserURL: "https://memecorescan.io",
},
},
{
network: "memecoreTestnet",
chainId: 43522,
urls: {
apiURL: "https://insectarium.blockscout.memecore.com/api",
browserURL: "https://insectarium.blockscout.memecore.com",
},
},
{
network: "lightlink",
chainId: 1890,
urls: {
apiURL: "https://phoenix.lightlink.io/api",
browserURL: "https://phoenix.lightlink.io",
},
},
{
network: "lightlinkTestnet",
chainId: 1891,
urls: {
apiURL: "https://pegasus.lightlink.io/api",
browserURL: "https://pegasus.lightlink.io",
},
},
],
},
};
Expand Down
2 changes: 1 addition & 1 deletion interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"next-seo": "^7.0.1",
"postcss": "^8.5.6",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "^0.7.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/forge-std
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@
"deploy:jovaymain": "npx hardhat run --no-compile --network jovayMain scripts/deploy.ts",
"deploy:intuitiontestnet": "npx hardhat run --no-compile --network intuitionTestnet scripts/deploy.ts",
"deploy:intuitionmain": "npx hardhat run --no-compile --network intuitionMain scripts/deploy.ts",
"deploy:memecoretestnet": "npx hardhat run --no-compile --network memecoreTestnet scripts/deploy.ts",
"deploy:memecoremain": "npx hardhat run --no-compile --network memecoreMain scripts/deploy.ts",
"deploy:lightlinktestnet": "npx hardhat run --no-compile --network lightlinkTestnet scripts/deploy.ts",
"deploy:lightlinkmain": "npx hardhat run --no-compile --network lightlinkMain 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
24 changes: 12 additions & 12 deletions pnpm-lock.yaml

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

Loading