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
In ollinet, I added a PSM for USDT with decimalPlaces: 18 using startPSM() as usual, not realizing that it sets anchorPerMinted 1:1 irrespective of decimalPlaces:
I tried to trade 0.2 USDT for IST and the trade failed with Request would exceed mint limit, which puzzled me, because I set the mint limit to 123456_000_000n. The mint limit is in uist, which prompted me to realize that this trade was asking for a lot of IST (roughly 2e11 = 0.2 * 1e18/1e6).
In ollinet, I added a PSM for USDT with
decimalPlaces: 18
usingstartPSM()
as usual, not realizing that it setsanchorPerMinted
1:1 irrespective of decimalPlaces:agoric-sdk/packages/inter-protocol/src/proposals/startPSM.js
Line 86 in 1b3cbd2
I tried to trade 0.2 USDT for IST and the trade failed with Request would exceed mint limit, which puzzled me, because I set the mint limit to
123456_000_000n
. The mint limit is inuist
, which prompted me to realize that this trade was asking for a lot of IST (roughly 2e11 = 0.2 * 1e18/1e6).cc @warner @rowgraus @turadg
The text was updated successfully, but these errors were encountered: