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
Validate Governance Request
ValidateRequest function sends an approval request into the protocol.
function validateRequest(uint _requestID) external;
_requestID:
The unique identifier of every governance request emitted from Egoras Microfinance protocol
Solidity
CEGORAS egoras = CEGORAS(0x7a24C....);
require(egoras.validateRequest("180"), "unable to validate request");
Web 3
const instance = await new web3.eth.Contract(abi, address)
await instance.methods.validateRequest("180").send({from: 0xMyAccount});
Previous
Governance Vote
Next - Egoras Treasury System
How Egoras Treasury Work
Last modified
1yr ago
Copy link
Outline
Solidity
Web 3