As indicated here by @sisuresh. The following migrations needed to be made:
src/xdr.js has been updated to import from curr_generated, flipping the switch from using next to curr
other changes are described in 3b1eb163bcad70bd3246e0a7f2b357a5c9b3e8a4, replicated here:
function invocation now needs an InvokeContractArgs structure
signatureArgs was a 0-elem vec, now an ScVal w/ 0-elem vec
bodyType and metaDataSizeBytes are gone
some minor test stuff has been tweaked for readability
Note for reviewers: the diffs of src/next_generated.js and types/next.d.ts should actually be rather readable and a good way to see the underlying XDR schema changes in this bump.
You can see that the XDR now points to the following:
As indicated here by @sisuresh. The following migrations needed to be made:
curr_generated
, flipping the switch from usingnext
tocurr
InvokeContractArgs
structuresignatureArgs
was a 0-elem vec, now anScVal
w/ 0-elem vecbodyType
andmetaDataSizeBytes
are goneNote for reviewers: the diffs of src/next_generated.js and types/next.d.ts should actually be rather readable and a good way to see the underlying XDR schema changes in this bump.