add deposit form

This commit is contained in:
João Geonizeli
2021-09-06 11:29:33 -03:00
parent 4eb0f94dd7
commit ccfc35aa01
17 changed files with 453 additions and 28 deletions

View File

@@ -77,6 +77,13 @@ type CreateBuyCryptoOrderPayload {
order: BuyCryptoOrder
}
input CreateDepositOrderAttributesInput {
"""
Amount to be paid
"""
amountCents: Int!
}
"""
Autogenerated input type of CreateDepositOrder
"""
@@ -85,7 +92,7 @@ input CreateDepositOrderInput {
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
order: CreateStakeOrderAttributesInput!
order: CreateDepositOrderAttributesInput!
}
"""