0.0.5 • Published 6 years ago

cryptofin-solidity v0.0.5

Weekly downloads
3
License
CC-BY-SA-3.0
Repository
github
Last release
6 years ago

CryptoFin Solidity

A collection of Solidity libraries, with an initial focus on arrays.

Documentation

Documentation is generated from Natspec.

Quickstart

npm install --save cryptofin-solidity

Use it in a project

import "cryptofin-solidity/contracts/array-utils/AddressArrayUtils.sol";

contract Contract {
  using AddressArrayUtils for address[];

  function containsDeadBeef(address[] memory addresses)
    returns (bool)
  {
    return addresses.contains(address(0xdeadbeef));
  }

}

Contributing

If you'd like to contribute, this library is in need of:

v0.0.x

This library is still relatively new and may have breaking changes in the future.

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago