You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Given a specific account public key and application ID, this call returns the account's application local state and global state (AppLocalState and AppParams, if either exists). Global state will only be returned if the provided address is the application's creator.",
@@ -3087,6 +3154,23 @@
3087
3154
}
3088
3155
}
3089
3156
},
3157
+
"AccountAssetHolding": {
3158
+
"description": "AccountAssetHolding describes the account's asset holding and asset parameters (if either exist) for a specific asset ID.",
3159
+
"type": "object",
3160
+
"required": [
3161
+
"asset-holding"
3162
+
],
3163
+
"properties": {
3164
+
"asset-holding": {
3165
+
"description": "\\[asset\\] Details about the asset held by this account.\n\nThe raw account uses `AssetHolding` for this type.",
3166
+
"$ref": "#/definitions/AssetHolding"
3167
+
},
3168
+
"asset-params": {
3169
+
"description": "\\[apar\\] parameters of the asset held by this account.\n\nThe raw account uses `AssetParams` for this type.",
3170
+
"$ref": "#/definitions/AssetParams"
3171
+
}
3172
+
}
3173
+
},
3090
3174
"AccountParticipation": {
3091
3175
"description": "AccountParticipation describes the parameters used by this account in consensus protocol.",
3092
3176
"type": "object",
@@ -4818,6 +4902,31 @@
4818
4902
}
4819
4903
}
4820
4904
},
4905
+
"AccountAssetsInformationResponse": {
4906
+
"description": "AccountAssetsInformationResponse contains a list of assets held by an account.",
4907
+
"schema": {
4908
+
"type": "object",
4909
+
"required": [
4910
+
"round"
4911
+
],
4912
+
"properties": {
4913
+
"round": {
4914
+
"description": "The round for which this information is relevant.",
4915
+
"type": "integer"
4916
+
},
4917
+
"next-token": {
4918
+
"description": "Used for pagination, when making another request provide this token with the next parameter.",
4919
+
"type": "string"
4920
+
},
4921
+
"asset-holdings": {
4922
+
"type": "array",
4923
+
"items": {
4924
+
"$ref": "#/definitions/AccountAssetHolding"
4925
+
}
4926
+
}
4927
+
}
4928
+
}
4929
+
},
4821
4930
"AccountApplicationResponse": {
4822
4931
"description": "AccountApplicationResponse describes the account's application local state and global state (AppLocalState and AppParams, if either exists) for a specific application ID. Global state will only be returned if the provided address is the application's creator.",
0 commit comments