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

Unexpected behavior for Enums #46

Open
bigherc18 opened this issue Dec 1, 2023 · 1 comment
Open

Unexpected behavior for Enums #46

bigherc18 opened this issue Dec 1, 2023 · 1 comment

Comments

@bigherc18
Copy link

The types inferred for enums is not exactly what we want, check the example below

ABI:

{
    "type": "enum",
    "name": "example::TestEnum",
    "variants": [
      {
        "name": "int128",
        "type": "core::integer::u128"
      },
      {
        "name": "felt",
        "type": "core::felt252"
      },
      {
        "name": "tuple",
        "type": "(core::integer::u32, core::integer::u32)"
      }
    ]
  }

Test:

assertType<StringToPrimitiveType<TAbi, 'example::TestEnum'>>({
  int128: intValue,
  felt: bigIntValue,
  tuple: [intValue, bigIntValue]
})
@ivpavici
Copy link
Collaborator

ivpavici commented Feb 2, 2024

is this issue still relevant?

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

No branches or pull requests

2 participants