fakeBootStrapWitness static method

BootstrapWitness fakeBootStrapWitness(
  1. String byronAddr
)

Implementation

static BootstrapWitness fakeBootStrapWitness(String byronAddr) {
  final address = ADAByronAddress(byronAddr);
  return BootstrapWitness(
      vkey: Vkey(_fake32Bytes),
      signature: Ed25519Signature(_fakeSignature),
      chainCode: _fake32Bytes,
      attributes: address.attributeSerialize());
}