Bivrost

0.0.4

:fire: :rainbow: Bridge between Solidity Contracts and Swift
gnosis/bivrost-swift

What's New

0.0.4

2017-11-08T14:47:29Z
  • 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 the0x 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.

Bivrost Build Status

🔥 🌈 Bridge between Solidity Contracts and Swift

Bivrost is in very early development. Do not use this for anything important.

Description

bivrost generates Swift classes for Solidity contracts that know how to encode and decode their function calls. Use this to generate transactions that can then be sent to the blockchain.

You can use this as a pre-compile script phase for your Swift project. Generate the needed files, then add them to your project.

bivrost creates an output folder that contains auxiliary code for encoding and decoding as well as generated contract classes.

Usage

Mint 🌱

$ mint run gnosis/bivrost-swift "bivrost --input './contracts/*.json' --output '../Sources/Solidity'"

SPM

$ git clone https://github.com/gnosis/bivrost-swift
$ cd bivrost-swift
$ swift run bivrost --input './contracts/*.json' --output '../Sources/Solidity'

Using BivrostKit from code is currently not supported, but is on the roadmap.

Options

  • --input [default: ./abi/*.json] - Input file pattern specifying which json files should be parsed. Needs to be escaped with quotes to prevent the shell from expanding it.
  • --output [default: ./solidity] - Output folder which will contain all necessary Solidity files (generated and auxiliary).
  • --force [default: false] - If set, deletes all contents of the output folder before recreating it. Make sure there is nothing else in there.

Run $ mint run gnosis/bivrost-swift "bivrost --help" for current help.

Input files

bivrost parses the Solidity contract JSON files generated by the truffle compiler for code generation. They should have the following format:

{
    "contract_name": "TestContract",
    "abi": [
      {
        "constant": false,
        "inputs": [
          {
            "name": "inputVariable",
            "type": "uint16"
          },
          {
            "name": "anotherInputVariable",
            "type": "uint128"
          }
        ],
        "name": "aTestFunction",
        "outputs": [
          {
            "name": "outputVariable",
            "type": "bool"
          }
        ],
        "payable": false,
        "type": "function"
      },
      [ more function definitions... ]
    ]
}

Output

bivrost generates following folder structure in the output folder:

<output folder>
  - BivrostError.swift
  - Coding
    - BaseEncoder.swift
    - BaseDecoder.swift
  - Extensions
    - BigIntExtension.swift
    - DataExtension.swift
    - StringExtension.swift
  - Generated Contracts
    - ContractName1.swift
    - ContractName2.swift
  - Generated Types
    - ArrayX-Generated.swift
    - BytesX-Generated.swift
    - IntX-Generated.swift
    - UIntX-Generated.swift
  - Protocols
    - DynamicType.swift
    - SolidityCodable.swift
    - SolidityFunction.swift
    - StaticType.swift
  - Types
    - Address.swift
    - ArrayX.swift
    - Bool.swift
    - Bytes.swift
    - BytesX.swift
    - Function.swift
    - IntX.swift
    - Solidity.swift
    - String.swift
    - UIntX.swift
    - VariableArray.swift

The generated code depends on BigInt (import BigInt) so make sure you make that available for the generated code.

License

Bivrost is available under the MIT license. See the LICENSE file for more info.

Issues

Tests currently do not work when generating an Xcode project via swift package generate-xcodeproj. This issue is described in Quick/Quick#751.

Workarounds:

  • Drop to the CMD and use swift test for testing.
  • Go to the QuickSpecBase target build settings in the generated Xcode project. Set Enables Module to YES (CLANG_ENABLE_MODULES=YES). Now testing should work.

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

Last updated: Wed Mar 13 2024 02:09:16 GMT-0900 (Hawaii-Aleutian Daylight Time)