new MultisigTransactionManagementApi()
- Version:
- 1.0
MultisigTransactionManagement service.
Methods
retrieveMultisigTransactions(xChainId, address, opts, callback)
RetrieveMultisigTransactions List of Pending Transactions
## Size * Thesize
query parameter is optional (minimum = 1, maximum = 1000, default = 100).* Submitting negative values result in errors.
* Submitting zero results in a query with
size=100
, which is the default value.* Submitting values greater than 1000 result in queries with
size=1000
, which is the maximum value.Parameters:
Name | Type | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
xChainId |
String | Klaytn chain network ID (1001 or 8217) |
|||||||||||||||
address |
String | Account address which has multisig keys or signer's account address |
|||||||||||||||
opts |
Object | Optional parameters Properties
|
|||||||||||||||
callback |
MultisigTransactionManagementApi~retrieveMultisigTransactionsCallback | The callback function, accepting three arguments: error, data, response data is of type: MultisigTransactions |
signPendingTransaction(xChainId, address, transactionId, callback)
SignPendingTransaction Sign to pending transaction from valid signer
Parameters:
Name | Type | Description |
---|---|---|
xChainId |
String | Klaytn chain network ID (1001 or 8217) |
address |
String | Signer's account address |
transactionId |
String | ID of pending transaction |
callback |
MultisigTransactionManagementApi~signPendingTransactionCallback | The callback function, accepting three arguments: error, data, response data is of type: MultisigTransactionStatus |
signPendingTransactionBySig(xChainId, transactionId, opts, callback)
SignPendingTransactionBySig Add Sign to pending transaction using prepared signatures. This API can be used when signer is not your own account but you got from signature from signer.
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
xChainId |
String | Klaytn chain network ID (1001 or 8217) |
||||||
transactionId |
String | ID of pending transaction |
||||||
opts |
Object | Optional parameters Properties
|
||||||
callback |
MultisigTransactionManagementApi~signPendingTransactionBySigCallback | The callback function, accepting three arguments: error, data, response data is of type: MultisigTransactionStatus |
Type Definitions
retrieveMultisigTransactionsCallback(error, data, response)
Callback function to receive the result of the retrieveMultisigTransactions operation.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
MultisigTransactions | The data returned by the service call. |
response |
String | The complete HTTP response. |
signPendingTransactionCallback(error, data, response)
Callback function to receive the result of the signPendingTransaction operation.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
MultisigTransactionStatus | The data returned by the service call. |
response |
String | The complete HTTP response. |
signPendingTransactionBySigCallback(error, data, response)
Callback function to receive the result of the signPendingTransactionBySig operation.
Parameters:
Name | Type | Description |
---|---|---|
error |
String | Error message, if any. |
data |
MultisigTransactionStatus | The data returned by the service call. |
response |
String | The complete HTTP response. |