REPAY
Repay borrowed tokens to a BAMM position on the Fraxtal blockchain. Manage your BAMM contract loans by specifying the token address, amount, and contract details.
Instructions
Repay borrowed tokens to a BAMM position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount to repay | |
bammAddress | Yes | The address of the BAMM contract | |
borrowToken | No | The address of the token to repay | |
borrowTokenSymbol | No | The symbol of the token to repay (e.g., 'IQT') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount to repay",
"minLength": 1,
"type": "string"
},
"bammAddress": {
"description": "The address of the BAMM contract",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"borrowToken": {
"description": "The address of the token to repay",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"borrowTokenSymbol": {
"description": "The symbol of the token to repay (e.g., 'IQT')",
"type": "string"
}
},
"required": [
"bammAddress",
"amount"
],
"type": "object"
}