web3agent-aof
Version:
AI Framework for Onchain Operations and DeFi Interactions
14 lines (13 loc) • 490 B
TypeScript
import { type Asset } from 'fuels';
export declare const getVerifiedAssets: () => Promise<Asset[]>;
export declare const getAssetIdAndDecimals: (symbol: string, assets: Asset[]) => Promise<{
assetId: any;
decimals: any;
}>;
export declare const getAllVerifiedSymbols: (assets: Asset[]) => Promise<any[]>;
export type FuelAgentAsset = {
symbol: string;
assetId: string;
decimals: number;
};
export declare const getAllVerifiedFuelAssets: () => Promise<FuelAgentAsset[]>;