-
Notifications
You must be signed in to change notification settings - Fork 40
/
eosio.token.hpp
92 lines (69 loc) · 2 KB
/
eosio.token.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
* @file
* @copyright defined in eos/LICENSE.txt
*/
#pragma once
#include <eosiolib/asset.hpp>
#include <eosiolib/eosio.hpp>
#include <string>
namespace eosiosystem
{
class system_contract;
}
namespace eosio
{
using std::string;
class token : public contract
{
public:
token(account_name self) : contract(self) {}
void create(account_name issuer,
asset maximum_supply);
void issue(account_name to, asset quantity, string memo);
void retire(asset quantity, string memo);
void transfer(account_name from,
account_name to,
asset quantity,
string memo);
void close(account_name owner, symbol_type symbol);
inline asset get_supply(symbol_name sym) const;
inline asset get_balance(account_name owner, symbol_name sym) const;
private:
struct account
{
asset balance;
uint64_t primary_key() const { return balance.symbol.name(); }
};
struct currency_stats
{
asset supply;
asset max_supply;
account_name issuer;
uint64_t primary_key() const { return supply.symbol.name(); }
};
typedef eosio::multi_index<N(accounts), account> accounts;
typedef eosio::multi_index<N(stat), currency_stats> stats;
void sub_balance(account_name owner, asset value);
void add_balance(account_name owner, asset value, account_name ram_payer);
public:
struct transfer_args
{
account_name from;
account_name to;
asset quantity;
string memo;
};
};
asset token::get_supply(symbol_name sym) const
{
stats statstable(_self, sym);
const auto &st = statstable.get(sym);
return st.supply;
}
asset token::get_balance(account_name owner, symbol_name sym) const
{
accounts accountstable(_self, owner);
const auto &ac = accountstable.get(sym);
return ac.balance;
}
} // namespace eosio