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