Smart Contracts
Our contracts are written in Move and deployed on the Sui Network.
market.move
module rentflow::market {
struct Listing<T: key + store> has key, store {
id: UID,
owner: address,
price_per_day: u64,
...
public entry fun rent_item(...) {
// Logic for zero-collateral rental
}
