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
Distribute Interest To Egr Holders
The distributeFee function transfers Ethereum into the EGR holders wallet according to their voting power.
1
function distributeFee() external;
Copied!
Solidity
1
CEGORAS egoras = CEGORAS(0x7a24C....);
2
require(egoras.distributeFee(), "unable to distribute Fee");
Copied!
Web 3
1
const instance = await new web3.eth.Contract(abi, address)
2
await instance.methods.distributeFee().send({from: 0xMyAccount});
Copied!
Previous
Reward Voters
Next
Create Governance Request
Last modified
1yr ago
Copy link
Contents
Solidity
Web 3