gagliardetto
gagliardetto
Hi the `GetBlock` method is currently broken and won't accept anything that's not `solana.EncodingBase64` (or `solana.EncodingBase58`). I'm working on a fix, and it will be included in the next release.
Hey That's something that's currently not implemented. Adding BIP39 support is on the list of things to do.
Wow! This is a lot of work! :star_struck: Thank you! I'll review it over a couple days.
Hi @joeldejesus1 sorry for the delay > I would be happy to walk you through it yes please, that would be awesome
> Do you have discord? Yep! I'll send you a link if you DM me on twitter: https://twitter.com/immaterial_ink
That probably means the transaction was never executed/never reached a validator. Do you get an error somewhere? Are you on mainnet? Devnet?
Hey @ileFixDev Without knowing the data layout, the account is an opaque binary blob (the data could be anything)
Things I would look at: - is that a known program? - is it a fork of a known program? - is there a UI somewhere for that data? (look...
You could do something like this: Upgrade to `v1.2.1` with `go get github.com/gagliardetto/[email protected]` and then: ```go package main import ( "context" "github.com/davecgh/go-spew/spew" bin "github.com/gagliardetto/binary" "github.com/gagliardetto/solana-go" "github.com/gagliardetto/solana-go/programs/token" "github.com/gagliardetto/solana-go/rpc" ) func main()...
Hi @mirageruler Two things before I respond in a more extended way: 1. `anchor-go` has unreleased fixed in the main branch; you can pull with `go get github.com/gagliardetto/anchor-go@e02ff9267d07c1d64aa745aa9216e20fd637abbc` ; that...