BootstrapWitness.deserialize constructor
BootstrapWitness.deserialize(
- 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));
}