docsgen
This commit is contained in:
parent
4cca3f19a3
commit
388c9afce0
@ -83,12 +83,14 @@
|
|||||||
* [MsigAddCancel](#MsigAddCancel)
|
* [MsigAddCancel](#MsigAddCancel)
|
||||||
* [MsigAddPropose](#MsigAddPropose)
|
* [MsigAddPropose](#MsigAddPropose)
|
||||||
* [MsigApprove](#MsigApprove)
|
* [MsigApprove](#MsigApprove)
|
||||||
|
* [MsigApproveTxnHash](#MsigApproveTxnHash)
|
||||||
* [MsigCancel](#MsigCancel)
|
* [MsigCancel](#MsigCancel)
|
||||||
* [MsigCreate](#MsigCreate)
|
* [MsigCreate](#MsigCreate)
|
||||||
* [MsigGetAvailableBalance](#MsigGetAvailableBalance)
|
* [MsigGetAvailableBalance](#MsigGetAvailableBalance)
|
||||||
* [MsigGetVested](#MsigGetVested)
|
* [MsigGetVested](#MsigGetVested)
|
||||||
* [MsigGetVestingSchedule](#MsigGetVestingSchedule)
|
* [MsigGetVestingSchedule](#MsigGetVestingSchedule)
|
||||||
* [MsigPropose](#MsigPropose)
|
* [MsigPropose](#MsigPropose)
|
||||||
|
* [MsigRemoveSigner](#MsigRemoveSigner)
|
||||||
* [MsigSwapApprove](#MsigSwapApprove)
|
* [MsigSwapApprove](#MsigSwapApprove)
|
||||||
* [MsigSwapCancel](#MsigSwapCancel)
|
* [MsigSwapCancel](#MsigSwapCancel)
|
||||||
* [MsigSwapPropose](#MsigSwapPropose)
|
* [MsigSwapPropose](#MsigSwapPropose)
|
||||||
@ -2006,7 +2008,33 @@ Response:
|
|||||||
```
|
```
|
||||||
|
|
||||||
### MsigApprove
|
### MsigApprove
|
||||||
MsigApprove approves a previously-proposed multisig message
|
MsigApprove approves a previously-proposed multisig message by transaction ID
|
||||||
|
It takes the following params: <multisig address>, <proposed transaction ID> <signer address>
|
||||||
|
|
||||||
|
|
||||||
|
Perms: sign
|
||||||
|
|
||||||
|
Inputs:
|
||||||
|
```json
|
||||||
|
[
|
||||||
|
"f01234",
|
||||||
|
42,
|
||||||
|
"f01234"
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
|
Response:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### MsigApproveTxnHash
|
||||||
|
MsigApproveTxnHash approves a previously-proposed multisig message, specified
|
||||||
|
using both transaction ID and a hash of the parameters used in the
|
||||||
|
proposal. This method of approval can be used to ensure you only approve
|
||||||
|
exactly the transaction you think you are.
|
||||||
It takes the following params: <multisig address>, <proposed message ID>, <proposer address>, <recipient address>, <value to transfer>,
|
It takes the following params: <multisig address>, <proposed message ID>, <proposer address>, <recipient address>, <value to transfer>,
|
||||||
<sender address of the approve msg>, <method to call in the proposed message>, <params to include in the proposed message>
|
<sender address of the approve msg>, <method to call in the proposed message>, <params to include in the proposed message>
|
||||||
|
|
||||||
@ -2036,7 +2064,7 @@ Response:
|
|||||||
|
|
||||||
### MsigCancel
|
### MsigCancel
|
||||||
MsigCancel cancels a previously-proposed multisig message
|
MsigCancel cancels a previously-proposed multisig message
|
||||||
It takes the following params: <multisig address>, <proposed message ID>, <recipient address>, <value to transfer>,
|
It takes the following params: <multisig address>, <proposed transaction ID>, <recipient address>, <value to transfer>,
|
||||||
<sender address of the cancel msg>, <method to call in the proposed message>, <params to include in the proposed message>
|
<sender address of the cancel msg>, <method to call in the proposed message>, <params to include in the proposed message>
|
||||||
|
|
||||||
|
|
||||||
@ -2202,6 +2230,33 @@ Response:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### MsigRemoveSigner
|
||||||
|
MsigRemoveSigner proposes the removal of a signer from the multisig.
|
||||||
|
It accepts the multisig to make the change on, the proposer address to
|
||||||
|
send the message from, the address to be removed, and a boolean
|
||||||
|
indicating whether or not the signing threshold should be lowered by one
|
||||||
|
along with the address removal.
|
||||||
|
|
||||||
|
|
||||||
|
Perms: sign
|
||||||
|
|
||||||
|
Inputs:
|
||||||
|
```json
|
||||||
|
[
|
||||||
|
"f01234",
|
||||||
|
"f01234",
|
||||||
|
"f01234",
|
||||||
|
true
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
|
Response:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### MsigSwapApprove
|
### MsigSwapApprove
|
||||||
MsigSwapApprove approves a previously proposed SwapSigner
|
MsigSwapApprove approves a previously proposed SwapSigner
|
||||||
It takes the following params: <multisig address>, <sender address of the approve msg>, <proposed message ID>,
|
It takes the following params: <multisig address>, <sender address of the approve msg>, <proposed message ID>,
|
||||||
|
Loading…
Reference in New Issue
Block a user