Skip to content

Commit c3578b1

Browse files
authored
Updated to current mainnet keys (#44)
1 parent ec3a47b commit c3578b1

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [upcoming] - TBD
9+
- [config] Replaced `prodbeta` with current `mainnet` keys in the `init_key_store.sh`
10+
- Break out admin-only request/rpc classes into separate files.
911
- [pyth_admin] Separate out admin commands into new binary.
1012
- [pyth] Consolidate CLI argument parsing.
1113
- [pyth] Remove get_pub_key command and update docs/scripts - these should by run using the solana CLI tool.

doc/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Once permissioned, you need two additional public keys in the key-store. The id
3434
Use the init_key_store.sh script to initialize these account keys:
3535

3636
```
37-
KENV=devnet # or testnet, prodbeta
37+
KENV=devnet # or testnet, mainnet
3838
3939
# initialize keys for solana devnet
4040
../pctest/init_key_store.sh $KENV $KDIR

pctest/init_key_store.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ check()
1515
KENV=$1
1616
KDIR=$2
1717
case $KENV in
18-
prodbeta)
19-
MAP_KEY=CUK2JnnLRMtJon3kAUXcgVc8wDhFk96HmNTssnaNRbXQ
20-
PGM_KEY=9SfxAUWNQKzx85jaivNhhUKG5JTZZmkFydjmdkKakjMo
18+
mainnet)
19+
MAP_KEY=AHtgzX45WTKfkPG53L6WYhGEXwQkN1BVknET3sVsLL8J
20+
PGM_KEY=FsJ3A3u2vn5cTVofAjvy6y5kwABJAqYWpe4975bi2epH
2121
;;
2222
devnet)
2323
MAP_KEY=BmA9Z6FjioHJPpjT39QazZyhDRUdZy2ezwx4GiDdE2u2
@@ -28,7 +28,7 @@ case $KENV in
2828
PGM_KEY=8tfDNiaEyrV6Q1U4DEXrEigs9DoDtkugzFbybENEbCDz
2929
;;
3030
*)
31-
echo "Unknown environment. Please use: prodbeta, devnet, testnet"
31+
echo "Unknown environment. Please use: mainnet, devnet, testnet"
3232
exit 1;
3333
esac
3434
if [ -z "$KDIR" ] ; then

0 commit comments

Comments
 (0)