Skip to content

KetanKudikyal/git-dao-ui

 
 

Repository files navigation

Git DAO

This is the repo for frontend for gitdao.

Links

What github api gives you about a repository ?

Read Here: https://docs.github.com/en/rest/repos/repos#get-a-repository

User info Stuff needee: login, id, avatar_url

{
  "login": "vivekascoder",
  "id": 54495208,
  "node_id": "MDQ6VXNlcjU0NDk1MjA4",
  "avatar_url": "https://avatars.githubusercontent.com/u/54495208?v=4",
  "gravatar_id": "",
  "url": "https://api.github.com/users/vivekascoder",
  "html_url": "https://github.com/vivekascoder",
  "followers_url": "https://api.github.com/users/vivekascoder/followers",
  "following_url": "https://api.github.com/users/vivekascoder/following{/other_user}",
  "gists_url": "https://api.github.com/users/vivekascoder/gists{/gist_id}",
  "starred_url": "https://api.github.com/users/vivekascoder/starred{/owner}{/repo}",
  "subscriptions_url": "https://api.github.com/users/vivekascoder/subscriptions",
  "organizations_url": "https://api.github.com/users/vivekascoder/orgs",
  "repos_url": "https://api.github.com/users/vivekascoder/repos",
  "events_url": "https://api.github.com/users/vivekascoder/events{/privacy}",
  "received_events_url": "https://api.github.com/users/vivekascoder/received_events",
  "type": "User",
  "site_admin": false,
  "name": "Vivek",
  "company": "@instaraise",
  "blog": "vivek.biz",
  "location": "0.0.0.0",
  "email": "[email protected]",
  "hireable": null,
  "bio": "Imposter",
  "twitter_username": "0xStateMachine",
  "public_repos": 69,
  "public_gists": 152,
  "followers": 51,
  "following": 71,
  "created_at": "2019-08-25T07:43:51Z",
  "updated_at": "2022-08-23T15:26:16Z"
}

Contract Integration

    function createDAO(
        string memory _daoTokenName,
        string memory _daoTokenSymbol,
        uint256 _daoTokenSupply,
        uint256 _minDelay,
        uint256 _quorumPercentage,
        uint256 _votingPeriod,
        uint256 _votingDelay
    ) external;

Event when proposing a proposal.

emit ProposalCreated(
  proposalId,
  _msgSender(),
  targets,
  values,
  new string[](targets.length),
  calldatas,
  snapshot,
  deadline,
  description
);

Count the weight of the user.

uint256 weight = getVotes(account, proposal.voteStart.getDeadline());

Check if the user has already voted.

/**
  * @dev See {IGovernor-hasVoted}.
  */
function hasVoted(uint256 proposalId, address account) public view virtual override returns (bool) {
    return _proposalVotes[proposalId].hasVoted[account];
}

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 94.9%
  • JavaScript 3.3%
  • CSS 1.8%