Comment on page
register
An entrypoint for bakers registration.
Field | Type | Description |
---|---|---|
baker | key_hash | An address of a baker |
🌮 Taquito
const bakerRegistryAddress = "KT1...";
const baker = "tz1...";
const bakerRegistry = await tezos.contract.at(bakerRegistryAddress);
const operation = await bakerRegistry.methods.register(baker).send();
await operation.confirmation();
Operation fails when the key_hash parameter is not a registered delegate (standard Tezos error).
Last modified 1yr ago