set_admin

Changing of the contract administrator is done in 2 steps:

  1. Current administrator should transfer his rights to a new administrator.

  2. A new administrator must accept his new role. If he didn't accept a new role, the previous administrator continues to be an administrator of this contract.

This entrypoint describes the first step of changing the contract administrator. The second step is described here.

Call parameters

FieldTypeDescription

admin

address

A new administrator of the contract

Usage

const tFarmAddress = "KT1...";
const admin = "tz1...";
const tFarm = await tezos.contract.at(tFarmAddress);
const operation = await tFarm.methods.set_admin(admin).send();

await operation.confirmation();

Errors

  • Not-admin - sender of the transaction is not current administrator.

Last updated