Unpause Contract
Introduction
Unpause Contract. Restores the transfer functionality of the token contract.
Parameters
Request Parameters:
| Name | Type | Description |
|---|---|---|
| jsonrpc | string | Fixed value:2.0 |
| method | string | Method name. Fixed value: unpause |
| token | string | Token address |
| nonce | int | Nonce |
| recentCheckpoint | int | Block height |
| methodArgs | array | Dynamic contract arguments |
| signature | object | Signature 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:
| Name | Type | Description |
|---|---|---|
| hash | string | Contract call hash |
Response Example:
{
"jsonrpc": "2.0",
"result": {
"hash": "0x..."
},
"id": 10
}Updated 3 months ago
