@massalabs/multisig-contract 0.1.1-dev.20260507085256 → 0.1.1-dev.20260507092437
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -189,18 +189,17 @@ npm run get:decc-balance -- <decc-no>
|
|
|
189
189
|
The repository includes a helper script to transfer funds from one DECC to another.
|
|
190
190
|
|
|
191
191
|
```shell
|
|
192
|
-
npm run transfer:funds -- <sender-decc-no> <recipient-decc-no> <
|
|
192
|
+
npm run transfer:funds -- <sender-decc-no> <recipient-decc-no> <raw_amount> <currency-ticker>
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
-
|
|
196
|
-
(for decimals=2, `10` means a raw amount of `1000`).
|
|
195
|
+
`<raw_amount>` must be the on-chain raw integer amount.
|
|
197
196
|
|
|
198
197
|
## Burn funds (P-layer)
|
|
199
198
|
|
|
200
199
|
The repository includes a helper script to burn funds from a DECC.
|
|
201
200
|
|
|
202
201
|
```shell
|
|
203
|
-
npm run burn:funds -- <source-decc-no> <
|
|
202
|
+
npm run burn:funds -- <source-decc-no> <raw_amount> <currency-ticker>
|
|
204
203
|
```
|
|
205
204
|
|
|
206
205
|
## Create a mint proposal (P-layer)
|
|
@@ -208,18 +207,17 @@ npm run burn:funds -- <source-decc-no> <amount> <currency-ticker>
|
|
|
208
207
|
The repository also includes a helper script to submit a P-layer multisig `mint` proposal via the Player API.
|
|
209
208
|
|
|
210
209
|
```shell
|
|
211
|
-
npm run propose:mint -- <decc-no> <
|
|
210
|
+
npm run propose:mint -- <decc-no> <raw_amount> <currency-ticker>
|
|
212
211
|
```
|
|
213
212
|
|
|
214
|
-
|
|
215
|
-
(for decimals=2, `10` means a raw amount of `1000`).
|
|
213
|
+
`<raw_amount>` must be the on-chain raw integer amount.
|
|
216
214
|
|
|
217
215
|
## Create a transfer_from proposal (P-layer)
|
|
218
216
|
|
|
219
217
|
The repository also includes a helper script to submit a P-layer multisig `transfer_from` proposal via the Player API.
|
|
220
218
|
|
|
221
219
|
```shell
|
|
222
|
-
npm run propose:transfer_from -- <multisig-decc-no> <sender-decc-no> <recipient-decc-no> <
|
|
220
|
+
npm run propose:transfer_from -- <multisig-decc-no> <sender-decc-no> <recipient-decc-no> <raw_amount> <currency-ticker>
|
|
223
221
|
```
|
|
224
222
|
|
|
225
223
|
## Create a freeze_account proposal (P-layer)
|