fix package import after moving program related stuff to folder programs
This commit is contained in:
parent
7a8d2663be
commit
8e6e3c27d7
|
@ -20,7 +20,7 @@ import (
|
|||
|
||||
bin "github.com/dfuse-io/binary"
|
||||
"github.com/dfuse-io/solana-go"
|
||||
"github.com/dfuse-io/solana-go/token"
|
||||
"github.com/dfuse-io/solana-go/programs/token"
|
||||
)
|
||||
|
||||
func decode(owner solana.PublicKey, data []byte) (interface{}, error) {
|
||||
|
|
|
@ -23,9 +23,9 @@ import (
|
|||
|
||||
bin "github.com/dfuse-io/binary"
|
||||
"github.com/dfuse-io/solana-go"
|
||||
"github.com/dfuse-io/solana-go/programs/token"
|
||||
"github.com/dfuse-io/solana-go/rpc"
|
||||
"github.com/dfuse-io/solana-go/text"
|
||||
"github.com/dfuse-io/solana-go/token"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
|
|
@ -19,13 +19,13 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/dfuse-io/solana-go/text"
|
||||
|
||||
"github.com/dfuse-io/solana-go"
|
||||
_ "github.com/dfuse-io/solana-go/programs/serum"
|
||||
_ "github.com/dfuse-io/solana-go/programs/system"
|
||||
_ "github.com/dfuse-io/solana-go/programs/token"
|
||||
_ "github.com/dfuse-io/solana-go/programs/tokenregistry"
|
||||
"github.com/dfuse-io/solana-go/rpc"
|
||||
_ "github.com/dfuse-io/solana-go/serum"
|
||||
_ "github.com/dfuse-io/solana-go/system"
|
||||
_ "github.com/dfuse-io/solana-go/token"
|
||||
"github.com/dfuse-io/solana-go/text"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
|
|
@ -21,8 +21,8 @@ import (
|
|||
"strings"
|
||||
|
||||
"github.com/dfuse-io/solana-go"
|
||||
"github.com/dfuse-io/solana-go/programs/serum"
|
||||
"github.com/dfuse-io/solana-go/rpc"
|
||||
"github.com/dfuse-io/solana-go/serum"
|
||||
"github.com/ryanuber/columnize"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
|
|
@ -17,7 +17,7 @@ package cmd
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/dfuse-io/solana-go/serum"
|
||||
"github.com/dfuse-io/solana-go/programs/serum"
|
||||
"github.com/ryanuber/columnize"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
|
|
@ -18,7 +18,7 @@ import (
|
|||
"fmt"
|
||||
|
||||
"github.com/dfuse-io/solana-go"
|
||||
"github.com/dfuse-io/solana-go/token"
|
||||
"github.com/dfuse-io/solana-go/programs/token"
|
||||
"github.com/ryanuber/columnize"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
|
|
@ -17,7 +17,7 @@ package cmd
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/dfuse-io/solana-go/token"
|
||||
"github.com/dfuse-io/solana-go/programs/token"
|
||||
"github.com/ryanuber/columnize"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
|
1
go.mod
1
go.mod
|
@ -27,4 +27,3 @@ require (
|
|||
golang.org/x/tools v0.0.0-20200601175630-2caf76543d99 // indirect
|
||||
google.golang.org/api v0.15.0
|
||||
)
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ import (
|
|||
"math/big"
|
||||
|
||||
"github.com/dfuse-io/solana-go"
|
||||
"github.com/dfuse-io/solana-go/token"
|
||||
"github.com/dfuse-io/solana-go/programs/token"
|
||||
)
|
||||
|
||||
type MarketMeta struct {
|
||||
|
@ -64,7 +64,6 @@ type OpenOrdersMeta struct {
|
|||
OpenOrdersV2 OpenOrdersV2
|
||||
}
|
||||
|
||||
|
||||
type Order struct {
|
||||
Limit *big.Int `json:"limit"`
|
||||
Side SideLayout `json:"side"`
|
||||
|
|
Loading…
Reference in New Issue