{
  "info": {
    "_postman_id": "802ff45e-1bab-45b6-ade7-9e779bb62d07",
    "name": "Staking Walkthroughs",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "51454256"
  },
  "item": [
    {
      "name": "General",
      "item": [
        {
          "name": "Custody Wallet",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"STAKE\",\n  \"amount\": \"{{AMOUNT}}\",\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/{{COIN_ID}}/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "{{COIN_ID}}",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/{{COIN_ID}}/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "{{COIN_ID}}",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"walletType\": \"{{WALLET_TYPE}}\",\n    \"walletId\": \"{{WALLET_ID}}\",\n    \"requestType\": \"STAKE\",\n    \"requestStatus\": \"PENDING_APPROVAL\"\n  }",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Go Account (Manual)",
          "item": [
            {
              "name": "1. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/go-staking/v1/{{COIN_ID}}/accounts/{{GO_ACCOUNT_ID}}/requests/preview",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "go-staking",
                    "v1",
                    "{{COIN_ID}}",
                    "accounts",
                    "{{GO_ACCOUNT_ID}}",
                    "requests",
                    "preview"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Sign Staking Request (SDK)",
              "request": {
                "method": "GET",
                "header": [],
                "description": "Use the BitGo JavaScript SDK to sign the staking-request payload that you received in the previous step.\n\n``` javascript\nconst halfSignedTransaction = (await this.wallet.prebuildAndSignTransaction({\n    walletPassphrase: '{{WALLET_PASSPHRASE}}',\n    prebuildTx: {\n        payload: '{{PAYLOAD_OBJECT}}',\n    }\n}));\n\n ```"
              },
              "response": []
            },
            {
              "name": "3. Send Staking Request",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"type\": \"STAKE\",\n    \"amount\": \"{{AMOUNT}}\",\n    \"frontTransferSendRequest\": {\n      \"halfSigned\": \"{{HALF_SIGNED_PAYLOAD}}\"\n    }\n  }",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/go-staking/v1/$COIN/accounts/$GO_ACCOUNT_ID/requests/finalize",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "go-staking",
                    "v1",
                    "$COIN",
                    "accounts",
                    "$GO_ACCOUNT_ID",
                    "requests",
                    "finalize"
                  ]
                },
                "description": "LOCAL SDK STEP — not a real HTTP call.\n\nconst halfSigned = await wallet.prebuildAndSignTransaction({\n  walletPassphrase: '<PASSPHRASE>',\n  prebuildTx: { payload: '<PAYLOAD_FROM_STEP_1>' }\n});"
              },
              "response": []
            },
            {
              "name": "4. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{otp}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{approvalId}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{approvalId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5. List Staking Requests by Asset for Go Account",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/go-staking/v1/{{COIN_ID}}/accounts/{{GO_ACCOUNT_ID}}/requests/preview",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "go-staking",
                    "v1",
                    "{{COIN_ID}}",
                    "accounts",
                    "{{GO_ACCOUNT_ID}}",
                    "requests",
                    "preview"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Self-Custody Wallet",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/{{COIN_ID}}/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "{{COIN_ID}}",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/{{COIN_ID}}/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "{{COIN_ID}}",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"walletType\": \"{{WALLET_TYPE}}\",\n    \"walletId\": \"{{WALLET_ID}}\",\n    \"requestType\": \"STAKE\",\n    \"requestStatus\": \"PENDING_APPROVAL\"\n  }",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction: StakingTransaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        }
      ]
    },
    {
      "name": "Custody Wallet by Asset",
      "item": [
        {
          "name": "ADA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ADA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ADA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ADA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ADA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "APT",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/APT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "APT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/APT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "APT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "ASI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ASI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ASI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ASI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ASI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "ATOM",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ATOM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ATOM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ATOM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ATOM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "AVAXC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"STAVAX_STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/AVAXC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "AVAXC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/AVAXC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "AVAXC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "AVAXP",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"durationSeconds\": 604800\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/AVAXP/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "AVAXP",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve (No unstake — auto-unstakes at end of staking period)"
        },
        {
          "name": "BABY",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BABY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BABY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BABY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BABY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "BERA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"INFRARED_LIQUID_STAKE\",\n  \"gasPrice\": \"{{GAS_PRICE}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BERA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BERA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BERA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BERA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "BLD",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BLD/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BLD",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BLD/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BLD",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "BSC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BSC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BSC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BSC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BSC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "BTC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"coredao\": {\n    \"expireAt\": \"{{EXPIRE_AT}}\",\n    \"rewardAddress\": \"{{REWARD_ADDRESS}}\"\n  }\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BTC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BTC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BTC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BTC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "COREDAO",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREDAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREDAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREDAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREDAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve"
        },
        {
          "name": "COREUM",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREUM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREUM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREUM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREUM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "CRONOS",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CRONOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CRONOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CRONOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CRONOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "CSPR",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CSPR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CSPR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CSPR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CSPR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "DOT",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/DOT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "DOT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/DOT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "DOT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "EIGEN",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/EIGEN/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "EIGEN",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/EIGEN/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "EIGEN",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "ETH",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "FLRP",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_NODE_ID}}\",\n  \"duration\": 30\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/FLRP/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "FLRP",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ],
          "description": "No unstake — auto-unstakes at end of staking period"
        },
        {
          "name": "HASH",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/HASH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "HASH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/HASH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "HASH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "INJECTIVE",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/INJECTIVE/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "INJECTIVE",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/INJECTIVE/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "INJECTIVE",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "KAVACOSMOS",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/KAVACOSMOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "KAVACOSMOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/KAVACOSMOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "KAVACOSMOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "MATIC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/MATIC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "MATIC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/MATIC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "MATIC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "NEAR",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/NEAR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "NEAR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/NEAR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "NEAR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "OG",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OG/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OG",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OG/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OG",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "OSMO",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OSMO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OSMO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OSMO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OSMO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "POL",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "POLYX",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POLYX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POLYX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POLYX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POLYX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "RETH-ROCKET",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/RETH-ROCKET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "RETH-ROCKET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/RETH-ROCKET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "RETH-ROCKET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "SEI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SEI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SEI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SEI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SEI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "SOL",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "SOMI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOMI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOMI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOMI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOMI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "STORY",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_BLS_KEY}}\",\n  \"stakingPeriod\": \"FLEXIBLE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STORY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STORY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STORY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STORY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "STX",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"STACK\",\n  \"duration\": \"{{DURATION_BLOCKS}}\",\n  \"btcRewardAddress\": \"{{BTC_REWARD_ADDRESS}}\",\n  \"contractName\": \"pox-4\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "SUI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "SUI:WAL",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI:WAL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI:WAL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI:WAL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI:WAL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "TAO",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"netUID\": 0,\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "TIA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TIA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TIA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TIA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TIA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "TON",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"MULTI_NOMINATOR_STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TON/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TON",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TON/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TON",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "TRX",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TRX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TRX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TRX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TRX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "VET",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"nftTier\": \"{{NFT_TIER}}\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/VET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "VET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/VET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "VET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "WCT",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"WCT_STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WCT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WCT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WCT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WCT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "WETH",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "WFLR",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"WFLR_STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WFLR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WFLR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\",\n  \"gasPrice\": \"{{GAS_PRICE}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WFLR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WFLR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "XDC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"kycHash\": \"{{KYC_HASH}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/XDC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "XDC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/XDC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "XDC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "ZETA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ZETA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ZETA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ZETA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ZETA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            }
          ]
        }
      ]
    },
    {
      "name": "Self-Custody Wallet by Asset",
      "item": [
        {
          "name": "ADA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ADA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ADA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ADA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ADA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "APT",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/APT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "APT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/APT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "APT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "ASI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ASI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ASI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ASI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ASI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "ATOM",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ATOM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ATOM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ATOM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ATOM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "AVAXC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"STAVAX_STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/AVAXC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "AVAXC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/AVAXC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "AVAXC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "AVAXP",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"durationSeconds\": 604800\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/AVAXP/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "AVAXP",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "No unstake — auto-unstakes at end of staking period. 1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "BABY",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BABY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BABY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BABY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BABY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "BERA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"INFRARED_LIQUID_STAKE\",\n  \"gasPrice\": \"{{GAS_PRICE}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BERA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BERA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BERA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BERA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "BLD",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BLD/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BLD",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BLD/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BLD",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "BSC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BSC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BSC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BSC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BSC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "BTC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"coredao\": {\n    \"expireAt\": \"{{EXPIRE_AT}}\",\n    \"rewardAddress\": \"{{REWARD_ADDRESS}}\"\n  }\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BTC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BTC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/BTC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "BTC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "COREDAO",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREDAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREDAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREDAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREDAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "COREUM",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREUM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREUM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/COREUM/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "COREUM",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "CRONOS",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CRONOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CRONOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CRONOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CRONOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "CSPR",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CSPR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CSPR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/CSPR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "CSPR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "DOT",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/DOT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "DOT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/DOT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "DOT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "EIGEN",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/EIGEN/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "EIGEN",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/EIGEN/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "EIGEN",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "ETH",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "FLRP",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_NODE_ID}}\",\n  \"duration\": 30\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/FLRP/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "FLRP",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "No unstake — auto-unstakes. 1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "HASH",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/HASH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "HASH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/HASH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "HASH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "INJECTIVE",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/INJECTIVE/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "INJECTIVE",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/INJECTIVE/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "INJECTIVE",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "KAVACOSMOS",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/KAVACOSMOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "KAVACOSMOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/KAVACOSMOS/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "KAVACOSMOS",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "MATIC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/MATIC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "MATIC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/MATIC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "MATIC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "NEAR",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/NEAR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "NEAR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/NEAR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "NEAR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "OG",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OG/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OG",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OG/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OG",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "OSMO",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OSMO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OSMO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/OSMO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "OSMO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "POL",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "POLYX",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POLYX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POLYX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/POLYX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "POLYX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "RETH-ROCKET",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/RETH-ROCKET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "RETH-ROCKET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/RETH-ROCKET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "RETH-ROCKET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "SEI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SEI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SEI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SEI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SEI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "SOL",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "SOMI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOMI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOMI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SOMI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SOMI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "STORY",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_BLS_KEY}}\",\n  \"stakingPeriod\": \"FLEXIBLE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STORY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STORY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STORY/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STORY",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "STX",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"STACK\",\n  \"duration\": \"{{DURATION_BLOCKS}}\",\n  \"btcRewardAddress\": \"{{BTC_REWARD_ADDRESS}}\",\n  \"contractName\": \"pox-4\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/STX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "STX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "SUI",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "SUI:WAL",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI:WAL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI:WAL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/SUI:WAL/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "SUI:WAL",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "TAO",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"netUID\": 0,\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TAO/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TAO",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "TIA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TIA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TIA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TIA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TIA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "TON",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"MULTI_NOMINATOR_STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TON/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TON",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TON/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TON",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "TRX",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TRX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TRX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/TRX/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "TRX",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "VET",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"nftTier\": \"{{NFT_TIER}}\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/VET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "VET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/VET/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "VET",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "WCT",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"WCT_STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WCT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WCT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WCT/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WCT",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "WETH",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WETH/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WETH",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "WFLR",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"subType\": \"WFLR_STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"gasPrice\": \"{{GAS_PRICE}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WFLR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WFLR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\",\n  \"gasPrice\": \"{{GAS_PRICE}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/WFLR/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "WFLR",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "XDC",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\",\n  \"validator\": \"{{VALIDATOR_ADDRESS}}\",\n  \"kycHash\": \"{{KYC_HASH}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/XDC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "XDC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/XDC/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "XDC",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        },
        {
          "name": "ZETA",
          "item": [
            {
              "name": "1a. Create Staking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"type\": \"STAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ZETA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ZETA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1b. Create Unstaking Request",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"amount\": \"{{AMOUNT}}\",\n  \"delegationId\": \"{{DELEGATION_ID}}\",\n  \"type\": \"UNSTAKE\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/ZETA/wallets/{{WALLET_ID}}/requests",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "ZETA",
                    "wallets",
                    "{{WALLET_ID}}",
                    "requests"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2. Get Request Status (Optional)",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"walletType\": \"{{WALLET_TYPE}}\",\n  \"walletId\": \"{{WALLET_ID}}\",\n  \"requestType\": \"STAKE\",\n  \"requestStatus\": \"PENDING_APPROVAL\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/enterprises/{{ENTERPRISE_ID}}/requests/transactions",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "staking",
                    "v1",
                    "enterprises",
                    "{{ENTERPRISE_ID}}",
                    "requests",
                    "transactions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3. Approve Request (Optional)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"approved\",\n  \"otp\": \"{{OTP}}\"\n}"
                },
                "url": {
                  "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/v2/pendingApprovals/{{APPROVAL_ID}}",
                  "protocol": "https",
                  "host": [
                    "app",
                    "bitgo-{{BITGO_ENV}}",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v2",
                    "pendingApprovals",
                    "{{APPROVAL_ID}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4. Sign & Send (SDK)",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": ""
                },
                "description": "``` javascript\nconst transactions = await stakingWallet.getTransactionsReadyToSign(stakingRequest.id);\nif (!transactions.allSigningComplete && transactions.transactions.length > 0) {\n  transactions.transactions.forEach((transaction) => {\n    await stakingWallet.buildSignAndSend({ walletPassphrase: 'walletPassphrase' }, transaction);\n  });\n}\n ```"
              },
              "response": []
            }
          ],
          "description": "1) Create request → 2) Get status → 3) Approve → 4) SDK Sign & Send"
        }
      ]
    },
    {
      "name": "Go Account by Asset",
      "item": [
        {
          "name": "Test",
          "item": [
            {
              "name": "SOL",
              "item": [
                {
                  "name": "Preview Staking Request",
                  "request": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"amount\": \"{{solAmount}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsol/accounts/{{accountId}}/requests/preview",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsol",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "preview"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Finalize Staking Request",
                  "request": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"type\": \"STAKE\",\n    \"amount\": \"{{solAmount}}\",\n    \"frontTransferSendRequest\": {\n        \"halfSigned\": \"{{halfSigned}}\"\n    }\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsol/accounts/{{accountId}}/requests/finalize",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsol",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "finalize"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Finalize Unstaking Request",
                  "request": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"type\": \"UNSTAKE\",\n    \"amount\": \"{{solAmount}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsol/accounts/{{accountId}}/requests/finalize",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsol",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "finalize"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Wallet Attributes",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsol/accounts/{{accountId}}/attributes",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsol",
                        "accounts",
                        "{{accountId}}",
                        "attributes"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Requests",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsol/accounts/{{accountId}}/requests",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsol",
                        "accounts",
                        "{{accountId}}",
                        "requests"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Rewards",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsol/accounts/{{accountId}}/rewards",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsol",
                        "accounts",
                        "{{accountId}}",
                        "rewards"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Request",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsol/accounts/{{accountId}}/requests/{{requestId}}",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsol",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "{{requestId}}"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "SUI",
              "item": [
                {
                  "name": "Preview Staking Request",
                  "request": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"amount\": \"{{suiAmount}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsui/accounts/{{accountId}}/requests/preview",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsui",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "preview"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Finalize Staking Request",
                  "request": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"type\": \"STAKE\",\n    \"amount\": \"{{suiAmount}}\",\n    \"frontTransferSendRequest\": {\n        \"halfSigned\": \"{{halfSigned}}\"\n    }\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsui/accounts/{{accountId}}/requests/finalize",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsui",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "finalize"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Finalize Unstaking Request",
                  "request": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"type\": \"UNSTAKE\",\n    \"amount\": \"{{suiAmount}}\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsui/accounts/{{accountId}}/requests/finalize",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsui",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "finalize"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Wallet Attributes",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsui/accounts/{{accountId}}/attributes",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsui",
                        "accounts",
                        "{{accountId}}",
                        "attributes"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Requests",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsui/accounts/{{accountId}}/requests",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsui",
                        "accounts",
                        "{{accountId}}",
                        "requests"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Rewards",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsui/accounts/{{accountId}}/rewards",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsui",
                        "accounts",
                        "{{accountId}}",
                        "rewards"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Request",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/ofctsui/accounts/{{accountId}}/requests/{{requestId}}",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "ofctsui",
                        "accounts",
                        "{{accountId}}",
                        "requests",
                        "{{requestId}}"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "Account",
              "item": [
                {
                  "name": "Get Go Staking Wallets",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/accounts/{{accountId}}/coins",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "accounts",
                        "{{accountId}}",
                        "coins"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Requests",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/accounts/{{accountId}}/requests",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "accounts",
                        "{{accountId}}",
                        "requests"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "Get Go Staking Rewards",
                  "request": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "{{baseUrl}}/api/go-staking/v1/accounts/{{accountId}}/rewards",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "api",
                        "go-staking",
                        "v1",
                        "accounts",
                        "{{accountId}}",
                        "rewards"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "List Coins Available for Staking",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "https://app.bitgo-{{BITGO_ENV}}.com/api/staking/v1/coins",
          "protocol": "https",
          "host": [
            "app",
            "bitgo-{{BITGO_ENV}}",
            "com"
          ],
          "path": [
            "api",
            "staking",
            "v1",
            "coins"
          ]
        }
      },
      "response": []
    }
  ],
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{ACCESS_TOKEN}}",
        "type": "string"
      }
    ]
  },
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "packages": {},
        "requests": {},
        "exec": [
          ""
        ]
      }
    },
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "packages": {},
        "requests": {},
        "exec": [
          ""
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://app.bitgo-test.com"
    },
    {
      "key": "BITGO_ENV",
      "value": "test"
    },
    {
      "key": "ACCESS_TOKEN",
      "value": ""
    },
    {
      "key": "COIN_ID",
      "value": ""
    },
    {
      "key": "WALLET_ID",
      "value": ""
    },
    {
      "key": "ENTERPRISE_ID",
      "value": ""
    },
    {
      "key": "APPROVAL_ID",
      "value": ""
    },
    {
      "key": "DELEGATION_ID",
      "value": ""
    },
    {
      "key": "AMOUNT",
      "value": ""
    },
    {
      "key": "OTP",
      "value": ""
    },
    {
      "key": "WALLET_TYPE",
      "value": "custodial"
    },
    {
      "key": "GAS_PRICE",
      "value": ""
    },
    {
      "key": "VALIDATOR_ADDRESS",
      "value": ""
    },
    {
      "key": "VALIDATOR_NODE_ID",
      "value": ""
    },
    {
      "key": "VALIDATOR_BLS_KEY",
      "value": ""
    },
    {
      "key": "BTC_REWARD_ADDRESS",
      "value": ""
    },
    {
      "key": "REWARD_ADDRESS",
      "value": ""
    },
    {
      "key": "EXPIRE_AT",
      "value": "2026-01-01T00:00:00.000Z"
    },
    {
      "key": "DURATION_BLOCKS",
      "value": "100"
    },
    {
      "key": "NFT_TIER",
      "value": "DAWN"
    },
    {
      "key": "KYC_HASH",
      "value": ""
    },
    {
      "key": "accountId",
      "value": ""
    },
    {
      "key": "halfSigned",
      "value": ""
    },
    {
      "key": "requestId",
      "value": ""
    },
    {
      "key": "solAmount",
      "value": ""
    },
    {
      "key": "suiAmount",
      "value": ""
    }
  ]
}