Skip to content

Latest commit

 

History

History

nebula-incentives-custody

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Nebula Incentives Custody

InstantiateMsg

{
    "owner": String,
    "nebula_token": String
}
  • owner: address of the owner of the incentives-custody contract
  • nebula_token: contract address of Nebula Token (NEB)

ExecuteMsg

RequestNeb

Transfers NEB tokens of amount from the incentives custody contract to the caller. Only callable by the custody's owner (the incentives in real cases)

{
    "request_neb": {
        "amount": Uint128
    }
}
  • amount: amount of NEB tokens to transfer

UpdateConfig

Updates the owner of the custody contract

{
    "update_config": {
        "owner": String
    }
}
  • owner: address of the new custody contract owner