Hi,
I’m new bie, im created a function with generic type so how does call this function via sui cli?
code sample
public entry fun new<T>(
ctx: &mut TxContext,
) {
let pool = Pool {
id: object::new(ctx),
treasury: balance::zero<T>(),
};
transfer::share_object(pool);
}
Thanks