Skip to main content

Interact with Dydx

in src/main.rs:

src/main.rs
use kilnfi_connect_rs::Kiln;
use kilnfi_connect_rs::dydx::NobleIBCTransferRequest;

fn main() -> Result<(), Box<dyn std::error::Error>> {
let api_token: String = std::env::var("KILN_API_TOKEN")
.expect("KILN_API_TOKEN is not set in the environment. It is required.");

let kiln: Kiln = Kiln::builder()
.api_token(api_token)
// no trailing slash, or else it will break
.base_url("https://api.kiln.fi/v1")
.seal()
.build()?;

// The addresses are just examples.
// PLEASE DO NOT USE THESE ADDRESSES IN PRODUCTION UNLESS THESE ARE YOURS BY SOME ACCIDENT
let _data = kiln.dydx().noble_ibc_transfer(&NobleIBCTransferRequest{
pubkey: String::from("dydx160n4rwm854v06ppkly2pt0zc9rpwlm5y0kyjtc"),
amount_uusdc: String::from("100"),
})


Ok(())
}