You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create transaction with specific data.
Based on Semux docs .transfer() method has 3 required paramaters - from, to and value.
Working Code without data
{ Error: Required parameter to was null or undefined when calling transfer.
at new RequiredError (./node_modules/semux-js/dist/semux.umd.js:9980:28)
at Object.transfer (./node_modules/semux-js/dist/semux.umd.js:11197:23)
at Object.transfer (./node_modules/semux-js/dist/semux.umd.js:12134:78)
at SemuxApi.transfer (./node_modules/semux-js/dist/semux.umd.js:12605:47)
at sendCoins (./index.js:75:26)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:189:7) field: 'to' }
So, can we add object as a parameter in order to remove the need to specify optional parameters. Like this:
This API is auto generated by Swagger. I agree that interface is not ideal, but it will require quite some time to rewrite and maintain all these changes. Also, there is no sense to modify only transfer method as requested, most functions have many optional parameters.
I am trying to create transaction with specific data.
Based on Semux docs .transfer() method has 3 required paramaters - from, to and value.
Working Code without data
Bad code with wrapped object
Trace error:
So, can we add object as a parameter in order to remove the need to specify optional parameters. Like this:
The text was updated successfully, but these errors were encountered: