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
calculateCirculating() uses the isPositive() function to assert that the new computed total supply is non-negative. However, isPositive() has been deprecated in favor of isPositiveV2(), which does not suffer from multiple 0-representations.
o1js/mina-fungible-token/FungibleToken.ts:
TokenContract.transfer() uses the Int64.neg() function, which is deprecated in favor of negV2().
The text was updated successfully, but these errors were encountered:
mina-fungible-token/FungibleToken.ts
:calculateCirculating()
uses theisPositive()
function to assert that the new computed total supply is non-negative. However,isPositive()
has been deprecated in favor ofisPositiveV2()
, which does not suffer from multiple 0-representations.o1js/mina-fungible-token/FungibleToken.ts
:TokenContract.transfer()
uses theInt64.neg()
function, which is deprecated in favor ofnegV2()
.The text was updated successfully, but these errors were encountered: