Skip to content
New issue

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

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

Closed
wants to merge 1 commit into from

Conversation

ngundotra
Copy link
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

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
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