@pyxisjs/core 0.2.2 → 0.2.3
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.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2975,10 +2975,10 @@ function mapOnchainToWithdrawalRequest(onchainRequest, updatedAt) {
|
|
|
2975
2975
|
deadline: onchainRequest.deadline,
|
|
2976
2976
|
flags: parseRequestFlags(onchainRequest.flags?.flag ?? 0),
|
|
2977
2977
|
offerAmount: onchainRequest.offer_amount,
|
|
2978
|
-
offerToken: onchainRequest.offer_token,
|
|
2978
|
+
offerToken: onchainRequest.offer_token.inner,
|
|
2979
2979
|
userAddress: onchainRequest.user_address,
|
|
2980
2980
|
wantAmount: onchainRequest.want_amount,
|
|
2981
|
-
wantToken: onchainRequest.want_token,
|
|
2981
|
+
wantToken: onchainRequest.want_token.inner,
|
|
2982
2982
|
updatedAt: updatedAt ?? ""
|
|
2983
2983
|
};
|
|
2984
2984
|
}
|