File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
mainnet/2025-12-04-set-jovian-parameters Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ #### Execute the transaction
2+
3+ ### 1. Update repo:
4+
5+ ``` bash
6+ cd contract-deployments
7+ git pull
8+ cd mainnet/2025-12-04-set-jovian-parameters
9+ make deps
10+ ```
11+
12+ ### 2. Execute
13+
14+ 1 . Collect outputs from all participating signers.
15+ 1 . Concatenate all signatures and export it as the ` SIGNATURES `
16+ environment variable, i.e. `export
17+ SIGNATURES="[ SIGNATURE1] [ SIGNATURE2 ] ..."`.
18+ 1 . Run the ` make execute ` command as described below to execute the transaction.
19+
20+ For example, if the quorum is 3 and you get the following outputs:
21+
22+ ``` shell
23+ Data: 0xDEADBEEF
24+ Signer: 0xC0FFEE01
25+ Signature: AAAA
26+ ```
27+
28+ ``` shell
29+ Data: 0xDEADBEEF
30+ Signer: 0xC0FFEE02
31+ Signature: BBBB
32+ ```
33+
34+ ``` shell
35+ Data: 0xDEADBEEF
36+ Signer: 0xC0FFEE03
37+ Signature: CCCC
38+ ```
39+
40+ Execute the transaction:
41+
42+ ``` bash
43+ SIGNATURES=AAAABBBBCCCC make execute
44+ ```
You can’t perform that action at this time.
0 commit comments