EGORAS
Search…
EGORAS
Introduction
Getting Started
What problem is Egoras trying to solve?
Egoras Decentralized Autonomous Organization
Lending Partner Governance
Loan Approval Governance
Interest Rate Governance
Interest sharing formula
Uncollateralized Lending Module
Loan Application
Approve Company
Repay Loan
Reward Voters
Distribute Interest To Egr Holders
Create Governance Request
Governance Vote
Validate Governance Request
Egoras Treasury System
How Egoras Treasury Work
Block Rewards
How is the Treasury capitalized?
Egoras Token Economy
Introduction
THE EGORAS DOLLAR (EUSD)
Egoras Governance Token (EGR)
Summary
Powered By
GitBook
Reward Voters
The rewardHolderByVotePower function transfers an asset into the EGR holders wallet according to their voting power.
1
function rewardHoldersByVotePower() external;
Copied!
Solidity
1
CEGORAS egoras = CEGORAS(0x7a24C....);
2
require(egoras.rewardHoldersByVotePower(), "unable to reward holders");
Copied!
Web 3
1
const instance = await new web3.eth.Contract(abi, address)
2
await instance.methods.rewardHoldersByVotePower().send({from: 0xMyAccount});
Copied!
Previous
Repay Loan
Next
Distribute Interest To Egr Holders
Last modified
1yr ago
Copy link
Contents
Solidity
Web 3