@m0-foundation/ntt-sdk-route 0.0.18 → 0.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -983,7 +983,7 @@ var _M0AutomaticRoute = class _M0AutomaticRoute extends sdkConnect.routes.Automa
|
|
|
983
983
|
sdkConnect.toUniversal(destination.chain, destinationToken).toString(),
|
|
984
984
|
receiver,
|
|
985
985
|
receiver,
|
|
986
|
-
Uint8Array.from(
|
|
986
|
+
Uint8Array.from(Buffer.from("00", "hex")),
|
|
987
987
|
{ value: await ntt.quoteDeliveryPrice(destination.chain, options) }
|
|
988
988
|
);
|
|
989
989
|
yield ntt.createUnsignedTx(sdkEvm.addFrom(txReq, senderAddress), "Ntt.transfer");
|
package/dist/index.mjs
CHANGED
|
@@ -975,7 +975,7 @@ var _M0AutomaticRoute = class _M0AutomaticRoute extends routes.AutomaticRoute {
|
|
|
975
975
|
toUniversal(destination.chain, destinationToken).toString(),
|
|
976
976
|
receiver,
|
|
977
977
|
receiver,
|
|
978
|
-
Uint8Array.from(
|
|
978
|
+
Uint8Array.from(Buffer.from("00", "hex")),
|
|
979
979
|
{ value: await ntt.quoteDeliveryPrice(destination.chain, options) }
|
|
980
980
|
);
|
|
981
981
|
yield ntt.createUnsignedTx(addFrom(txReq, senderAddress), "Ntt.transfer");
|