Optimizations to script builder#192
Optimizations to script builder#192WyattMufson wants to merge 2 commits intoO3Labs:masterfrom WyattMufson:patch-1
Conversation
|
Also it looks like all of the non-typed portions of the script builder can be completely removed. |
|
if we change this can we remove pushData, buildNep5TransferScript, and pushContractInvoke from the project as well in this PR |
|
Sure thing. Are you only using the typed functions now? |
|
Yes i believe only typed functions are necessary as every contract invoke should filter in as a DAPI request structure. |
|
I'm talking with Apisit about how to fix where |
|
@saltyskip removed the rest. Didn't find a solution for when |
You don't need to call
pushDataon aStringsince it will just end up callingpushHexString. This change just makes it a little clearer how theScriptBuilderworks.