Lisk Observer API Reference

Welcome to the Lisk Observer API reference.

This is a live example of how you can use Lisk Observer API in order to interact with the Lisk Blockchain via GraphQL.

Lisk Observer is a Lisk Blockchain Explorer and it provides GraphQL APIs for developing on top of the Lisk blockchain.

Contact

Lisk Observer - built by WeStake.Club⚡️

License

GNU General Public License v3.0
https://github.com/nerdvibe/lisk-observer/blob/main/LICENSE

Terms of Service: https://lisk.observer/terms

API Endpoints
Mainnet:
https://public-api.lisk.observer/graphql
Playground

Graphiql allows you to test the queries on the playground. The Graphiql playground is available here

Authorization

The GraphQL API allows public access. Requests are throttled to prevent abuse. The current limit for all unauthenticated users is 10 requests per second.

For users who wish to authenticate requests to avoid any potential rate limiting please contact us on Discord.

Repository

Lisk Observer is an open source project, the open API is based on Lisk Observer Server, which can be found on Github.

Deploy your own endpoint

The Lisk Observer API runs from the lisk-observer-server NodeJS app, you can deploy your own instance to run your own Lisk Observer API.

Support & Contacts

If you need support on Lisk Observer API, you can find us on WeStake.Club⚡️ Discord Server.

Queries

account

This query returns the Lisk account (> 3.0) based on the address passed in the parameter
Returns an Account

Name Description
address - String!

Example

Query
query account($address: String!) {
  account(address: $address) {
    username
    address
    isDelegate
    token {
      ...TokenFragment
    }
    sequence {
      ...SequenceFragment
    }
    keys {
      ...KeysFragment
    }
    dpos {
      ...DposFragment
    }
    hexAddress
    publicKey
  }
}
Variables
{"address": "xyz789"}
Response
{
  "data": {
    "account": {
      "username": "abc123",
      "address": "abc123",
      "isDelegate": false,
      "token": Token,
      "sequence": Sequence,
      "keys": Keys,
      "dpos": Dpos,
      "hexAddress": "xyz789",
      "publicKey": "abc123"
    }
  }
}

accountLegacy

This query returns the Lisk legacy account based on the address passed in the parameter
Returns a LegacyAccount

Name Description
address - String!

Example

Query
query accountLegacy($address: String!) {
  accountLegacy(address: $address) {
    username
    address
    balance
    publicKey
  }
}
Variables
{"address": "abc123"}
Response
{
  "data": {
    "accountLegacy": {
      "username": "abc123",
      "address": "xyz789",
      "balance": "xyz789",
      "publicKey": "xyz789"
    }
  }
}

blocksByAddress

Similar to lastBlocks, this query returns the last 10 blocks by address, in a paginated form. It supports blocks up to the genesis of 3.0.
Returns a PaginatedBlock

Name Description
address - String!
page - Int

Example

Query
query blocksByAddress($address: String!, $page: Int) {
  blocksByAddress(address: $address, page: $page) {
    data {
      ...BlockFragment
    }
    pagination {
      ...PaginationFragment
    }
  }
}
Variables
{"address": "xyz789", "page": 987}
Response
{
  "data": {
    "blocksByAddress": {
      "data": [Block],
      "pagination": Pagination
    }
  }
}

delegates

This query returns the first N delegates, sorted by vote weight.
Returns a DelegatesWithStats

Name Description
limit - Int

Example

Query
query delegates($limit: Int) {
  delegates(limit: $limit) {
    locked
    supply
    delegates {
      delegates {
      }
    }
    promises {
      ...PromisesFragment
    }
  }
}
Variables
{"limit": 123}
Response
{
  "data": {
    "delegates": {
      "locked": "xyz789",
      "supply": "xyz789",
      "delegates": DelegatesList,
      "promises": [Promises]
    }
  }
}

eternityWall

This query returns the last messages of in the transactions. Works only with >3.0 chain transactions.
Returns a PaginatedEthernityWallMessage

Name Description
page - Int

Example

Query
query eternityWall($page: Int) {
  eternityWall(page: $page) {
    data {
      ...EthernityWallMessageFragment
    }
    pagination {
      ...PaginationFragment
    }
  }
}
Variables
{"page": 123}
Response
{
  "data": {
    "eternityWall": {
      "data": [EthernityWallMessage],
      "pagination": Pagination
    }
  }
}

getHistoricalPrices

This query returns the historical prices of LSK token based on the currency passed in the parameter
Returns a CurrencyData

Name Description
currency - Currencies

Example

Query
query getHistoricalPrices($currency: Currencies) {
  getHistoricalPrices(currency: $currency) {
    currency
    date
    value
  }
}
Variables
{"currency": Currencies}
Response
{
  "data": {
    "getHistoricalPrices": {
      "currency": Currencies,
      "date": ["abc123"],
      "value": [987.65]
    }
  }
}

knownAddresses

This query returns the list of known addresses from Lisk Observer.

Example

Query
query knownAddresses {
  knownAddresses {
    address
    identifier
    isExchange
    isLiskHq
    isScam
    tag
    balance
  }
}
Response
{
  "data": {
    "knownAddresses": [
      {
        "address": "xyz789",
        "identifier": "xyz789",
        "isExchange": false,
        "isLiskHq": false,
        "isScam": true,
        "tag": "abc123",
        "balance": "abc123"
      }
    ]
  }
}

lastBlock

This query returns the last block available in the chain.
Returns a Block

Example

Query
query lastBlock {
  lastBlock {
    id
    height
    timestamp
    generatorPublicKey
    reward
    isFinal
    username
    address
    finalized
  }
}
Response
{
  "data": {
    "lastBlock": {
      "id": "xyz789",
      "height": "xyz789",
      "timestamp": "abc123",
      "generatorPublicKey": "abc123",
      "reward": "abc123",
      "isFinal": true,
      "username": "xyz789",
      "address": "abc123",
      "finalized": "abc123"
    }
  }
}

lastBlocks

This query returns the last 10 blocks, in a paginated form. It supports blocks up to the genesis of 3.0.
Returns a PaginatedBlock

Name Description
page - Int

Example

Query
query lastBlocks($page: Int) {
  lastBlocks(page: $page) {
    data {
      ...BlockFragment
    }
    pagination {
      ...PaginationFragment
    }
  }
}
Variables
{"page": 987}
Response
{
  "data": {
    "lastBlocks": {
      "data": [Block],
      "pagination": Pagination
    }
  }
}

lastTicks

This query returns the last price of LSK token for the selected currency
Returns a LastTicks

Example

Query
query lastTicks {
  lastTicks {
    LSKUSD
    LSKBTC
    LSKEUR
    LSKKRW
    LSKPLN
    LSKJPY
    LSKCNY
    LSKAED
  }
}
Response
{
  "data": {
    "lastTicks": {
      "LSKUSD": 987.65,
      "LSKBTC": 123.45,
      "LSKEUR": 123.45,
      "LSKKRW": 123.45,
      "LSKPLN": 987.65,
      "LSKJPY": 123.45,
      "LSKCNY": 987.65,
      "LSKAED": 987.65
    }
  }
}

networkInfo

This query returns the network info available on Lisk Observer
Returns a NetworkInfo

Example

Query
query networkInfo {
  networkInfo {
    stats {
      ...NetworkPeersStatFragment
    }
    peers {
      ...PeersFragment
    }
    countries {
      ...CountriesFragment
    }
  }
}
Response
{
  "data": {
    "networkInfo": {
      "stats": NetworkPeersStat,
      "peers": [Peers],
      "countries": [Countries]
    }
  }
}

nodeInfo

This query returns the info from the Lisk Observer node.
Returns a NodeInfo

Example

Query
query nodeInfo {
  nodeInfo {
    name
  }
}
Response
{"data": {"nodeInfo": {"name": "xyz789"}}}

richList

This query returns a list of Lisk accounts
Returns a RichList

Name Description
page - Int

Example

Query
query richList($page: Int) {
  richList(page: $page) {
    accounts {
      ...PaginatedRichListAccountFragment
    }
    supply
  }
}
Variables
{"page": 987}
Response
{
  "data": {
    "richList": {
      "accounts": PaginatedRichListAccount,
      "supply": 123
    }
  }
}

search

This query searches through Accounts, Blocks and Transactions given a term. The search works for the legacy and > 3.0 chain.
Returns a Search

Name Description
term - String!

Example

Query
query search($term: String!) {
  search(term: $term) {
    accounts {
      ...AccountSearchFragment
    }
    transactions {
      ...TransactionSearchFragment
    }
    blocks {
      ...BlockSearchFragment
    }
  }
}
Variables
{"term": "xyz789"}
Response
{
  "data": {
    "search": {
      "accounts": [AccountSearch],
      "transactions": [TransactionSearch],
      "blocks": [BlockSearch]
    }
  }
}

stats

Stats about the Lisk blockchain
Returns a Stats

Example

Query
query stats {
  stats {
    last24TXs
    blocks
    staked
    supply
    totalTransactions
    totalTransactions30
    lastDay {
      ...StatKindFragment
    }
    lastMonth {
      ...StatKindFragment
    }
    lastYear {
      ...StatKindFragment
    }
  }
}
Response
{
  "data": {
    "stats": {
      "last24TXs": 987,
      "blocks": 123,
      "staked": "abc123",
      "supply": 123,
      "totalTransactions": "abc123",
      "totalTransactions30": "abc123",
      "lastDay": StatKind,
      "lastMonth": StatKind,
      "lastYear": StatKind
    }
  }
}

transactions

This query returns the last 25 transactions in a paginated form. Works only with >3.0 chain transactions
Returns a PaginatedTransaction

Name Description
page - Int
TXType - String

Example

Query
query transactions($page: Int, $TXType: String) {
  transactions(page: $page, TXType: $TXType) {
    data {
      ...TransactionFragment
    }
    pagination {
      ...PaginationFragment
    }
  }
}
Variables
{"page": 987, "TXType": "abc123"}
Response
{
  "data": {
    "transactions": {
      "data": [Transaction],
      "pagination": Pagination
    }
  }
}

txStats

This query returns the stats about the transactions. Works only with >3.0 chain transactions.
Returns an TXStats

Example

Query
query txStats {
  txStats {
    lastDay
  }
}
Response
{"data": {"txStats": {"lastDay": 987}}}

votes

This query returns the vote transactions sorted by creation time desc, in a paginated form. Works only with >3.0 chain transactions.
Returns a PaginatedVotes

Name Description
page - Int!

Example

Query
query votes($page: Int!) {
  votes(page: $page) {
    data {
      ...VoteFragment
    }
    pagination {
      ...PaginationFragment
    }
  }
}
Variables
{"page": 987}
Response
{
  "data": {
    "votes": {
      "data": [Vote],
      "pagination": Pagination
    }
  }
}

whaleTransactions

This query returns the "big" transactions sorted by desc in a paginated form. Works only with >3.0 chain transactions.
Returns a PaginatedTransaction

Name Description
page - Int!

Example

Query
query whaleTransactions($page: Int!) {
  whaleTransactions(page: $page) {
    data {
      ...TransactionFragment
    }
    pagination {
      ...PaginationFragment
    }
  }
}
Variables
{"page": 123}
Response
{
  "data": {
    "whaleTransactions": {
      "data": [Transaction],
      "pagination": Pagination
    }
  }
}

Types

Account

Field Name Description
username - String
address - String
isDelegate - Boolean
token - Token
sequence - Sequence
keys - Keys
dpos - Dpos
hexAddress - String
publicKey - String
Example
{
  "username": "abc123",
  "address": "abc123",
  "isDelegate": true,
  "token": Token,
  "sequence": Sequence,
  "keys": Keys,
  "dpos": Dpos,
  "hexAddress": "abc123",
  "publicKey": "abc123"
}

AccountDelegate

Field Name Description
address - String
username - String
dpos - Dpos
Example
{"address": "xyz789", "username": "abc123", "dpos": Dpos}

AccountSearch

Field Name Description
username - String
address - String
Example
{"username": "abc123", "address": "abc123"}

Block

Field Name Description
id - String!
height - String!
timestamp - String!
generatorPublicKey - String
reward - String
isFinal - Boolean
username - String
address - String
finalized - String
Example
{
  "id": "abc123",
  "height": "xyz789",
  "timestamp": "xyz789",
  "generatorPublicKey": "abc123",
  "reward": "abc123",
  "isFinal": true,
  "username": "abc123",
  "address": "xyz789",
  "finalized": "xyz789"
}

BlockLegacy

Field Name Description
isLegacy - Boolean
height - Int
id - String
timestamp - String
numberOfTransactions - Int
totalAmount - String
totalFee - String
reward - String
generatorPublicKey - String
username - String
address - String
Example
{
  "isLegacy": true,
  "height": 123,
  "id": "abc123",
  "timestamp": "xyz789",
  "numberOfTransactions": 123,
  "totalAmount": "xyz789",
  "totalFee": "abc123",
  "reward": "abc123",
  "generatorPublicKey": "abc123",
  "username": "xyz789",
  "address": "abc123"
}

BlockLegacyForTransactions

Field Name Description
isLegacy - Boolean
height - Int
id - String
timestamp - String
numberOfTransactions - Int
totalAmount - String
totalFee - String
reward - String
username - String
address - String
generatorPublicKey - String
Example
{
  "isLegacy": true,
  "height": 123,
  "id": "abc123",
  "timestamp": "abc123",
  "numberOfTransactions": 123,
  "totalAmount": "xyz789",
  "totalFee": "xyz789",
  "reward": "abc123",
  "username": "abc123",
  "address": "xyz789",
  "generatorPublicKey": "xyz789"
}

BlockSearch

Field Name Description
id - String
height - String
Example
{"id": "xyz789", "height": "abc123"}

BlockTransactionsOrLegacy

BlockWithTransactions

Field Name Description
block - Block
transactions - [Transaction]
Example
{
  "block": Block,
  "transactions": [Transaction]
}

Boolean

The Boolean scalar type represents true or false.

Example
true

Countries

Field Name Description
country - String
count - Int
Example
{"country": "abc123", "count": 123}

Currencies

Enum Value Description

LSKUSD

LSKBTC

LSKEUR

LSKKRW

LSKPLN

LSKJPY

LSKCNY

LSKAED

CurrencyData

Field Name Description
currency - Currencies
date - [String]
value - [Float]
Example
{
  "currency": Currencies,
  "date": ["xyz789"],
  "value": [123.45]
}

Delegate

Field Name Description
username - String
pomHeights - [Int]
consecutiveMissedBlocks - Int
lastForgedHeight - Int
isBanned - Boolean
totalVotesReceived - String
selfVotesAmount - Float
rankAdjusted - Int
isConsensusParticipant - Boolean
minActiveHeight - Int
nextForgingTime - Int
producedBlocks - Int
rank - Int
consensusWeight - String
Example
{
  "username": "abc123",
  "pomHeights": [123],
  "consecutiveMissedBlocks": 987,
  "lastForgedHeight": 123,
  "isBanned": false,
  "totalVotesReceived": "abc123",
  "selfVotesAmount": 987.65,
  "rankAdjusted": 123,
  "isConsensusParticipant": false,
  "minActiveHeight": 123,
  "nextForgingTime": 987,
  "producedBlocks": 123,
  "rank": 987,
  "consensusWeight": "abc123"
}

DelegatesList

Field Name Description
delegates - [AccountDelegate]
total - Int
Example
{"delegates": [AccountDelegate], "total": 987}

DelegatesWithStats

Field Name Description
locked - String
supply - String
delegates - DelegatesList
promises - [Promises]
Example
{
  "locked": "xyz789",
  "supply": "xyz789",
  "delegates": DelegatesList,
  "promises": [Promises]
}

Dpos

Field Name Description
delegate - Delegate
sentVotes - [SentVotes]
receivedVotes - [ReceivedVotes]
unlocking - [Unlocking]
Example
{
  "delegate": Delegate,
  "sentVotes": [SentVotes],
  "receivedVotes": [ReceivedVotes],
  "unlocking": [Unlocking]
}

EthernityWallMessage

Field Name Description
id - String!
moduleAssetId - String!
timestamp - String!
senderId - String
amount - String
data - String
senderUsername - String
Example
{
  "id": "abc123",
  "moduleAssetId": "abc123",
  "timestamp": "xyz789",
  "senderId": "xyz789",
  "amount": "xyz789",
  "data": "xyz789",
  "senderUsername": "abc123"
}

Float

The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.

Example
987.65

Int

The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.

Example
987

Keys

Field Name Description
numberOfSignatures - String
mandatoryKeys - [String]
optionalKeys - [String]
Example
{
  "numberOfSignatures": "xyz789",
  "mandatoryKeys": ["abc123"],
  "optionalKeys": ["xyz789"]
}

KnownAddresses

Field Name Description
address - String
identifier - String
isExchange - Boolean
isLiskHq - Boolean
isScam - Boolean
tag - String
balance - String
Example
{
  "address": "xyz789",
  "identifier": "xyz789",
  "isExchange": true,
  "isLiskHq": true,
  "isScam": true,
  "tag": "xyz789",
  "balance": "xyz789"
}

LastTicks

Field Name Description
LSKUSD - Float
LSKBTC - Float
LSKEUR - Float
LSKKRW - Float
LSKPLN - Float
LSKJPY - Float
LSKCNY - Float
LSKAED - Float
Example
{
  "LSKUSD": 987.65,
  "LSKBTC": 123.45,
  "LSKEUR": 987.65,
  "LSKKRW": 987.65,
  "LSKPLN": 123.45,
  "LSKJPY": 987.65,
  "LSKCNY": 987.65,
  "LSKAED": 987.65
}

LegacyAccount

Field Name Description
username - String
address - String
balance - String
publicKey - String
Example
{
  "username": "xyz789",
  "address": "xyz789",
  "balance": "xyz789",
  "publicKey": "xyz789"
}

MultisigRegistration

Field Name Description
numberOfSignatures - Int
mandatoryKeys - [String]
optionalKeys - [String]
Example
{
  "numberOfSignatures": 123,
  "mandatoryKeys": ["abc123"],
  "optionalKeys": ["xyz789"]
}

NetworkInfo

Field Name Description
stats - NetworkPeersStat
peers - [Peers]
countries - [Countries]
Example
{
  "stats": NetworkPeersStat,
  "peers": [Peers],
  "countries": [Countries]
}

NetworkPeersStat

Field Name Description
totalPeers - Int
connectedPeers - Int
disconnectedPeers - Int
networkVersionDominant - String
networkVersion - [NetworkVersion]
Example
{
  "totalPeers": 123,
  "connectedPeers": 123,
  "disconnectedPeers": 987,
  "networkVersionDominant": "xyz789",
  "networkVersion": [NetworkVersion]
}

NetworkVersion

Field Name Description
version - String
peers - Int
Example
{"version": "xyz789", "peers": 987}

NodeInfo

Field Name Description
name - String
Example
{"name": "abc123"}

PaginatedBlock

Field Name Description
data - [Block]
pagination - Pagination
Example
{
  "data": [Block],
  "pagination": Pagination
}

PaginatedEthernityWallMessage

Field Name Description
data - [EthernityWallMessage]
pagination - Pagination
Example
{
  "data": [EthernityWallMessage],
  "pagination": Pagination
}

PaginatedRichListAccount

Field Name Description
data - [RichListAccount]
pagination - Pagination
Example
{
  "data": [RichListAccount],
  "pagination": Pagination
}

PaginatedTransaction

Field Name Description
data - [Transaction]
pagination - Pagination
Example
{
  "data": [Transaction],
  "pagination": Pagination
}

PaginatedTransactionLegacy

Field Name Description
data - [TransactionLegacy]
pagination - Pagination
Example
{
  "data": [TransactionLegacy],
  "pagination": Pagination
}

PaginatedTransactionOrLegacy

PaginatedVotes

Field Name Description
data - [Vote]
pagination - Pagination
Example
{
  "data": [Vote],
  "pagination": Pagination
}

Pagination

Field Name Description
total - Int
lastPage - Int
currentPage - Int
perPage - Int
from - Int
to - Int
Example
{
  "total": 123,
  "lastPage": 123,
  "currentPage": 123,
  "perPage": 123,
  "from": 987,
  "to": 987
}

Peers

Field Name Description
connected - Boolean
ipAddress - String
peerId - String
networkVersion - String
height - String
country - String
Example
{
  "connected": true,
  "ipAddress": "abc123",
  "peerId": "abc123",
  "networkVersion": "abc123",
  "height": "abc123",
  "country": "abc123"
}

PomData

Field Name Description
address - String
username - String
Example
{"address": "abc123", "username": "xyz789"}

Promises

Field Name Description
username - String
averageShared - Float
address - String
promisedShare - Float
Example
{
  "username": "abc123",
  "averageShared": 123.45,
  "address": "xyz789",
  "promisedShare": 987.65
}

ReceivedVotes

Field Name Description
sender - String
senderUsername - String
amount - String
Example
{"sender": "abc123", "senderUsername": "xyz789", "amount": "abc123"}

RichList

Field Name Description
accounts - PaginatedRichListAccount
supply - Int
Example
{"accounts": PaginatedRichListAccount, "supply": 123}

RichListAccount

Field Name Description
address - String
balance - String
username - String
unlocked - String
Example
{
  "address": "abc123",
  "balance": "xyz789",
  "username": "abc123",
  "unlocked": "abc123"
}

SentVotes

Field Name Description
delegateAddress - String
delegateUsername - String
amount - String
Example
{"delegateAddress": "abc123", "delegateUsername": "xyz789", "amount": "xyz789"}

Sequence

Field Name Description
nonce - String
Example
{"nonce": "xyz789"}

StatElement

Field Name Description
date - String
count - Int
volume - Float
Example
{"date": "xyz789", "count": 987, "volume": 987.65}

StatKind

Field Name Description
historicalTXs - [StatElement]
totalCount - Int
totalVolume - Float
txKinds - TxKinds
Example
{
  "historicalTXs": [StatElement],
  "totalCount": 123,
  "totalVolume": 123.45,
  "txKinds": TxKinds
}

Stats

Field Name Description
last24TXs - Int
blocks - Int
staked - String
supply - Int
totalTransactions - String
totalTransactions30 - String
lastDay - StatKind
lastMonth - StatKind
lastYear - StatKind
Example
{
  "last24TXs": 987,
  "blocks": 123,
  "staked": "abc123",
  "supply": 987,
  "totalTransactions": "abc123",
  "totalTransactions30": "xyz789",
  "lastDay": StatKind,
  "lastMonth": StatKind,
  "lastYear": StatKind
}

String

The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.

TXStats

Field Name Description
lastDay - Int
Example
{"lastDay": 987}

Token

Field Name Description
balance - String
locked - String
Example
{"balance": "abc123", "locked": "xyz789"}

TokenUnlock

Field Name Description
delegateAddress - String
amount - String
unvoteHeight - String
username - String
Example
{
  "delegateAddress": "abc123",
  "amount": "abc123",
  "unvoteHeight": "abc123",
  "username": "xyz789"
}

Transaction

Field Name Description
id - String!
height - String!
moduleAssetId - String!
nonce - String!
blockId - String!
timestamp - String!
senderPublicKey - String
senderId - String
recipientId - String
amount - String
data - String
size - String
fee - String
minFee - String
senderUsername - String
recipientUsername - String
votes - [Vote]
voteAmount - String
isFinalized - Boolean
Example
{
  "id": "xyz789",
  "height": "abc123",
  "moduleAssetId": "abc123",
  "nonce": "abc123",
  "blockId": "abc123",
  "timestamp": "xyz789",
  "senderPublicKey": "xyz789",
  "senderId": "abc123",
  "recipientId": "xyz789",
  "amount": "xyz789",
  "data": "abc123",
  "size": "xyz789",
  "fee": "abc123",
  "minFee": "abc123",
  "senderUsername": "xyz789",
  "recipientUsername": "xyz789",
  "votes": [Vote],
  "voteAmount": "abc123",
  "isFinalized": true
}

TransactionLegacy

Field Name Description
isLegacy - Boolean
id - String!
blockId - String
type - Int
timestamp - Int
senderPublicKey - String
senderId - String
recipientId - String
amount - String
fee - String
signatures - String
data - String
asset - String
senderUsername - String
recipientUsername - String
Example
{
  "isLegacy": false,
  "id": "abc123",
  "blockId": "xyz789",
  "type": 123,
  "timestamp": 123,
  "senderPublicKey": "abc123",
  "senderId": "xyz789",
  "recipientId": "abc123",
  "amount": "abc123",
  "fee": "xyz789",
  "signatures": "abc123",
  "data": "xyz789",
  "asset": "abc123",
  "senderUsername": "xyz789",
  "recipientUsername": "abc123"
}

TransactionSearch

Field Name Description
id - String
Example
{"id": "xyz789"}

TransactionWithBlock

Field Name Description
id - String!
height - String!
moduleAssetId - String!
nonce - String!
blockId - String!
timestamp - String!
senderPublicKey - String
senderId - String
recipientId - String
amount - String
data - String
size - String
fee - String
isFinalized - Boolean
senderUsername - String
recipientUsername - String
blockHeight - String
blockTimestamp - String!
blockGeneratorPublicKey - String!
blockIsFinal - String!
blockUsername - String!
blockAddress - String
votes - [Vote]
multisigRegistration - MultisigRegistration
tokenUnlock - [TokenUnlock]
pomData - PomData
Example
{
  "id": "abc123",
  "height": "abc123",
  "moduleAssetId": "abc123",
  "nonce": "xyz789",
  "blockId": "xyz789",
  "timestamp": "abc123",
  "senderPublicKey": "abc123",
  "senderId": "xyz789",
  "recipientId": "abc123",
  "amount": "xyz789",
  "data": "xyz789",
  "size": "abc123",
  "fee": "abc123",
  "isFinalized": true,
  "senderUsername": "abc123",
  "recipientUsername": "xyz789",
  "blockHeight": "xyz789",
  "blockTimestamp": "abc123",
  "blockGeneratorPublicKey": "abc123",
  "blockIsFinal": "abc123",
  "blockUsername": "xyz789",
  "blockAddress": "xyz789",
  "votes": [Vote],
  "multisigRegistration": MultisigRegistration,
  "tokenUnlock": [TokenUnlock],
  "pomData": PomData
}

TransactionWithBlockLegacy

Field Name Description
transaction - TransactionLegacy
block - BlockLegacyForTransactions
Example
{
  "transaction": TransactionLegacy,
  "block": BlockLegacyForTransactions
}

TransactionWithBlockOrLegacy

TxKinds

Field Name Description
transfers - Int
votes - Int
poms - Int
registerDelegate - Int
unlockToken - Int
Example
{
  "transfers": 123,
  "votes": 987,
  "poms": 987,
  "registerDelegate": 123,
  "unlockToken": 123
}

Unlocking

Field Name Description
delegateAddress - String
amount - String
unvoteHeight - String
delegateUsername - String
Example
{
  "delegateAddress": "xyz789",
  "amount": "xyz789",
  "unvoteHeight": "abc123",
  "delegateUsername": "xyz789"
}

Vote

Field Name Description
delegateAddress - String
delegateUsername - String
amount - String!
id - String!
sentAddress - String!
receivedAddress - String!
timestamp - String!
senderUsername - String
recipientUsername - String
Example
{
  "delegateAddress": "abc123",
  "delegateUsername": "abc123",
  "amount": "abc123",
  "id": "xyz789",
  "sentAddress": "xyz789",
  "receivedAddress": "xyz789",
  "timestamp": "xyz789",
  "senderUsername": "abc123",
  "recipientUsername": "xyz789"
}