UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

10 lines 253 B
export async function isContract(agent, address) { try { const code = await agent.publicClient.getCode({ address }); return code !== '0x'; } catch (error) { return false; } } //# sourceMappingURL=isContract.js.map