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

Fix for unstructured storage abis (codegen) #1976

Merged
merged 4 commits into from
Aug 30, 2023
Merged

Conversation

bz888
Copy link
Contributor

@bz888 bz888 commented Aug 29, 2023

Description

Fixes #1975

Fix incorrect codegen on unstructured storage proxy contract abi

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

Checklist

  • I have tested locally
  • I have performed a self review of my changes
  • Updated any relevant documentation
  • Linked to any relevant issues
  • I have added tests relevant to my changes
  • Any dependent changes have been merged and published in downstream modules
  • My code is up to date with the base branch
  • I have updated relevant changelogs. We suggest using chan

// example: "TextChanged_bytes32_string_string_string_Event", Event name/Function type name will be joined in ejs
const inputToSnake: string = abiObject.inputs.map((obj) => obj.type.toLowerCase()).join('_');
const inputToSnake = abiObject.inputs
.map((obj) => (obj.type.includes('[]') ? obj.type.replace(/\[\]/g, '_arr') : obj.type.toLowerCase()))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The includes check is redundant. If there's no match it wont replace and we should lowercase even if there's an []

@stwiname stwiname merged commit 681c1d1 into main Aug 30, 2023
1 of 2 checks passed
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.

incorrect abi codegen Initialize_string_string_string_address[]_Transaction
2 participants