Member

Every time an address receives loots or shares in the DAO a member entity is created. A member is composed on an address and the amount of shares they hold, as well as events like burning and transferring shares.

id

Unique identifier and primary key of the entity

id: ID!

createdAt

Block timestamp when the member entity was created (when the address first recieved shares or loot)

createdAt: String!

txHash

Transaction where the member was created

txHash: Bytes!

dao

Related DAO

dao: Dao!

memberAddress

Address of the member

memberAddress: Bytes!

shares

Current shares held by the member

shares: BigInt!

loot

Current loot held by the member

loot: BigInt!

delegatingTo

Address the member is delegating to

delegatingTo: Bytes!

delegatingToMember

Subgraph ID of member the address is delegating to

delegatingToMember: Member

lastDelegateUpdateTxHash

Transaction hash when the delegate was last updated

lastDelegateUpdateTxHash: Bytes

delegateShares

Total amount of shares this address votes with (thier own plus delegated shares)

delegateShares: BigInt!

delegateOf

Members this member is delegating too

delegateOf: [Member!]

delegateOfCount

Related votes

delegateOfCount: BigInt!
votes: [Vote!]