The Movement blockchain introduces Smart Tables, a powerful data structure designed for efficient and flexible key-value storage in decentralized applications. Smart Tables enable developers to manage and manipulate data in a structured and scalable way, making them an essential tool for building advanced smart contracts.
This README provides a detailed guide on how to use Smart Tables in the Movement blockchain ecosystem.
Smart Tables are key-value stores that allow developers to map keys to corresponding values. They are ideal for:
- Storing user-specific data or configurations.
- Managing large datasets with efficient lookup and modification capabilities.
- Implementing custom indexing mechanisms for complex logic.
To use Smart Tables, include them in your module or script with the following import statement:
use aptos_std::smart_table;
You can initialize an empty Smart Table using the smart_table::new<K, V>()
function, where K
is the type of the key, and V
is the type of the value.
fun create_empty_smart_table(): smart_table<u64, u64> {
smart_table::new<u64, u64>()
}
Use smart_table::add
to add a key-value pair to the Smart Table.
fun add_entry(my_table: &mut smart_table<u64, u64>, key: u64, value: u64) {
smart_table::add(my_table, key, value);
}
If user add a new record or modify an existing record then one can call smart_table::upsert
.
fun upsert_entry(my_table: &mut smart_table<u64, u64>, key: u64, value: u64) {
smart_table::upsert(my_table, key, value);
}
Retrieve a value for a specific key using smart_table::borrow
.
fun get_value(my_table: &smart_table<u64, u64>, key: u64): u64 {
*smart_table::borrow(my_table, key)
}
In case of mutable reference one can replace borrow_mut
with borrow
.
Use smart_table::remove
to delete a key-value pair from the table.
fun remove_entry(my_table: &mut smart_table<u64, u64>, key: u64): u64 {
smart_table::remove(my_table, key)
}
To determine the number of entries in a Smart Table, use smart_table::length
.
fun table_size(my_table: &smart_table<u64, u64>): u64 {
smart_table::length(my_table)
}
You can iterate through the key-value pairs in a Smart Table using smart_table::for_each_ref
.
fun iterate_table(my_table: &smart_table<u64, u64>) {
smart_table::for_each_ref(my_table, |key, value| {
// Process key-value pairs
// key and value has type &u64
});
}
Clear all entries from a Smart Table.
fun clear_table(my_table: &mut smart_table<u64, u64>) {
smart_table::clear(my_table)
}
Combine two Smart Tables by iterating through one and adding its entries to the other.
fun merge_tables(t1: &mut smart_table<u64, u64>, t2: &smart_table<u64, u64>) {
smart_table::for_each_ref(t2, |key, value| {
smart_table::upsert(t1, *key, *value);
});
}
Implement custom logic to handle key collisions if necessary. For example, you can append values or overwrite them based on your requirements.
- Unique Keys: Ensure keys are unique to avoid unintended overwrites.
- Efficient Lookups: Use appropriate key types for quick retrieval.
- Error Handling: Handle missing keys gracefully to avoid runtime errors.
- Memory Management: Regularly clear unused entries to optimize storage.
Smart Tables in the Movement blockchain provide a robust and flexible way to manage key-value data structures. Understanding their functionality and best practices will help you design efficient and reliable smart contracts.