sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
17 lines • 537 B
TypeScript
import { type Hash } from 'viem';
import { SeiAgentKit } from '../../agent';
export interface RepayTakaraParams {
ticker: string;
repayAmount: string;
}
/**
* Repays borrowed tokens to the Takara Protocol
* @param agent SeiAgentKit instance
* @param params Parameters for repaying
* @returns Transaction hash and amount repaid
*/
export declare function repayTakara(agent: SeiAgentKit, { ticker, repayAmount }: RepayTakaraParams): Promise<{
txHash: Hash;
repaidAmount: string;
}>;
//# sourceMappingURL=repay.d.ts.map