-
Notifications
You must be signed in to change notification settings - Fork 31
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
1138 starkware provider #90
base: develop
Are you sure you want to change the base?
Conversation
5f1c325
to
8d3e5fa
Compare
* Demo code - logic will be moved into the widget in a later ticket | ||
* Do we want to allow users to supply application/index/ethaddress? | ||
* */ | ||
getStarkKey() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is going to be added somewhere else. No reason to push it just to delete it one PR later.
@@ -13,7 +13,8 @@ | |||
"sourceMap": true, | |||
"inlineSources": true, | |||
"noUnusedLocals": true, | |||
"strictNullChecks": true | |||
"strictNullChecks": true, | |||
"allowSyntheticDefaultImports": true // required for starkware-crypto BigNumber import |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it really required?
From what I read, allowSyntheticDefaultImports
allows to use import x from 'x'
instead of import * as x from 'x'
.
Introduces a starkware provider with method stubs matching the API we're planning on exposing