-
Notifications
You must be signed in to change notification settings - Fork 133
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
[WIP] Type Definitions #141
base: master
Are you sure you want to change the base?
Conversation
Thank you so much @omarish! A few notes: We are interested in migrating the codebase to TypeScript. Please use this Are you interested in continuing this work? If so, please commit the converted ts files into this branch (and remove the js files). I would make liberal use of |
@frangio Of course, glad I can contribute here. I just replaced most of the JS files with typescript. There are some files I didn't touch, like truffle config and migrations, etc. I'm not sure if I have the time to take this all the way to the finish line right now, and I'm hoping that this start will encourage more volunteers to get involved with this effort. |
@omarish Feel free to take take this as far as your time allows! |
Will this be merged soon? |
Hey guys, what's the status of this PR? From a quick look through the code changes it appears as if there is a bit of work to go - but this isn't a large code base. I have a real aversion to untyped code, what would be the minimal effort expected to complete this task? |
@FrozenKiwi This is not a large codebase but converting everything to TypeScript is still probably a significant effort. I think it might be a better approach to hand-write |
I would personally choose to go the full-TS route. I think we agree it's preferable, as you then get the compiler to validate the work (and I trust compilers much more than I would trust anyone - including me). If you're OK with (very) liberal use of |
I'm ok with going the full TypeScript route and with liberal use of any. |
Annnny update? sir |
I was using this library as part of a project and ran into this issue. Saw a couple of people were thinking the same thing, so I went ahead and started some work to add type definitions here. Here's what I've done and a proposed roadmap to get us to supporting types here:
What's done so far:
./convert.sh
to run it. I've only tested it using zsh; I think there might be some issues if you try and do it in bash because of how bash handles glob expansion.@types
libs to package.json.Right now I've disabled
noImplicitAny
andnoImplicitThis
, but we might want togo full type safety before merging this PR. Reasoning is: 1) this is a testing library that a lot of projects depend on, 2) you can never be too paranoid in crypto, 3) should be pretty straightforward.To get a list of errors, run
Right now I'm seeing 37 errors, I think it's probably 1-2 hours to get working.
So, what's left?
To Do
If this library stays JS native, open a PR in (DefinitelyTyped)[https://github.com/DefinitelyTyped] that add these type definitionsWant to make a change? Open a PR against https://github.com/omarish/openzeppelin-test-helpers and I'll merge it in.
Anything I'm missing? I really like Typescript and OpenZeppelin, so I figured this is a good opportunity to learn how to properly add type definitions to a 💯 project.