BootstrapWitness.deserialize constructor

BootstrapWitness.deserialize(
  1. CborListValue<CborObject> cbor
)

Implementation

factory BootstrapWitness.deserialize(CborListValue cbor) {
  return BootstrapWitness(
      vkey: Vkey.deserialize(cbor.elementAt<CborBytesValue>(0)),
      signature:
          Ed25519Signature.deserialize(cbor.elementAt<CborBytesValue>(1)),
      chainCode: cbor.elementAtBytes(2),
      attributes: cbor.elementAtBytes(3));
}