Example with emitting event contains provided number:
script {
use 0x1::Event;
fun main(account: &signer, a: u64) {
Event::emit<u64>(account, a);
}
}
Or you you can emit event from your module:
module MyEvent {
use 0x1::Event;
struct MyStruct {
value: u64
}
public fun my_event(account: &signer, a: u64) {
Event::emit(account, MyStruct {
value: a
});
}
}
Signer
Signer module allows to work with the signer type. To get address of signer:
script {
use 0x1::Signer;
fun main(sender: &signer) {
let _ = Signer::address_of(sender);
}
}
Signer type is required for functions which work with resources, address of signer could be useful in case of resource related functions: borrow_global, borrow_global_mut, exists, move_from.
Account module allows to work with user balances: get balances, deposit coins/tokens to balances, withdraw them to deposit in another module, etc.
Also, it creates an account, if the account doesn't exist yet, and related data, like event handlers for sending/receiving payments.
A lot of different methods can be used to send tokens from account A to account B, as these one-line methods:
script {
use 0x1::Account;
use 0x1::XFI;
fun main(sender: &signer, payee: address, amount: u128, metadata: vector<u8>) {
// Move XFI from sender account to payee.
Account::pay_from_sender<XFI::T>(sender, payee, amount);
// Again move XFI, but with metadata.
Account::pay_from_sender_with_metadata<XFI::T>(sender, payee, amount, metadata);
}
}
Also, you can just withdraw from sender balance and deposit to payee:
script {
use 0x1::Account;
use 0x1::XFI;
fun main(sender: &signer, payee: address, amount: u128) {
// Move XFI from sender account to payee.
let xfi = Account::withdraw_from_sender<XFI::T>(sender, amount);
// Again move XFI, but with metadata.
Account::deposit(sender, payee, xfi);
}
}
Or deposit to another module:
script {
use {{address}}::Swap;
use 0x1::XFI;
use 0x1::Coins;
use 0x1::Account;
fun main(sender: &signer, seller: address, price: u128) {
let xfi = Account::withdraw_from_sender(sender, price);
// Deposit USDT to swap coins.
Swap::swap<Coins::USDT, XFI::T>(sender, seller, xfi);
}
}
Also, get a balance:
script {
use 0x1::Coins;
use 0x1::Account;
fun main(sender: &signer, addr: address) {
// My balance.
let my_balance = Account::balance<Coins::ETH>(sender);
// Someone balance.
let someone_balance = Account::balance_for<Coins::ETH>(addr);
assert(my_balance > 0, 101);
assert(someone_balance > 0, 102);
}
}
For the rest of the features of Account module look at account.move.
Dfinance
Dfinance module allows you to work with coins balances, get coins info, also register new tokens, etc.
First of all, Dfinance module presents type for all balances in the system, it's Dfinance::T:
resource struct T<Coin> {
value: u128
}
The value field contains information about actual balance for specific coin/token, e.g.:
script {
use 0x1::Account;
use 0x1::XFI;
fun main(sender: &signer, amount: u128) {
// Use XFI::T to get Dfinance::T<XFI::T> contains balance.
let xfi : 0x1::Dfinance::T<XFI::T> = Account::withdraw_from_sender<XFI::T>(sender, amount);
Account::deposit_to_sender(sender, xfi);
}
}
Also, you can create an empty coin:
module BankXFI {
use 0x1::Dfinance;
use 0x1::XFI;
resource struct T {
balance: Dfinance::T<XFI::T>,
}
public fun create(account: &signer) {
move_to<T>(account, T {
balance: Dfinance::zero<XFI::T>()
})
}
}
Get denom, decimals, and actual value:
script {
use 0x1::Dfinance;
use 0x1::Account;
use 0x1::XFI;
fun main(sender: &signer, amount: u128) {
let xfi = Account::withdraw_from_sender<XFI::T>(sender, amount);
// Get denom vector<8>.
let _ = Dfinance::denom<XFI::T>();
// Get value of withdrawed xfi.
let value = Dfinance::value(&xfi);
assert(amount == value, 101);
Account::deposit_to_sender(sender, xfi);
}
}
And check if it's user token or system coin:
script {
use {{address}}::MyToken;
use 0x1::Dfinance;
use 0x1::XFI;
fun main() {
assert(Dfinance::is_token<XFI::T>() == false, 101);
assert(Dfinance::is_token<MyToken::T>(), 102);
}
}
Also, you can create your resource and make it token too!
module MyToken {
use 0x1::Dfinance;
resource struct Token {
}
public fun create(account: &signer): Dfinance::T<Token> {
// Create new token with denom "wow" (hex == 776f77).
Dfinance::tokenize<Token>(account, 10, 0, x"776f77")
}
}
And also deposit it to your balance:
script {
use {{sender}}::MyToken;
use 0x1::Account;
fun main(sender: &signer) {
let new_tokens = MyToken::create(sender);
Account::deposit_to_sender(sender, new_tokens);
}
}
More documentation about the feature provided by Dfinance module see in dfinance.move.
Vector
Vector module contains functions to work with vector type.
For example:
script {
use 0x1::Vector;
fun main() {
let v = Vector::empty<u64>();
let i = 0;
loop {
if (i == 10) {
break
};
Vector::push_back(&mut v, i);
i = i + 1;
};
}
}