v0.6.0
What's Changed
Added
- #130 Adds the
SetNameEvent
,SetSymbolEvent
,SetDecimalsEvent
andTotalSupplyEvent
to the SRC-20 standard. - #130 Adds the
SetMetadataEvent
to the SRC-7 standard.
Changed
- #130 Splits examples into seperate workspace projects for improved continuous integration.
- #139 Prepares for the v0.6.0 release.
Breaking
- #131 Makes the SRC-3
mint()
function'sSubId
argument anOption
.
Before:
mint(Identity::Address(Address::zero()), SubId::zero(), 100);
After:
mint(Identity::Address(Address::zero()), Some(SubId::zero()), 100);
Full Changelog: v0.5.2...v0.6.0