Abstract
Following the successful upgrade and testing of the Pyth Lazer contract on Solana testnet and devnet, this proposal intends to upgrade the Lazer contract on Solana mainnet.
Rationale
This proposal upgrades the Pyth Lazer Contract program on Mainnet to add support for ecdsa signatures. Ecdsa signatures are smaller in payload size but are more expensive to verify.
Implementation Plan
Proposal: Realms
Program hash: b790774609fcb6ca5d37bb205ab7e1371a5082aa6770d1d143a0dd44f9f314f9
Proposed program hash can be seen via solana-verify get-buffer-hash 4tdvkVpj4LgRZBMhffG3hzm2xN1u743fndRX2a75dPRX
Verification:
- Make sure you have git and rust installed.
- git: install
git
from here - rust: install
rust
from here - clone the pyth-crosschain repo by running the following command:
git clone
https://github.com/pyth-network/pyth-crosschain
- change your directory to the lazer by running this command:
cd pyth-crosschain/lazer/
- build the program:
solana-verify build --library-name pyth_lazer_solana_contract
- check the hash of the artifact:
sha256sum ./target/deploy/pyth_lazer_solana_contract.so
- check the hash of the deployed buffer
solana program -u m dump 4tdvkVpj4LgRZBMhffG3hzm2xN1u743fndRX2a75dPRX temp_file && sha256sum temp_file && rm temp_file
- Make sure the hash from step 8 and from step 7 match
- Make sure the buffer authority is the multisig authority
- Make a request to get the latest price feed of btc with ecdsa signature using the command below (replace with your token):
curl -X POST -d ‘{“priceFeedIds”: [1], “properties”: [“price”], “chains”: [“evm”], “channel”: “real_time”, “jsonBinaryEncoding”: “hex”}’ -H “Authorization: Bearer ” https://pyth-lazer.dourolabs.app/v1/latest_price
- Run
cargo run --example parse_and_verify
to and paste the evm encoded update data and press enter. You should see the public key26fb61a864c758ae9fba027a96010480658385b9
- Copy the trusted signer from UI and run the following command to make sure it is the same:
python3 -c "print(bytearray(<TRUSTED SIGNER [38, 251, ...]>).hex())"