Files
ritmex-bot/docs/grvt/schemas/withdrawal_history.md
T

1.5 KiB

!!! info "WithdrawalHistory" |Name
Lite|Type|Required
Default| Description | |-|-|-|-| |tx_id
ti |string|True|The transaction ID of the withdrawal| |from_account_id
fa |string|True|The subaccount to withdraw from| |to_eth_address
te |string|True|The ethereum address to withdraw to| |currency
c |string|True|The token currency to withdraw| |num_tokens
nt |string|True|The number of tokens to withdraw| |signature
s |Signature|True|The signature of the withdrawal| |event_time
et |string|True|The timestamp of the withdrawal in unix nanoseconds| ??? info "Signature" |Name
Lite|Type|Required
Default| Description | |-|-|-|-| |signer
s |string|True|The address (public key) of the wallet signing the payload| |r
r |string|True|Signature R| |s
s1 |string|True|Signature S| |v
v |integer|True|Signature V| |expiration
e |string|True|Timestamp after which this signature expires, expressed in unix nanoseconds. Must be capped at 30 days| |nonce
n |integer|True|Users can randomly generate this value, used as a signature deconflicting key.
ie. You can send the same exact instruction twice with different nonces.
When the same nonce is used, the same payload will generate the same signature.
Our system will consider the payload a duplicate, and ignore it.|