Address
The Address type provides an address information on multiple EVM chains.
type Address {
address: AddressEVM!
chainID: ChainID!
wallet: Wallet
identity: Identity!
followers(
offset: Int
limit: Int
): FollowConnection!
followings(
offset: Int
limit: Int
): FollowConnection!
followStats: FollowStats!
isFollowedBy(
addresses: [AddressEVM!]!
): [Boolean!]!
isFollowing(
addresses: [AddressEVM!]!
): [Boolean!]!
}
Fields
address (AddressEVM)
address the address.
chainID (ChainID)
chainID the ChainID.
wallet (Wallet)
ethWallet the wallet address on Ethereum.
identity (Identity)
identity provides information about a user's identity.
followers (FollowConnection)
followers provides a paginated list of ordered followers profiles.
followings (FollowConnection)
followings provides a paginated list of ordered followings profiles.
followStats (FollowStats)
followStats returns stats about a user's followers and followings
isFollowedBy (Boolean)
isFollowedBy returns the followed by status of one or multiple addresses.
addresses(AddressEVM)
isFollowing (Boolean)
isFollowing returns the following status to one or multiple addresses.
addresses(AddressEVM)