sui-move-patterns

Installation
SKILL.md

1. Events

Emit events for all state-changing operations that clients need to observe:

use sui::event;

public struct LiquidityAdded has copy, drop {
    pool_id: ID,
    amount_x: u64,
    amount_y: u64,
    lp_minted: u64,
}
Installs
3
GitHub Stars
3
First Seen
May 7, 2026
sui-move-patterns — widnyana/eyay-toolkits