YearnAPI
All URIs are relative to https://beta.usemoon.ai
Method
HTTP request
Description
POST /yearn/{name}/add-liquidity
POST /yearn/{name}/add-liquidity-weth
POST /yearn/{name}/remove-liquidity
POST /yearn/{name}/remove-liquidity-weth
addLiquidity
open class func addLiquidity(authorization: String, name: String, inputBody: InputBody, completion: @escaping (_ data: TransactionAPIResponse?, _ error: Error?) -> Void)
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let authorization = "authorization_example" // String |
let name = "name_example" // String |
let inputBody = InputBody(to: "to_example", data: "data_example", input: "input_example", value: "value_example", nonce: "nonce_example", gas: "gas_example", gasPrice: "gasPrice_example", chainId: "chainId_example", encoding: "encoding_example", EOA: false, contractAddress: "contractAddress_example", tokenId: "tokenId_example", tokenIds: "tokenIds_example", approved: false, broadcast: false) // InputBody |
YearnAPI.addLiquidity(authorization: authorization, name: name, inputBody: inputBody) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Parameters
Return type
TransactionAPIResponse
Authorization
ApiKeyAuth, BearerAuth
Content-Type: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addLiquidityWeth
open class func addLiquidityWeth(authorization: String, name: String, inputBody: InputBody, completion: @escaping (_ data: TransactionAPIResponse?, _ error: Error?) -> Void)
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let authorization = "authorization_example" // String |
let name = "name_example" // String |
let inputBody = InputBody(to: "to_example", data: "data_example", input: "input_example", value: "value_example", nonce: "nonce_example", gas: "gas_example", gasPrice: "gasPrice_example", chainId: "chainId_example", encoding: "encoding_example", EOA: false, contractAddress: "contractAddress_example", tokenId: "tokenId_example", tokenIds: "tokenIds_example", approved: false, broadcast: false) // InputBody |
YearnAPI.addLiquidityWeth(authorization: authorization, name: name, inputBody: inputBody) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Parameters
Return type
TransactionAPIResponse
Authorization
ApiKeyAuth, BearerAuth
Content-Type: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
removeLiquidity
open class func removeLiquidity(authorization: String, name: String, inputBody: InputBody, completion: @escaping (_ data: TransactionAPIResponse?, _ error: Error?) -> Void)
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let authorization = "authorization_example" // String |
let name = "name_example" // String |
let inputBody = InputBody(to: "to_example", data: "data_example", input: "input_example", value: "value_example", nonce: "nonce_example", gas: "gas_example", gasPrice: "gasPrice_example", chainId: "chainId_example", encoding: "encoding_example", EOA: false, contractAddress: "contractAddress_example", tokenId: "tokenId_example", tokenIds: "tokenIds_example", approved: false, broadcast: false) // InputBody |
YearnAPI.removeLiquidity(authorization: authorization, name: name, inputBody: inputBody) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Parameters
Return type
TransactionAPIResponse
Authorization
ApiKeyAuth, BearerAuth
Content-Type: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
removeLiquidityWeth
open class func removeLiquidityWeth(authorization: String, name: String, inputBody: InputBody, completion: @escaping (_ data: TransactionAPIResponse?, _ error: Error?) -> Void)
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let authorization = "authorization_example" // String |
let name = "name_example" // String |
let inputBody = InputBody(to: "to_example", data: "data_example", input: "input_example", value: "value_example", nonce: "nonce_example", gas: "gas_example", gasPrice: "gasPrice_example", chainId: "chainId_example", encoding: "encoding_example", EOA: false, contractAddress: "contractAddress_example", tokenId: "tokenId_example", tokenIds: "tokenIds_example", approved: false, broadcast: false) // InputBody |
YearnAPI.removeLiquidityWeth(authorization: authorization, name: name, inputBody: inputBody) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Parameters
Return type
TransactionAPIResponse
Authorization
ApiKeyAuth, BearerAuth
Content-Type: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]