Unpause Contract

Introduction

Unpause Contract. Restores the transfer functionality of the token contract.

Parameters

Request Parameters:

NameTypeDescription
jsonrpcstringFixed value:2.0
methodstringMethod name. Fixed value: unpause
tokenstringToken address
nonceintNonce
recentCheckpointintBlock height
methodArgsarrayDynamic contract arguments
signatureobjectSignature result

Request Example:

{
  "jsonrpc": "2.0",
  "method": "unpause",
  "params": {
    "nonce": 8,
    "token": "0x...",
    "methodArgs": [],
    "recentCheckpoint": 12345,
    "signature": {
      "r": "string",
      "s": "string",
      "v": "string"
    }
  },
  "id": 10
}

Response Parameters:

NameTypeDescription
hashstringContract call hash

Response Example:

{
  "jsonrpc": "2.0",
  "result": {
    "hash": "0x..."
  },
  "id": 10
}