Skip to content

Commit be8cf75

Browse files
shunkakinokitaylanpinceCopilot
authored
Release trails-rc-2 contracts (#71)
* Update README and configuration for trails-rc-2, including new contract addresses and adjustments to YAML settings. * Update README with new contract addresses for trails-rc-2 * Update README and all-contracts.json with new TrailsRouterShim address for trails-rc-2 * Update README and all-contracts.json with new TrailsIntentEntrypoint address for trails-rc-2 * Update description Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Taylan Pince <[email protected]> Co-authored-by: Copilot <[email protected]>
1 parent 4f1a981 commit be8cf75

File tree

3 files changed

+64
-0
lines changed

3 files changed

+64
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@ The following is a list of contracts that are deployed by this script.
231231
│ trails-rc-1 │ TrailsIntentEntrypoint │ 0xf9dF60584Da03f8D83fF1Bed663465734B2221a7 │
232232
│ trails-rc-1 │ TrailsRouter │ 0x07abd6f71aE3EAD08b2B6D5d091eE24d32dc1Dfa │
233233
│ trails-rc-1 │ TrailsRouterShim │ 0xFc9ffCfaaD457d202CD9622C6D9788363BFA5f2f │
234+
│ trails-rc-2 │ TrailsIntentEntrypoint │ 0x9470D883bac170116d397Db3dA71B2e57d567583 │
235+
│ trails-rc-2 │ TrailsRouter │ 0xB676Ad908a81722000C23a1E953691d01Ed90791 │
236+
│ trails-rc-2 │ TrailsRouterShim │ 0xCd1a39cd80d12AB38F61A9f252d160024b2144E4 │
234237
│ trails-token-sweeper │ TrailsMulticall3Router │ 0xFF8f46538c39dCA637fCE9a804b2B59B517A9698 │
235238
│ trails-token-sweeper │ TrailsTokenSweeper │ 0xEbDd59B8cE1993d38e4E081E0d80662BB169d3db │
236239
│ value-forwarder │ ValueForwarder │ 0xABAAd93EeE2a569cF0632f39B10A9f5D734777ca │

jobs/trails/build-info/rc-2/all-contracts.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

jobs/trails/rc-2.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: "trails-rc-2"
2+
version: "rc-2"
3+
description: "Deploy Trails contracts (rc 2)"
4+
skip_networks: [19011, 40875]
5+
6+
actions:
7+
- name: "trails-router"
8+
template: "erc-2470"
9+
arguments:
10+
salt: "{{salt-zero}}"
11+
creationCode: "{{Contract(./build-info/rc-2/all-contracts.json:TrailsRouter).creationCode}}"
12+
output: true
13+
14+
- name: "verify-trails-router"
15+
type: "verify-contract"
16+
depends_on: ["trails-router"]
17+
arguments:
18+
address: "{{trails-router.address}}"
19+
contract: "{{Contract(./build-info/rc-2/all-contracts.json:TrailsRouter)}}"
20+
output: false
21+
22+
- name: "trails-router-shim"
23+
template: "erc-2470"
24+
arguments:
25+
salt: "{{salt-zero}}"
26+
creationCode:
27+
type: "constructor-encode"
28+
arguments:
29+
creationCode: "{{Contract(./build-info/rc-2/all-contracts.json:TrailsRouterShim).creationCode}}"
30+
types: ["address"]
31+
values: ["{{trails-router.address}}"]
32+
output: true
33+
34+
- name: "verify-trails-router-shim"
35+
type: "verify-contract"
36+
depends_on: ["trails-router-shim"]
37+
arguments:
38+
address: "{{trails-router-shim.address}}"
39+
contract: "{{Contract(./build-info/rc-2/all-contracts.json:TrailsRouterShim)}}"
40+
constructorArguments:
41+
type: "constructor-encode"
42+
arguments:
43+
types: ["address"]
44+
values: ["{{trails-router.address}}"]
45+
output: false
46+
47+
- name: "trails-intent-entrypoint"
48+
template: "erc-2470"
49+
arguments:
50+
salt: "{{salt-zero}}"
51+
creationCode: "{{Contract(./build-info/rc-2/all-contracts.json:TrailsIntentEntrypoint).creationCode}}"
52+
output: true
53+
54+
- name: "verify-trails-intent-entrypoint"
55+
type: "verify-contract"
56+
depends_on: ["trails-intent-entrypoint"]
57+
arguments:
58+
address: "{{trails-intent-entrypoint.address}}"
59+
contract: "{{Contract(./build-info/rc-2/all-contracts.json:TrailsIntentEntrypoint)}}"
60+
output: false

0 commit comments

Comments
 (0)