Skip to content

Commit

Permalink
Merge updates into dev (#428)
Browse files Browse the repository at this point in the history
* Update .gitmodules (#337)

There is no need to use an account for GitHub.

* chore(infra): set up deploy (#397)

* chore: yarn publish (#402)

* chore: yarn publish

* Update deploy.yml

* Update deploy.yml

* Update deploy.yml

* Update deploy.yml

* chore: add provenance (#404)

* compile contracts in workflow (#405)

* feat: deploy worldchain (#411)

* fix: update UR address on worldchain (#412)

previous accidentally set it to the unsupported protocol

* Create CODEOWNERS (#419)

---------

Co-authored-by: Jonney <[email protected]>
Co-authored-by: mr-uniswap <[email protected]>
Co-authored-by: Emily Williams <[email protected]>
Co-authored-by: marktoda <[email protected]>
Co-authored-by: dianakocsis <[email protected]>
  • Loading branch information
6 people authored Dec 4, 2024
1 parent 8465e7d commit f6ac0a2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @uniswap/protocols
4 changes: 4 additions & 0 deletions deploy-addresses/worldchain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"UniversalRouterV1_2_V2Support": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D",
"UnsupportedProtocol": "0x16D4F26C15f3658ec65B1126ff27DD3dF2a2996b"
}
21 changes: 21 additions & 0 deletions script/deployParameters/DeployWorldchain.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.15;

import {DeployUniversalRouter} from '../DeployUniversalRouter.s.sol';
import {RouterParameters} from 'contracts/types/RouterParameters.sol';

contract DeployWorldchain is DeployUniversalRouter {
function setUp() public override {
params = RouterParameters({
permit2: 0x0000000000000000000000000000000000000000,
weth9: 0x0000000000000000000000000000000000000000,
v2Factory: 0x0000000000000000000000000000000000000000,
v3Factory: 0x0000000000000000000000000000000000000000,
pairInitCodeHash: 0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f,
poolInitCodeHash: 0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f,
v4PoolManager: 0x0000000000000000000000000000000000000000,
v3NFTPositionManager: 0x0000000000000000000000000000000000000000,
v4PositionManager: 0x0000000000000000000000000000000000000000
});
}
}

0 comments on commit f6ac0a2

Please sign in to comment.