# Staking for Multisig

### Pre-requisites

* Navitate to <https://multisig.harmony.one>
* Load your safe
* Have enough funds to stake
* Note down the validator address to which you plan on staking/unstaking

### Delegation (Staking)

1\. Navigate to "New Transaction" and select "Contract Interaction"

![](https://3781397247-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LlEOlYqEG_GKuO5Rehq%2Fuploads%2Fihl0XF6qc6D0zpTOB0FP%2FScreen%20Shot%202022-06-01%20at%208.22.39%20AM.png?alt=media\&token=1b9159d0-6648-4171-a7d5-2921e3967f62)

2\. Enter `0x00000000000000000000000000000000000000FC` into the "Contract Address" field of the Contract Interaction form.

3\. Copy paste the text below into the ABI field in the Contract Interaction form

```
[
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "delegatorAddress",
          "type": "address"
        },
        {
          "internalType": "address",
          "name": "validatorAddress",
          "type": "address"
        },
        {
          "internalType": "uint256",
          "name": "amount",
          "type": "uint256"
        }
      ],
      "name": "Delegate",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    }
]
```

4\. Select "Delegate" from the drop-down.&#x20;

5\. Enter the delegator address (your multisig safe address) and validator address. Note that these have to be in the `0x` format and not `one1`. You can easily get the `0x` formatted address of your `one1` from <https://explorer.harmony.one> "Address Format" toggle on the top.

6\. Enter the amount of ONE to stake. Note that, you have to append 18 zeros to your number as the amount is expected in the `wei` units and not `ONE`. For example, if you want to stake 100 ONE, you will write 100000000000000000000 (notice the 18 zeros after 100).

![](https://3781397247-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LlEOlYqEG_GKuO5Rehq%2Fuploads%2F2aNtR7vpxCMJ3rrbLzFc%2FScreen%20Shot%202022-06-01%20at%208.41.24%20AM.png?alt=media\&token=b8b86124-2bcc-4853-af3f-50ef5c20a958)

7\. Click on "Review", "Submit", and sign the transaction. Rest of the steps are usual multisig signing where all required parties sign this transaction.

### Undelegation (Unstaking)

1\. Navigate to "New Transaction" and select "Contract Interaction"

2\. Enter `0x00000000000000000000000000000000000000FC` into the "Contract Address" field of the Contract Interaction form.

3\. Copy paste the text below into the ABI field in the Contract Interaction form

```
[
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "delegatorAddress",
          "type": "address"
        },
        {
          "internalType": "address",
          "name": "validatorAddress",
          "type": "address"
        },
        {
          "internalType": "uint256",
          "name": "amount",
          "type": "uint256"
        }
      ],
      "name": "Undelegate",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    }
]
```

4\. Select "Delegate" from the drop-down.&#x20;

5\. Enter the delegator address (your multisig safe address) and validator address. Note that these have to be in the `0x` format and not `one1`. You can easily get the `0x` formatted address of your `one1` from <https://explorer.harmony.one> "Address Format" toggle on the top.

6\. Enter the amount of ONE to stake. Note that, you have to append 18 zeros to your number as the amount is expected in the `wei` units and not `ONE`. For example, if you want to stake 100 ONE, you will write 100000000000000000000 (notice the 18 zeros after 100).

![](https://3781397247-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LlEOlYqEG_GKuO5Rehq%2Fuploads%2FsPKdjerP77GAiJGKkKU6%2FScreen%20Shot%202022-06-01%20at%208.47.17%20AM.png?alt=media\&token=a8296bc2-7a08-4af5-8b00-509cfb67113e)

7\. Click on "Review", "Submit", and sign the transaction. Rest of the steps are usual multisig signing where all required parties sign this transaction.

### Collect Rewards

1\. Navigate to "New Transaction" and select "Contract Interaction"

2\. Enter `0x00000000000000000000000000000000000000FC` into the "Contract Address" field of the Contract Interaction form.

3\. Copy paste the text below into the ABI field in the Contract Interaction form

```
[
    {
        "inputs": [
          {
            "internalType": "address",
            "name": "delegatorAddress",
            "type": "address"
          }
        ],
        "name": "CollectRewards",
        "outputs": [],
        "stateMutability": "nonpayable",
        "type": "function"
      }
]
```

4\. Select "CollectRewards" from the drop-down.&#x20;

5\. Enter the delegator address (your multisig safe address)

![](https://3781397247-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LlEOlYqEG_GKuO5Rehq%2Fuploads%2FyeLwqJJ1CiUJW9NGp5jJ%2FScreen%20Shot%202022-06-01%20at%208.50.49%20AM.png?alt=media\&token=39bffbb2-f4bc-4665-b970-fe8daa5e1888)

6\. Click on "Review", "Submit", and sign the transaction. Rest of the steps are usual multisig signing where all required parties sign this transaction.
