updateOracle
address -> storage.oracle
Sets address
value to storage oracle
.
Usage
const newOracle = "KT1...";
const proxy = await tezos.contract.at(proxyAddress);
const operation = await yupana.methods
.updateOracle(newOracle)
.send();
await operation.confirmation();
Last updated