Tags: gnosis/bivrost-swift
Tags
Small fixes. (#11) - Eliminates warnings in the generated code by using special handling for methods that would result in a `Void` return. - Fix crash when address does respond to a certain function (e.g. if address is not a HumanStandardToken decoding the`0x` return data for `Name` function would crash). - Revert back to official CryptoSwift. - Improve testing guide. - Add `unwrap()` to some types to allow for getting the wrapped value out of the solidity wrapper.
Code Generation + Build Integration (#5) - Can now generate contract & helper code via CMD `bivrost --input 'path/*.json' --output 'Solidity'` - Can be used via manual cloning or with [Mint](https://github.com/yonaskolb/mint) - Helper library (`BivrostHelper`) needed for the exported code is located in `/Resources` now and symlinked to `/Sources/BivrostHelper` to support `Mint`'s resources integration. SPM does follow symlinks so there is no problem. - Generated types are pre-generated and checked in for testing right now, but for export they are generated on the fly again. - Updated Readme