Skip to content

Releases: celo-org/developer-tooling

@celo/[email protected]

13 Feb 15:34
bbeb5ae
Compare
Choose a tag to compare

@celo/[email protected]

13 Feb 15:34
bbeb5ae
Compare
Choose a tag to compare

@celo/[email protected]

13 Feb 15:34
bbeb5ae
Compare
Choose a tag to compare

Patch Changes

@celo/[email protected]

13 Feb 15:34
bbeb5ae
Compare
Choose a tag to compare

Major Changes

  • #105 6b2e34c Thanks @aaronmgdr! - Remove export compareBN

    This would have been used to sort BN.js numbers. Generic comparator functions are not really the scope of this library. Removing it allows the bn.js dependency to be removed too. If you were using this function it can be re-implemented as

    export function compareBN(a: BN, b: BN) {
      if (a.eq(b)) {
        return 0
      } else if (a.lt(b)) {
        return -1
      } else {
        return 1
      }
    }

@celo/[email protected]

13 Feb 15:34
bbeb5ae
Compare
Choose a tag to compare

Patch Changes

@celo/[email protected]

13 Feb 15:34
bbeb5ae
Compare
Choose a tag to compare

Patch Changes

@celo/[email protected]

13 Feb 15:33
bbeb5ae
Compare
Choose a tag to compare

Patch Changes

@celo/[email protected]

13 Feb 15:33
bbeb5ae
Compare
Choose a tag to compare

@celo/[email protected]

13 Feb 15:33
bbeb5ae
Compare
Choose a tag to compare

@celo/[email protected]

13 Feb 15:33
bbeb5ae
Compare
Choose a tag to compare

Patch Changes