๐Ÿ“–
Yupana Document Portal
  • Introduction
    • What is Yupana.Finance?
    • Participants
    • FAQ
  • Lending
    • Supplying assets
      • General
    • Borrowing assets
      • General
  • Liquidation
  • Liquidity Risk
    • Yupana Interest Rate
  • โš™๏ธDeveloper space
    • yToken contract methods
      • ๐Ÿ“„Storage overview
      • accrueInterest
      • priceCallback
      • updateInterest
      • ๐Ÿ”ตLending methods
        • borrow
        • enterMarket
        • exitMarket
        • liquidate
        • mint
        • redeem
        • repay
      • ๐Ÿ”ตFA2 Token entrypoints
        • balance_of
        • get_total_supply
        • transfer
        • update_operators
      • ๐Ÿ›‘Admin methods
        • ๐Ÿ“ฅSetup entrypionts
          • setTokenAction
          • setUseAction
        • ๐ŸคนManage entrypoints
          • addMarket
          • setAdmin
          • setBorrowPause
          • setGlobalFactors
          • setTokenFactors
          • updateMetadata
          • withdrawReserve
    • InterestRate contract
      • ๐Ÿ”ตOn-chain views
        • getBorrowRate
        • getSupplyRate
        • getUtilizationRate
      • ๐Ÿ›‘Admin methods
        • setCoefficients
        • updateAdmin
    • PriceFeed contract
      • getPrice
      • receivePrice
      • ๐Ÿ›‘Admin methods
        • setProxyAdmin
        • updateOracle
        • updatePair
        • updateYToken
  • Agreements
    • Terms of Service
    • Privacy Policy
    • Cookie Policy
Powered by GitBook
On this page
  • Usage
  • Errors
  1. Developer space
  2. yToken contract methods
  3. Admin methods
  4. Manage entrypoints

setAdmin

address -> storage with [ admin ]

Sets new admin to contract storage

Usage

const newAdmin = "tz1...";
const yupana = await tezos.contract.at(yTokenAddress);
const operation = await yupana.methods.setAdmin(newAdmin).send();
await operation.confirmation();
yupana = ContractInterface.from_michelson(code) # or client.contract(contract_address)...
call = yupana.setAdmin("tz1...")
opg = call.inject()

Errors

  • yToken/not-admin - sender is not contract admin.

PreviousaddMarketNextsetBorrowPause

Last updated 3 years ago

โš™๏ธ
๐Ÿ›‘
๐Ÿคน