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
address: str=Query(..., description="Identifier of target TON account in any form."),
266
-
seqno: Optional[int] =Body(None, description="Seqno of masterchain block at which moment the address information should be loaded")
266
+
seqno: Optional[int] =Query(None, description="Seqno of masterchain block at which moment the address information should be loaded")
267
267
):
268
268
"""
269
269
Similar to previous one but tries to parse additional information for known contract types. This method is based on tonlib's function *getAccountState*. For detecting wallets we recommend to use *getWalletInformation*.
address: str=Query(..., description="Identifier of target TON account in any form."),
280
-
seqno: Optional[int] =Body(None, description="Seqno of masterchain block at which moment the address information should be loaded")
280
+
seqno: Optional[int] =Query(None, description="Seqno of masterchain block at which moment the address information should be loaded")
281
281
):
282
282
"""
283
283
Retrieve wallet information. This method parses contract state and currently supports more wallet types than getExtendedAddressInformation: simple wallet, standart wallet, v3 wallet, v4 wallet.
@@ -320,7 +320,7 @@ async def get_transactions(
320
320
@wrap_result
321
321
asyncdefget_address_balance(
322
322
address: str=Query(..., description="Identifier of target TON account in any form."),
323
-
seqno: Optional[int] =Body(None, description="Seqno of masterchain block at which moment the address information should be loaded")
323
+
seqno: Optional[int] =Query(None, description="Seqno of masterchain block at which moment the address information should be loaded")
0 commit comments