OBJECT
mutation
link GraphQL Schema definition
- type mutation {
- # Add a wallet - this will create a new keypair and store it in the daemon
- #
- # Arguments
- # input: [Not documented]
- (
- : AddAccountInput!
- ): AddAccountPayload! @deprecated( reason: "use createAccount instead" )
- # Create a new account - this will create a new keypair and store it in the daemon
- #
- # Arguments
- # input: [Not documented]
- (: AddAccountInput!): AddAccountPayload!
- # Allow transactions to be sent from the unlocked account
- #
- # Arguments
- # input: [Not documented]
- (: UnlockInput!): UnlockPayload!
- # Allow transactions to be sent from the unlocked account
- #
- # Arguments
- # input: [Not documented]
- (
- : UnlockInput!
- ): UnlockPayload! @deprecated( reason: "use unlockAccount instead" )
- # Lock an unlocked account to prevent transaction being sent from it
- #
- # Arguments
- # input: [Not documented]
- (: LockInput!): LockPayload!
- # Lock an unlocked account to prevent transaction being sent from it
- #
- # Arguments
- # input: [Not documented]
- (
- : LockInput!
- ): LockPayload! @deprecated( reason: "use lockAccount instead" )
- # Delete the private key for an account that you track
- #
- # Arguments
- # input: [Not documented]
- (: DeleteAccountInput!): DeleteAccountPayload!
- # Delete the private key for an account that you track
- #
- # Arguments
- # input: [Not documented]
- (
- : DeleteAccountInput!
- ): DeleteAccountPayload! @deprecated( reason: "use deleteAccount instead" )
- # Reload tracked account information from disk
- : ReloadAccountsPayload!
- # Reload tracked account information from disk
- : ReloadAccountsPayload! @deprecated( reason: "use reloadAccounts instead" )
- # Send a payment
- #
- # Arguments
- # input: [Not documented]
- (: SendPaymentInput!): SendPaymentPayload!
- # Change your delegate by sending a transaction
- #
- # Arguments
- # input: [Not documented]
- (: SendDelegationInput!): SendDelegationPayload!
- # Add payment into transaction database
- #
- # Arguments
- # input: [Not documented]
- (: AddPaymentReceiptInput!): AddPaymentReceiptPayload
- # Set keys you wish to stake with - silently fails if you pass keys corresponding
- # to accounts that are either locked or in trackedAccounts
- #
- # Arguments
- # input: [Not documented]
- (: SetStakingInput!): SetStakingPayload!
- # Set key you wish to snark work with or disable snark working
- #
- # Arguments
- # input: [Not documented]
- (: SetSnarkWorkerInput!): SetSnarkWorkerPayload!
- # Set fee that you will like to receive for doing snark work
- #
- # Arguments
- # input: [Not documented]
- (: SetSnarkWorkFee!): SetSnarkWorkFeePayload!
- }
link Require by
This element is not required by anyone