diff --git a/contracts/liquidity_hub/bonding-manager/schema/bonding-manager.json b/contracts/liquidity_hub/bonding-manager/schema/bonding-manager.json index 3cf60854..01fed86a 100644 --- a/contracts/liquidity_hub/bonding-manager/schema/bonding-manager.json +++ b/contracts/liquidity_hub/bonding-manager/schema/bonding-manager.json @@ -177,6 +177,28 @@ "claim" ] }, + { + "description": "Claims the available rewards on behalf of the specified address. Only executable by the contract.", + "type": "object", + "required": [ + "claim_for_addr" + ], + "properties": { + "claim_for_addr": { + "type": "object", + "required": [ + "address" + ], + "properties": { + "address": { + "type": "string" + } + }, + "additionalProperties": false + } + }, + "additionalProperties": false + }, { "description": "Fills the contract with new rewards.", "type": "string", diff --git a/contracts/liquidity_hub/bonding-manager/schema/raw/execute.json b/contracts/liquidity_hub/bonding-manager/schema/raw/execute.json index 43d4f285..0cda7ce5 100644 --- a/contracts/liquidity_hub/bonding-manager/schema/raw/execute.json +++ b/contracts/liquidity_hub/bonding-manager/schema/raw/execute.json @@ -116,6 +116,28 @@ "claim" ] }, + { + "description": "Claims the available rewards on behalf of the specified address. Only executable by the contract.", + "type": "object", + "required": [ + "claim_for_addr" + ], + "properties": { + "claim_for_addr": { + "type": "object", + "required": [ + "address" + ], + "properties": { + "address": { + "type": "string" + } + }, + "additionalProperties": false + } + }, + "additionalProperties": false + }, { "description": "Fills the contract with new rewards.", "type": "string",