# Pyth Cross-chain Governance Admin CLI Program The goal of this CLI is interacting with the Pyth Squads multisig. It allows to : - Make proposals : - `accept-authority` - `upgrade-program` - `init-price` - `propose-token-transfer` - Interact with proposals : - `approve` - `activate` - Inspect proposals : - `parse-transaction` ## Usage Note: - When using with Ledger, please enable [blind signing](https://www.ledger.com/academy/enable-blind-signing-why-when-and-how-to-stay-safe) in the Solana app settings. TLDR: When you enable blind signing, you enable your device to approve a smart contract transaction, even though it hasn’t been able to display full contract data to you. In other words, you’re agreeing to trust, instead of verify, the transaction. You still have to manually approve each transactions. - Information about ledger derivation can be found [here](https://github.com/LedgerHQ/ledger-live-common/blob/master/docs/derivation.md). ### Example To activate a transaction: ``` pnpm i pnpm turbo build --filter @pythnetwork/xc-admin-common pnpm exec ts-node src/index.ts activate -t -c -w -lda -ldc ```