OBJECT
UserCommand
link GraphQL Schema definition
- type UserCommand {
- : ID!
- # If true, this represents a delegation of stake, otherwise it is a payment
- : Boolean!
- # Nonce of the transaction
- : Int!
- # Public key of the sender
- : PublicKey! @deprecated( reason: "use fromAccount field instead" )
- # Account of the sender
- : Account!
- # Public key of the receiver
- : PublicKey! @deprecated( reason: "use toAccount field instead" )
- # Account of the receiver
- : Account!
- # Amount that sender is sending to receiver - this is 0 for delegations
- : UInt64!
- # Fee that sender is willing to pay for making the transaction
- : UInt64!
- # Short arbitrary message provided by the sender
- : String!
- }