mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
Add Maker
This commit is contained in:
parent
a9f48419e7
commit
3170d354ce
40
README.md
40
README.md
|
@ -14,6 +14,12 @@ You can create a PR to request a support for specific protocol or external contr
|
||||||
|
|
||||||
**Open a Maker vault** of the `collateralType`. E.g. "ETH-A", "USDC-B", etc...
|
**Open a Maker vault** of the `collateralType`. E.g. "ETH-A", "USDC-B", etc...
|
||||||
|
|
||||||
|
### `close(vault)`
|
||||||
|
|
||||||
|
**Close a Maker vault**
|
||||||
|
|
||||||
|
`vault` - Vault ID (Use 0 for last opened vault)
|
||||||
|
|
||||||
### `deposit(vault, amt, getId, setId)`
|
### `deposit(vault, amt, getId, setId)`
|
||||||
|
|
||||||
**Deposit collateral to a Maker vault.**
|
**Deposit collateral to a Maker vault.**
|
||||||
|
@ -29,3 +35,37 @@ You can create a PR to request a support for specific protocol or external contr
|
||||||
`vault` - Vault ID (Use 0 for last opened vault)
|
`vault` - Vault ID (Use 0 for last opened vault)
|
||||||
|
|
||||||
`amt` - Amount of collteral to withdraw
|
`amt` - Amount of collteral to withdraw
|
||||||
|
|
||||||
|
### `borrow(vault, amt, getId, setId)`
|
||||||
|
|
||||||
|
**Borrow DAI from a Maker vault.**
|
||||||
|
|
||||||
|
`vault` - Vault ID (Use 0 for last opened vault)
|
||||||
|
|
||||||
|
`amt` - Amount of DAI to borrow
|
||||||
|
|
||||||
|
### `payback(vault, amt, getId, setId)`
|
||||||
|
|
||||||
|
**Payback DAI to a Maker vault.**
|
||||||
|
|
||||||
|
`vault` - Vault ID (Use 0 for last opened vault)
|
||||||
|
|
||||||
|
`amt` - Amount of DAI to payback
|
||||||
|
|
||||||
|
### `withdrawLiquidated(vault, amt, getId, setId)`
|
||||||
|
|
||||||
|
**Withdraw leftover collateral after liquidation.**
|
||||||
|
|
||||||
|
`vault` - Vault ID (Use 0 for last opened vault)
|
||||||
|
|
||||||
|
`amt` - Amount of collateral to withdraw
|
||||||
|
|
||||||
|
### `depositAndBorrow(vault, depositAmt, borrowAmt, getIdDeposit, getIdBorrow, setIdDeposit, setIdBorrow)`
|
||||||
|
|
||||||
|
**Deposit collateral & borrow DAI from a vault.**
|
||||||
|
|
||||||
|
`vault` - Vault ID (Use 0 for last opened vault)
|
||||||
|
|
||||||
|
`depositAmt` - Amount of collateral to deposit
|
||||||
|
|
||||||
|
`borrowAmt` - Amount of DAI to borrow
|
||||||
|
|
Loading…
Reference in New Issue
Block a user