dist_agent_lang 1.0.20

Agentic programming with library and CLI support for Off/On-chain network integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
@trust("hybrid")
@chain("ethereum", "solana")
service Test {
    fn test(token_ids: list<int>) -> bool {
        if (token_ids.length() > 10) {
            return false;
        }
        return true;
    }
}