forked from drift-labs/driftpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetch_all_markets.py
30 lines (25 loc) · 1.38 KB
/
fetch_all_markets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from anchorpy import Provider, Wallet
from solders.keypair import Keypair
from solana.rpc.async_api import AsyncClient
from driftpy.drift_client import DriftClient, AccountSubscriptionConfig
import asyncio
async def get_all_market_names():
env = 'mainnet-beta' # 'devnet'
rpc = 'https://api.mainnet-beta.solana.com' # todo replace
kp = Keypair() # random wallet
wallet = Wallet(kp)
connection = AsyncClient(rpc)
provider = Provider(connection, wallet)
drift_client = DriftClient(provider.connection, provider.wallet, env.split('-')[0], account_subscription=AccountSubscriptionConfig("cached"))
all_perps_markets = await drift_client.program.account['PerpMarket'].all()
sorted_all_perps_markets = sorted(all_perps_markets, key=lambda x: x.account.market_index)
result_perp = [bytes(x.account.name).decode('utf-8').strip() for x in sorted_all_perps_markets]
all_spot_markets = await drift_client.program.account['SpotMarket'].all()
sorted_all_spot_markets = sorted(all_spot_markets, key=lambda x: x.account.market_index)
result_spot = [bytes(x.account.name).decode('utf-8').strip() for x in sorted_all_spot_markets]
result = result_perp + result_spot[1:] # ignore quote spot market index
return result
if __name__ == '__main__':
loop = asyncio.new_event_loop()
answer = loop.run_until_complete(get_all_market_names())
print(answer)