LEND
Deposit Fraxswap LP tokens into a BAMM contract to enable borrowing and liquidity management on the Fraxtal blockchain.
Instructions
Lend Fraxswap LP tokens to a BAMM contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount of LP tokens to lend | |
bammAddress | Yes | The address of the BAMM contract |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount of LP tokens to lend",
"minLength": 1,
"type": "string"
},
"bammAddress": {
"description": "The address of the BAMM contract",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"bammAddress",
"amount"
],
"type": "object"
}