BORROW
Borrow tokens directly from a BAMM position on the Fraxtal blockchain by specifying the BAMM contract address, token details, and desired amount. Simplify borrowing against LP tokens using this tool.
Instructions
Borrow tokens from a BAMM position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount to borrow | |
bammAddress | Yes | The address of the BAMM contract | |
borrowToken | No | The address of the token to borrow | |
borrowTokenSymbol | No | The symbol of the token to borrow (e.g., 'IQT') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount to borrow",
"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 borrow",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"borrowTokenSymbol": {
"description": "The symbol of the token to borrow (e.g., 'IQT')",
"type": "string"
}
},
"required": [
"bammAddress",
"amount"
],
"type": "object"
}