Skip to content

feat: add support for tuple enum variants in typescript Idl parsing#2202

Closed
ngundotra wants to merge 1 commit intosolana-foundation:masterfrom
ngundotra:master
Closed

feat: add support for tuple enum variants in typescript Idl parsing#2202
ngundotra wants to merge 1 commit intosolana-foundation:masterfrom
ngundotra:master

Conversation

@ngundotra
Copy link
Copy Markdown
Contributor

Add support for enum Idl Types with tuple data like:

#[derive(AnchorSerialize, AnchorDeserialize)]
enum Vote {
  VoteWithComment(u8, String)
}

which has an idl representation of

{
  name: "Vote",
  type: {
    kind: "enum",
    variants: [
      {
        name: "VoteWithComment",
        fields: [
          "bool",
          "string",
        ]
      }
    ]
  }
}

@vercel
Copy link
Copy Markdown

vercel bot commented Sep 29, 2022

@ngundotra is attempting to deploy a commit to the coral-xyz Team on Vercel.

A member of the Team first needs to authorize it.

@ngundotra ngundotra closed this Sep 29, 2022
@ngundotra
Copy link
Copy Markdown
Contributor Author

Closed since this is addressed by already open PR: #2185

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant