π¨βπ»Technical Deep dive
contracts
Detailed Explanation of Aptos Smart Contracts
Overview
1. User Registration Module
module registry::user_registration {
use std::signer;
use std::string;
use std::error;
use aptos_framework::event;
#[test_only]
use std::debug;struct UserRegistry has key {
user_id: string::String,
}2. Random Number Generation Module
3. Aggregation Module
Last updated