sbv2-solana/libraries/py
gallynaut 0796ca4b4f init 2022-05-17 10:42:04 -06:00
..
switchboardpy init 2022-05-17 10:42:04 -06:00
tests init 2022-05-17 10:42:04 -06:00
LICENSE init 2022-05-17 10:42:04 -06:00
README.md init 2022-05-17 10:42:04 -06:00
example.py init 2022-05-17 10:42:04 -06:00
poetry.lock init 2022-05-17 10:42:04 -06:00
pyproject.toml init 2022-05-17 10:42:04 -06:00

README.md

switchboardv2-py-api


SwitchboardPy is the Python client for Switchboard. It provides wrappers to help you to interact with the Switchboard V2 program on-chain.

Internally it uses AnchorPy, an Anchor API implementation in Python.

pypi   twitter  

Installation

pip install switchboardpy

Basic Usage

import asyncio
from solana.keypair import Keypair
from solana.publickey import PublicKey
from solana.rpc.async_api import AsyncClient
from anchorpy import Program, Provider, Wallet

from switchboardpy import AggregatorAccount, AccountParams

# Devnet Program ID.
SBV2_DEVNET_PID = PublicKey(
    '2TfB33aLaneQb5TNVwyDz3jSZXS6jdW2ARw1Dgf84XCG'
)

async def main():
    client = AsyncClient("https://api.devnet.solana.com/")
    provider = Provider(client, Wallet(Keypair()))
    program = await Program.at(
        SBV2_DEVNET_PID, provider
    )
    agg = AggregatorAccount(AccountParams(program=program, public_key=PublicKey("88FX4tBstuwBPNhQU4EEBoPX35neSu4Le9zDSwtPRRQz")))

    # getting aggregator data
    data = await agg.load_data()

    # getting most recent value (decimal.Decimal)
    val = await agg.get_latest_value()

    print('LATEST VALUE:')
    print(val)

    await program.close()

asyncio.run(main())

"""
OUTPUT
LATEST VALUE:
180.12115
"""