moneroSecp256k1 property

BipCoinConfig moneroSecp256k1
final

Configuration for Monero (secp256k1)

Implementation

final BipCoinConfig moneroSecp256k1 = BipCoinConfig(
  coinNames: CoinsConf.moneroMainNet.coinName,
  coinIdx: Slip44.monero,
  chainType: ChainType.mainnet,
  defPath: derPathNonHardenedFull,
  keyNetVer: bip44BtcKeyNetVerMain,
  wifNetVer: null,
  type: EllipticCurveTypes.secp256k1,
  addressEncoder:
      (params, config) =>
          throw AddressConverterException(
            "Address derivation is not supported using coinConfig. Please use the Monero class instead.",
          ),
);