Outbound
This route can be used to search for an outbound transaction (the inverse of the deposit hash route). It provides the live status and details of a given outbound transaction as well as its corresponding deposit details.
https://backend.gas.zip/v2/outbound/<hash>
Schema
type Status = 'SEEN' | 'PENDING' | 'CONFIRMED' | 'PRIORITY' | 'CANCELLED'
interface TransactionStatusData {
deposit: Deposit
txs: Transaction[]
}
interface Deposit {
block: number
chain: number
hash: string
log: number
sender: string
shorts: number[]
status: Status
time: number
to: string
usd: number
value: string
}
interface Transaction {
chain: number
hash: string
nonce: number
refund: boolean
cancelled: boolean
signer: string
status: Status
time: number
to: string
usd: number
value: number
}