Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

v1.2.1

Compare
Choose a tag to compare
@JamesMcGhee JamesMcGhee released this 23 Jun 14:55
· 15 commits to master since this release

Signifigant update introducing the Client and Server static class. These classes will help clearly identifiy the intended scope of a given call. The entierety of the Token and Wallet class have moved to Server e.g.

API.Token

becomes

API.Server.Token

Similarly

API.Wallets

becomes

API.Server.Wallets

Note that the Server class will only compile for Editor and Server builds, that is it will not be available at all for use in a client build.

Other changes include the simplifciation of the Token, Contract and Wallet data models to remove irrelivent fields and the simplifciation of the API.Server.Wallets.Create(...) method which now only creates WhiteLabel type wallets as per Venly recomendation.