Skip to content

Releases: celo-org/developer-tooling

@celo/[email protected]

14 Jan 14:37
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:37
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:37
f76274f
Compare
Choose a tag to compare
Pre-release

Major Changes

  • #488 07c4c78 Thanks @aaronmgdr! - Interfaces for newLedgerWalletWithSetup and LedgerWallet constructor have changed.

    newLedgerWalletWithSetup replaced positional arguments for named arguments and added changeIndexes

      newLedgerWalletWithSetup(
        transport: any,
    -    derivationPathIndexes?: number[],
    -    baseDerivationPath?: string,
    -    ledgerAddressValidation?: AddressValidation,
    -    isCel2?: boolean
    +    options: LedgerWalletSetup
      )
    
    + interface LedgerWalletSetup {
    +   derivationPathIndexes?: number[]
    +   changeIndexes?: number[]
    +   baseDerivationPath?: string
    +   ledgerAddressValidation?: AddressValidation
    +   isCel2?: boolean
    + }
    

    new LedgerWallet moved transport to first position and added changeIndexes in 4th

    new LedgerWallet(
    +    transport,
        derivationPathIndexes,
        baseDerivationPath,
    -    transport,
    +    changeIndexes,
        ledgerAddressValidation,
        isCel2
      )

Minor Changes

  • #488 07c4c78 Thanks @aaronmgdr! - It is now possible to iterate over both the change and address indexes to look thru more bip44 paths for addresses. just pass changeIndexes into LedgerWallet.

Patch Changes

@celo/[email protected]

14 Jan 14:36
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:37
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:36
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:36
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:36
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:37
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes

@celo/[email protected]

14 Jan 14:36
f76274f
Compare
Choose a tag to compare
Pre-release

Patch Changes