Deposit
The details of a deposit processed by Vega
type Deposit {
  id: ID!
  party: Party!
  amount: String!
  asset: Asset!
  status: DepositStatus!
  createdTimestamp: Timestamp!
  creditedTimestamp: Timestamp
  txHash: String
}
Fields
Deposit.id ● ID! non-null scalar
The Vega internal ID of the deposit
Deposit.party ● Party! non-null object
The Party initiating the deposit
Deposit.amount ● String! non-null scalar
The amount to be withdrawn
Deposit.asset ● Asset! non-null object
The asset to be withdrawn
Deposit.status ● DepositStatus! non-null enum
The current status of the deposit
Deposit.createdTimestamp ● Timestamp! non-null scalar
RFC3339Nano time at which the deposit was created
Deposit.creditedTimestamp ● Timestamp scalar
RFC3339Nano time at which the deposit was finalised
Deposit.txHash ● String scalar
Hash of the transaction on the foreign chain
Returned by
deposit  query
Member of
DepositEdge  object ● Entities  object
Implemented by
Event  union