solana-go/programs/serum/rpc.go

127 lines
3.7 KiB
Go
Raw Normal View History

2020-11-09 10:09:50 -08:00
// Copyright 2020 dfuse Platform Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2020-11-06 13:52:19 -08:00
package serum
import (
"bytes"
"context"
"fmt"
2020-11-09 07:44:50 -08:00
rice "github.com/GeertJohan/go.rice"
2020-12-16 14:54:18 -08:00
bin "github.com/dfuse-io/binary"
"github.com/gagliardetto/solana-go"
"github.com/gagliardetto/solana-go/rpc"
"github.com/gagliardetto/solana-go/rpc/ws"
2020-12-16 14:54:18 -08:00
"go.uber.org/zap"
2020-11-06 13:52:19 -08:00
)
2020-11-09 07:44:50 -08:00
//go:generate rice embed-go
// TODO: hit the chain and
func KnownMarket() ([]*MarketMeta, error) {
box := rice.MustFindBox("data").MustBytes("markets.json")
if box == nil {
return nil, fmt.Errorf("unable to retrieve known markets")
}
dec := json.NewDecoder(bytes.NewReader(box))
var markets []*MarketMeta
err := dec.Decode(&markets)
if err != nil {
return nil, fmt.Errorf("unable to decode known markets: %w", err)
}
return markets, nil
}
2020-11-20 10:15:27 -08:00
func FetchOpenOrders(ctx context.Context, rpcCli *rpc.Client, openOrdersAddr solana.PublicKey) (*OpenOrdersMeta, error) {
acctInfo, err := rpcCli.GetAccountInfo(ctx, openOrdersAddr)
if err != nil {
return nil, fmt.Errorf("unable to get open orders account:%w", err)
}
openOrdersMeta := &OpenOrdersMeta{}
2021-07-12 07:00:27 -07:00
if err := openOrdersMeta.OpenOrders.Decode(acctInfo.Value.Data.GetBinary()); err != nil {
2020-11-20 10:15:27 -08:00
return nil, fmt.Errorf("decoding market v2: %w", err)
}
return openOrdersMeta, nil
}
2020-11-06 17:03:49 -08:00
func FetchMarket(ctx context.Context, rpcCli *rpc.Client, marketAddr solana.PublicKey) (*MarketMeta, error) {
acctInfo, err := rpcCli.GetAccountInfo(ctx, marketAddr)
2020-11-06 13:52:19 -08:00
if err != nil {
return nil, fmt.Errorf("unable to get market account:%w", err)
}
meta := &MarketMeta{
Address: marketAddr,
2020-11-06 13:52:19 -08:00
}
2021-07-12 07:00:27 -07:00
dataLen := len(acctInfo.Value.Data.GetBinary())
switch dataLen {
// case 380:
// // if err := meta.MarketV1.Decode(acctInfo.Value.Data); err != nil {
// // return nil, fmt.Errorf("decoding market v1: %w", err)
// // }
// return nil, fmt.Errorf("Unsupported market version, w/ data length of 380")
2020-11-06 13:52:19 -08:00
case 388:
2021-07-12 07:00:27 -07:00
if err := meta.MarketV2.Decode(acctInfo.Value.Data.GetBinary()); err != nil {
return nil, fmt.Errorf("decoding market v2: %w", err)
}
default:
return nil, fmt.Errorf("unsupported market data length: %d", dataLen)
2020-11-06 14:02:52 -08:00
}
if err := rpcCli.GetAccountDataIn(ctx, meta.MarketV2.QuoteMint, &meta.QuoteMint); err != nil {
return nil, fmt.Errorf("getting quote mint: %w", err)
2020-11-06 14:02:52 -08:00
}
if err := rpcCli.GetAccountDataIn(ctx, meta.MarketV2.BaseMint, &meta.BaseMint); err != nil {
return nil, fmt.Errorf("getting base token: %w", err)
}
2020-11-06 13:52:19 -08:00
return meta, nil
2020-11-06 13:52:19 -08:00
}
2020-12-16 14:54:18 -08:00
func StreamOpenOrders(client *ws.Client) error {
sub, err := client.ProgramSubscribe(DEXProgramIDV2, rpc.CommitmentSingleGossip)
2020-12-16 14:54:18 -08:00
if err != nil {
return fmt.Errorf("unable to subscribe to programID %q: %w", DEXProgramIDV2, err)
2020-12-16 14:54:18 -08:00
}
count := 0
for {
d, err := sub.Recv()
if err != nil {
return fmt.Errorf("received error from programID subscription: %w", err)
}
2021-07-11 10:10:06 -07:00
res := d
2020-12-16 14:54:18 -08:00
var f *AccountFlag
2021-07-12 07:00:27 -07:00
err = bin.NewDecoder(res.Value.Account.Data.GetBinary()).Decode(&f)
2020-12-16 14:54:18 -08:00
if err != nil {
fmt.Println("***********************************", err)
zlog.Debug("unable to decoce account flag for account... skipping",
2021-07-10 06:12:23 -07:00
zap.Stringer("account_address", res.Value.Pubkey),
2020-12-16 14:54:18 -08:00
)
continue
}
fmt.Printf("%d - %s\n", count, f.String())
count++
}
}