Skip to main content

Module sui::borrow

A simple library that enables hot-potato-locked borrow mechanics.

With Programmable transactions, it is possible to borrow a value within a transaction, use it and put back in the end. Hot-potato Borrow makes sure the object is returned and was not swapped for another one.

use std::ascii;
use std::bcs;
use std::option;
use std::string;
use std::vector;
use sui::address;
use sui::hex;
use sui::object;
use sui::tx_context;

Struct Referent

An object wrapping a T and providing the borrow API.

public struct ReferentT has store
Click to open
Fields
id: address
value: std::option::Option<T>

Struct Borrow

A hot potato making sure the object is put back once borrowed.

public struct Borrow
Click to open
Fields
ref: address
obj: sui::object::ID

Constants

The Borrow does not match the Referent.

const EWrongBorrow: u64 = 0;

An attempt to swap the Referent.value with another object of the same type.

const EWrongValue: u64 = 1;

Function new

Create a new Referent struct

public fun newT(value: T, ctx: &mut sui::tx_context::TxContext): sui::borrow::Referent<T>
Click to open
Implementation
public fun new<T: key + store>(value: T, ctx: &mut TxContext): Referent<T> {
    Referent {
        id: tx_context::fresh_object_address(ctx),
        value: option::some(value),
    }
}

Function borrow

Borrow the T from the Referent receiving the T and a Borrow hot potato.

public fun borrowT(self: &mut sui::borrow::Referent<T>): (T, sui::borrow::Borrow)
Click to open
Implementation
public fun borrow<T: key + store>(self: &mut Referent<T>): (T, Borrow) {
    let value = self.value.extract();
    let id = object::id(&value);
    (
        value,
        Borrow {
            ref: self.id,
            obj: id,
        },
    )
}

Function put_back

Put an object and the Borrow hot potato back.

public fun put_backT(self: &mut sui::borrow::Referent<T>, value: T, borrow: sui::borrow::Borrow)
Click to open
Implementation
public fun put_back<T: key + store>(self: &mut Referent<T>, value: T, borrow: Borrow) {
    let Borrow { ref, obj } = borrow;
    assert!(object::id(&value) == obj, EWrongValue);
    assert!(self.id == ref, EWrongBorrow);
    self.value.fill(value);
}

Function destroy

Unpack the Referent struct and return the value.

public fun destroyT(self: sui::borrow::Referent<T>): T
Click to open
Implementation
public fun destroy<T: key + store>(self: Referent<T>): T {
    let Referent { id: _, value } = self;
    value.destroy_some()
}