Skip to main content

BitcoinAddress

No description

type BitcoinAddress implements GenericAddress {
id: String!
addressType: BitcoinAddressType!
addressUsageType: BitcoinAddressUsage!
transactions(
limit: Int
nextToken: String
): TransactionConnection!
}

Fields

BitcoinAddress.id ● String! non-null scalar

Unique identifier for the address.

BitcoinAddress.addressType ● BitcoinAddressType! non-null enum

The type (e.g. COMPATIBILITY) of the address generated as displayed in the 'id' field

BitcoinAddress.addressUsageType ● BitcoinAddressUsage! non-null enum

The address usage type (e.g. CHANGE or RECEIVE)

BitcoinAddress.transactions ● TransactionConnection! non-null object

Transactions were received into the given bitcoin address.

BitcoinAddress.transactions.limit ● Int scalar
BitcoinAddress.transactions.nextToken ● String scalar

Interfaces

GenericAddress interface