File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ export KEYPAIR=~/.config/solana/dev-wallet.json
86
86
export PROGRAM=svm_spoke # Also repeat the deployment process for multicall_handler
87
87
export PROGRAM_ID=$( cat target/idl/$PROGRAM .json | jq -r " .address" )
88
88
export MULTISIG= # Export the Squads vault, not the multisig address!
89
+ export SOLANA_VERSION=$( grep -A 2 ' name = "solana-program"' Cargo.lock | grep ' version' | head -n 1 | cut -d' "' -f2)
89
90
```
90
91
91
92
For the initial deployment also need these:
@@ -219,6 +220,7 @@ solana-verify verify-from-repo \
219
220
--url $RPC_URL \
220
221
--program-id $PROGRAM_ID \
221
222
--library-name $PROGRAM \
223
+ --base-image " solanafoundation/solana-verifiable-build:$SOLANA_VERSION " \
222
224
https://github.com/across-protocol/contracts
223
225
```
224
226
@@ -229,6 +231,7 @@ solana-verify export-pda-tx \
229
231
--url $RPC_URL \
230
232
--program-id $PROGRAM_ID \
231
233
--library-name $PROGRAM \
234
+ --base-image " solanafoundation/solana-verifiable-build:$SOLANA_VERSION " \
232
235
--uploader $MULTISIG \
233
236
https://github.com/across-protocol/contracts
234
237
```
You can’t perform that action at this time.
0 commit comments