We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
api online return type TypeInstruction struct { Accounts []string json:"accounts,omitempty" Data string json:"data,omitempty" ProgramId string json:"programId" StackHeight interface{} json:"stackHeight" Parsed json.RawMessage json:"parsed,omitempty" Program string json:"program,omitempty" }
json:"accounts,omitempty"
json:"data,omitempty"
json:"programId"
json:"stackHeight"
json:"parsed,omitempty"
json:"program,omitempty"
current struct, type CompiledInstruction struct { ProgramIDIndex int Accounts []int Data []byte }
Parsed is unkown, should we add this filed?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
api online return
type TypeInstruction struct {
Accounts []string
json:"accounts,omitempty"
Data string
json:"data,omitempty"
ProgramId string
json:"programId"
StackHeight interface{}
json:"stackHeight"
Parsed json.RawMessage
json:"parsed,omitempty"
Program string
json:"program,omitempty"
}
current struct,
type CompiledInstruction struct {
ProgramIDIndex int
Accounts []int
Data []byte
}
Parsed is unkown, should we add this filed?
The text was updated successfully, but these errors were encountered: