diff --git a/graphql/index.html b/graphql/index.html index 78becda14..52de40db7 100644 --- a/graphql/index.html +++ b/graphql/index.html @@ -101,6 +101,7 @@
{"invitationCode": "xyz789"}
+ {"invitationCode": "abc123"}
@@ -659,7 +658,7 @@ Variables
Response
- {"data": {"activated": true}}
+ {"data": {"activated": false}}
@@ -735,7 +734,7 @@ Variables
Response
- {"data": {"activationKeyNonce": "xyz789"}}
+ {"data": {"activationKeyNonce": "abc123"}}
@@ -793,7 +792,7 @@ Query
Response
- {"data": {"activationStatus": {"activated": false, "addressActivated": false}}}
+ {"data": {"activationStatus": {"activated": true, "addressActivated": true}}}
@@ -851,12 +850,12 @@ Response
{
"data": {
"addressQuery": {
- "currencyMintersAddress": [address],
- "pledgeAddress": address,
- "raiderAddress": address,
- "raiderListAddress": address,
- "worldBossAddress": address,
- "worldBossKillRewardRecordAddress": address
+ "currencyMintersAddress": [Address],
+ "pledgeAddress": Address,
+ "raiderAddress": Address,
+ "raiderListAddress": Address,
+ "worldBossAddress": Address,
+ "worldBossKillRewardRecordAddress": Address
}
}
}
@@ -907,7 +906,7 @@ Query
}
helperQuery {
bencodexValue {
- ...BencodexValueFragment
+ ...IValueFragment
}
currencyHash
}
@@ -948,7 +947,7 @@ Query
...TransactionFragment
}
transactionResult {
- ...TxResultTypeFragment
+ ...TxResultFragment
}
transactions {
...TransactionFragment
@@ -1076,9 +1075,9 @@ Response
"publicKey": PublicKeyType,
"serializedPayload": "xyz789",
"signature": ByteString,
- "signer": address,
- "timestamp": "xyz789",
- "updatedAddresses": [address]
+ "signer": Address,
+ "timestamp": "abc123",
+ "updatedAddresses": [Address]
}
}
}
@@ -1115,7 +1114,7 @@ Arguments
- address
- address!
+ address
- Address!
Target address to query
@@ -1136,7 +1135,7 @@ Query
query GoldBalance(
- $address: address!,
+ $address: Address!,
$hash: ByteString
) {
goldBalance(
@@ -1153,7 +1152,7 @@ Variables
{
- "address": address,
+ "address": Address,
"hash": ByteString
}
@@ -1164,7 +1163,7 @@ Variables
Response
- {"data": {"goldBalance": "abc123"}}
+ {"data": {"goldBalance": "xyz789"}}
@@ -1258,7 +1257,7 @@ Description
@@ -1279,7 +1278,7 @@ Query
Response
- {"data": {"minerAddress": address}}
+ {"data": {"minerAddress": Address}}
@@ -1321,7 +1320,7 @@ Arguments
- address
- address
+ address
- Address
agent address.
@@ -1335,8 +1334,8 @@ Example
Query
- query MonsterCollectionStatus($address: address) {
- monsterCollectionStatus(address: $address) {
+ query MonsterCollectionStatus($address: Address) {
+ monsterCollectionStatus(address: $address) {
fungibleAssetValue {
currency
quantity
@@ -1348,7 +1347,7 @@ Query
}
tipIndex
}
-}
+}
@@ -1357,7 +1356,7 @@ Query
Variables
- {"address": address}
+ {"address": Address}
@@ -1416,7 +1415,7 @@ Arguments
- address
- address!
+ address
- Address!
Target address to query
@@ -1430,7 +1429,7 @@ Example
Query
- query NextTxNonce($address: address!) {
+ query NextTxNonce($address: Address!) {
nextTxNonce(address: $address)
}
@@ -1441,7 +1440,7 @@ Query
Variables
- {"address": address}
+ {"address": Address}
@@ -1528,15 +1527,15 @@ Response
"data": {
"nodeStatus": {
"appProtocolVersion": AppProtocolVersionType,
- "bootstrapEnded": false,
+ "bootstrapEnded": true,
"genesis": BlockHeader,
"informationalVersion": "abc123",
"isMining": true,
"preloadEnded": false,
"productVersion": "xyz789",
"stagedTxIds": [TxId],
- "stagedTxIdsCount": 123,
- "subscriberAddresses": [address],
+ "stagedTxIdsCount": 987,
+ "subscriberAddresses": [Address],
"subscriberAddressesCount": 987,
"tip": BlockHeader,
"topmostBlocks": [BlockHeader]
@@ -1660,12 +1659,12 @@ Response
{
"data": {
"rpcInformation": {
- "clients": [address],
- "clientsByDevice": [address],
+ "clients": [Address],
+ "clientsByDevice": [Address],
"clientsByIps": [MultiAccountInfo],
- "clientsCountByIps": 123,
- "totalCount": 123,
- "totalCountByDevice": 123
+ "clientsCountByIps": 987,
+ "totalCount": 987,
+ "totalCountByDevice": 987
}
}
}
@@ -1702,7 +1701,7 @@ Arguments
- address
- address!
+ address
- Address!
The address of state to fetch from the chain.
@@ -1723,7 +1722,7 @@ Query
query State(
- $address: address!,
+ $address: Address!,
$hash: ByteString
) {
state(
@@ -1740,7 +1739,7 @@ Variables
{
- "address": address,
+ "address": Address,
"hash": ByteString
}
@@ -2113,8 +2112,8 @@ Response
"monsterCollectionState": MonsterCollectionStateType,
"orderDigestList": OrderDigestListStateType,
"pledge": MeadPledgeType,
- "raidId": 987,
- "raiderList": [address],
+ "raidId": 123,
+ "raiderList": [Address],
"raiderState": RaiderStateType,
"rankingMap": RankingMapStateType,
"shardedShop": ShardedShopStateV2Type,
@@ -2233,13 +2232,13 @@ Response
"data": {
"transaction": {
"attachSignature": "xyz789",
- "createUnsignedTx": "xyz789",
+ "createUnsignedTx": "abc123",
"getTx": TransactionType,
"ncTransactions": [TransactionType],
"nextTxNonce": {},
"signTransaction": ByteString,
- "transactionResult": TxResultType,
- "transactionResults": [TxResultType],
+ "transactionResult": TxResult,
+ "transactionResults": [TxResult],
"unsignedTransaction": ByteString
}
}
@@ -2284,7 +2283,7 @@ Arguments
- recipient
- address
+ recipient
- Address
@@ -2301,8 +2300,8 @@ Query
query TransferNCGHistories(
$blockHash: ByteString!,
- $recipient: address
-) {
+ $recipient: Address
+) {
transferNCGHistories(
blockHash: $blockHash,
recipient: $recipient
@@ -2325,7 +2324,7 @@ Variables
{
"blockHash": ByteString,
- "recipient": address
+ "recipient": Address
}
@@ -2341,9 +2340,9 @@ Response
{
"amount": "xyz789",
"blockHash": ByteString,
- "memo": "abc123",
- "recipient": address,
- "sender": address,
+ "memo": "xyz789",
+ "recipient": Address,
+ "sender": Address,
"txId": ByteString
}
]
@@ -2647,7 +2646,7 @@ Query
Variables
- {"payload": "abc123"}
+ {"payload": "xyz789"}
@@ -2867,7 +2866,7 @@ Arguments
- recipient
- address!
+ recipient
- Address!
A hex-encoded value for address of recipient.
@@ -2891,7 +2890,7 @@ Query
$amount: String!,
$currencyAddress: String!,
$memo: String,
- $recipient: address!,
+ $recipient: Address!,
$txNonce: Long!
) {
transfer(
@@ -2914,7 +2913,7 @@ Variables
"amount": "abc123",
"currencyAddress": "000000000000000000000000000000000000000A",
"memo": "xyz789",
- "recipient": address,
+ "recipient": Address,
"txNonce": {}
}
@@ -2973,7 +2972,7 @@ Arguments
- recipient
- address!
+ recipient
- Address!
@@ -2990,7 +2989,7 @@ Query
mutation TransferGold(
$amount: String!,
- $recipient: address!
+ $recipient: Address!
) {
transferGold(
amount: $amount,
@@ -3007,7 +3006,7 @@ Variables
{
"amount": "xyz789",
- "recipient": address
+ "recipient": Address
}
@@ -3049,7 +3048,7 @@ Arguments
- address
- address!
+ address
- Address!
A hex-encoded address of agent.
@@ -3063,7 +3062,7 @@ Example
Query
- subscription BalanceByAgent($address: address!) {
+ subscription BalanceByAgent($address: Address!) {
balanceByAgent(address: $address)
}
@@ -3074,7 +3073,7 @@ Query
Variables
- {"address": address}
+ {"address": Address}
@@ -3083,7 +3082,7 @@ Variables
Response
- {"data": {"balanceByAgent": "abc123"}}
+ {"data": {"balanceByAgent": "xyz789"}}
@@ -3191,7 +3190,7 @@ Response
{
"data": {
"nodeException": {
- "code": 123,
+ "code": 987,
"message": "xyz789"
}
}
@@ -3275,14 +3274,14 @@ Response
"appProtocolVersion": AppProtocolVersionType,
"bootstrapEnded": true,
"genesis": BlockHeader,
- "informationalVersion": "abc123",
- "isMining": false,
+ "informationalVersion": "xyz789",
+ "isMining": true,
"preloadEnded": false,
"productVersion": "xyz789",
"stagedTxIds": [TxId],
- "stagedTxIdsCount": 123,
- "subscriberAddresses": [address],
- "subscriberAddressesCount": 987,
+ "stagedTxIdsCount": 987,
+ "subscriberAddresses": [Address],
+ "subscriberAddressesCount": 123,
"tip": BlockHeader,
"topmostBlocks": [BlockHeader]
}
@@ -3333,7 +3332,7 @@ Response
{
"data": {
"notification": {
- "message": "abc123",
+ "message": "xyz789",
"type": "BUYER"
}
}
@@ -3523,7 +3522,7 @@ Query
Variables
- {"actionType": "abc123"}
+ {"actionType": "xyz789"}
@@ -3536,7 +3535,7 @@ Response
"data": {
"tx": {
"transaction": TransactionType,
- "txResult": TxResultType
+ "txResult": TxResult
}
}
}
@@ -3567,7 +3566,7 @@ Fields
- balance
- BencodexValue
+ balance
- IValue
Balance at given address and currency hash pair.
@@ -3577,7 +3576,7 @@ Fields
Arguments
@@ -3591,7 +3590,7 @@ currencyHash
- balances
- [BencodexValue]!
+ balances
- [IValue]!
Balances at given addresses and currency hash pair.
@@ -3601,7 +3600,7 @@ currencyHash
Arguments
- addresses
- [address!]!
+ addresses
- [Address!]!
The list of addresses to look up.
@@ -3615,7 +3614,7 @@ currencyHash
- state
- BencodexValue
+ state
- IValue
The state at given address.
@@ -3625,7 +3624,7 @@ currencyHash
Arguments
@@ -3639,7 +3638,7 @@ address
The state root hash associated with this account state.
- states
- [BencodexValue]!
+ states
- [IValue]!
The states at given addresses.
@@ -3649,7 +3648,7 @@ address
Arguments
- addresses
- [address!]!
+ addresses
- [Address!]!
The list of addresses to look up.
@@ -3658,7 +3657,7 @@ addresses
- totalSupply
- BencodexValue
+ totalSupply
- IValue
Total supply in circulation, if recorded, for given currency hash.
@@ -3677,7 +3676,7 @@ currencyHash
- validatorSet
- BencodexValue
+ validatorSet
- IValue
The validator set.
@@ -3691,13 +3690,13 @@ Example
{
- "balance": BencodexValue,
- "balances": [BencodexValue],
- "state": BencodexValue,
+ "balance": IValue,
+ "balances": [IValue],
+ "state": IValue,
"stateRootHash": HashDigestSHA256,
- "states": [BencodexValue],
- "totalSupply": BencodexValue,
- "validatorSet": BencodexValue
+ "states": [IValue],
+ "totalSupply": IValue,
+ "validatorSet": IValue
}
@@ -3763,7 +3762,7 @@ Example
{
"inspection": "xyz789",
"json": "xyz789",
- "raw": "xyz789"
+ "raw": "abc123"
}
@@ -3800,7 +3799,7 @@ Fields
Arguments
@@ -3819,7 +3818,7 @@ avatarAddress<
Arguments
@@ -3838,7 +3837,7 @@ avatarAddress<
Arguments
@@ -3867,7 +3866,7 @@ slotIndex Arguments
@@ -3945,7 +3944,7 @@ tailIndex Arguments
@@ -3964,7 +3963,7 @@ avatarAddress<
Arguments
@@ -4013,7 +4012,7 @@ worldId
Arguments
@@ -4132,7 +4131,7 @@ activationCode
Arguments
@@ -4151,7 +4150,7 @@ patronAddress<
Arguments
@@ -4206,7 +4205,7 @@ memo
Arguments
@@ -4226,7 +4225,7 @@ avatarAddress<
Arguments
@@ -4246,7 +4245,7 @@ avatarAddress<
Arguments
@@ -4266,7 +4265,7 @@ avatarAddress<
Arguments
@@ -4296,7 +4295,7 @@ slotIndex Arguments
@@ -4391,7 +4390,7 @@ tail
Arguments
- agentAddresses
- [address!]!
+ agentAddresses
- [Address!]!
@@ -4399,7 +4398,7 @@ mead
@@ -4418,7 +4417,7 @@ patronAddress<
Arguments
@@ -4453,7 +4452,7 @@ memo
Memo
@@ -4473,7 +4472,7 @@ recipientAgent
Arguments
@@ -4492,7 +4491,7 @@ agentAddress
Arguments
@@ -4522,7 +4521,7 @@ equipmentIds
Arguments
@@ -4587,7 +4586,7 @@ apStoneCount
AP stone usage to sweep
@@ -4632,7 +4631,7 @@ worldId
Arguments
@@ -4677,7 +4676,7 @@ fungibleIdAndC
Array of fungible ID and count
@@ -4702,7 +4701,7 @@ memo
Arguments
- avatarAddress
- address
+ avatarAddress
- Address
The avatar address to receive monster collection rewards.
@@ -4752,7 +4751,7 @@ assets
<
list of FungibleAssetValue for charge reward.
- rewardPoolAddress
- address!
+ rewardPoolAddress
- Address!
address of reward pool for charge reward.
@@ -4772,7 +4771,7 @@ rewardPoolAddr
Arguments
@@ -4817,7 +4816,7 @@ runeSlotInfos<
Arguments
@@ -4842,7 +4841,7 @@ slotIndex Arguments
@@ -4865,7 +4864,7 @@ mead
Arguments
@@ -4895,7 +4894,7 @@ tryCount
Arguments
@@ -4965,12 +4964,12 @@ rawCurrencyA currency to be transferred.
@@ -5000,7 +4999,7 @@ recipientsList of tuples that recipients' address and asset amount to be sent
@@ -5035,7 +5034,7 @@ memo
Memo
@@ -5055,7 +5054,7 @@ recipientAvata
Arguments
@@ -5080,7 +5079,7 @@ recipeIds Arguments
@@ -5195,7 +5194,7 @@ activationCode
Arguments
@@ -5214,7 +5213,7 @@ patronAddress<
Arguments
@@ -5269,7 +5268,7 @@ memo
Arguments
@@ -5289,7 +5288,7 @@ avatarAddress<
Arguments
@@ -5309,7 +5308,7 @@ avatarAddress<
Arguments
@@ -5329,7 +5328,7 @@ avatarAddress<
Arguments
@@ -5359,7 +5358,7 @@ slotIndex Arguments
@@ -5454,7 +5453,7 @@ tail
Arguments
- agentAddresses
- [address!]!
+ agentAddresses
- [Address!]!
@@ -5462,7 +5461,7 @@ mead
@@ -5481,7 +5480,7 @@ patronAddress<
Arguments
@@ -5516,7 +5515,7 @@ memo
Memo
@@ -5536,7 +5535,7 @@ recipientAgent
Arguments
@@ -5555,7 +5554,7 @@ agentAddress
Arguments
@@ -5585,7 +5584,7 @@ equipmentIds
Arguments
@@ -5650,7 +5649,7 @@ apStoneCount
AP stone usage to sweep
@@ -5695,7 +5694,7 @@ worldId
Arguments
@@ -5740,7 +5739,7 @@ fungibleIdAndC
Array of fungible ID and count
@@ -5765,7 +5764,7 @@ memo
Arguments
- avatarAddress
- address
+ avatarAddress
- Address
The avatar address to receive monster collection rewards.
@@ -5815,7 +5814,7 @@ assets
<
list of FungibleAssetValue for charge reward.
- rewardPoolAddress
- address!
+ rewardPoolAddress
- Address!
address of reward pool for charge reward.
@@ -5835,7 +5834,7 @@ rewardPoolAddr
Arguments
@@ -5880,7 +5879,7 @@ runeSlotInfos<
Arguments
@@ -5905,7 +5904,7 @@ slotIndex Arguments
@@ -5928,7 +5927,7 @@ mead
Arguments
@@ -5958,7 +5957,7 @@ tryCount
Arguments
@@ -6028,12 +6027,12 @@ rawCurrencyA currency to be transferred.
@@ -6063,7 +6062,7 @@ recipientsList of tuples that recipients' address and asset amount to be sent
@@ -6098,7 +6097,7 @@ memo
Memo
@@ -6118,7 +6117,7 @@ recipientAvata
Arguments
@@ -6143,7 +6142,7 @@ recipeIds Arguments
+
+
+
+
+
+ Types
+
+ Address
+
+
+
+
+
+ Example
+
+
+ Address
@@ -6341,7 +6361,7 @@ Fields
- currencyMintersAddress
- [address!]
+ currencyMintersAddress
- [Address!]
currency minters address.
@@ -6360,7 +6380,7 @@ currency
- pledgeAddress
- address!
+ pledgeAddress
- Address!
pledge information address.
@@ -6370,7 +6390,7 @@ currency
Arguments
@@ -6379,7 +6399,7 @@ agentAddress
- raiderAddress
- address!
+ raiderAddress
- Address!
user information address by world boss season.
@@ -6389,7 +6409,7 @@ agentAddress
Arguments
@@ -6403,7 +6423,7 @@ raidId
<
- raiderListAddress
- address!
+ raiderListAddress
- Address!
raider list address by world boss season.
@@ -6422,7 +6442,7 @@ raidId
<
- worldBossAddress
- address!
+ worldBossAddress
- Address!
boss information address by world boss season.
@@ -6441,7 +6461,7 @@ raidId
<
-