-
Notifications
You must be signed in to change notification settings - Fork 4
/
thezeostoken.cpp
174 lines (143 loc) · 5.72 KB
/
thezeostoken.cpp
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include "thezeostoken.hpp"
thezeostoken::thezeostoken(name self, name code, datastream<const char *> ds) :
contract(self, code, ds)
{
}
void thezeostoken::create(const name& issuer, const asset& maximum_supply)
{
require_auth(_self);
auto sym = maximum_supply.symbol;
check(sym.is_valid(), "invalid symbol name");
check(maximum_supply.is_valid(), "invalid supply");
check(maximum_supply.amount > 0, "max-supply must be positive");
stats statstable(_self, sym.code().raw());
auto existing = statstable.find(sym.code().raw());
check(existing == statstable.end(), "token with symbol already exists");
statstable.emplace(_self, [&](auto& s) {
s.supply.symbol = maximum_supply.symbol;
s.max_supply = maximum_supply;
s.issuer = issuer;
});
}
void thezeostoken::issue(const name& to, const asset& quantity, const string& memo)
{
auto sym = quantity.symbol;
check(sym.is_valid(), "invalid symbol name");
check(memo.size() <= 256, "memo has more than 256 bytes");
stats statstable(_self, sym.code().raw());
auto existing = statstable.find(sym.code().raw());
check(existing != statstable.end(), "token with symbol does not exist, create token before issue");
const auto& st = *existing;
require_auth(st.issuer);
check(quantity.is_valid(), "invalid quantity");
check(quantity.amount > 0, "must issue positive quantity");
check(quantity.symbol == st.supply.symbol, "symbol precision mismatch");
check(quantity.amount <= st.max_supply.amount - st.supply.amount, "quantity exceeds available supply");
statstable.modify(st, same_payer, [&](auto& s) {
s.supply += quantity;
});
add_balance(st.issuer, quantity, st.issuer);
if(to != st.issuer) {
SEND_INLINE_ACTION(*this, transfer, {st.issuer,"active"_n}, {st.issuer, to, quantity, memo});
}
}
void thezeostoken::retire(const asset& quantity, const string& memo)
{
auto sym = quantity.symbol;
check(sym.is_valid(), "invalid symbol name");
check(memo.size() <= 256, "memo has more than 256 bytes");
stats statstable(_self, sym.code().raw());
auto existing = statstable.find(sym.code().raw());
check(existing != statstable.end(), "token with symbol does not exist");
const auto& st = *existing;
require_auth(st.issuer);
check(quantity.is_valid(), "invalid quantity");
check(quantity.amount > 0, "must retire positive quantity");
check(quantity.symbol == st.supply.symbol, "symbol precision mismatch");
statstable.modify(st, same_payer, [&](auto& s) {
s.supply -= quantity;
});
sub_balance(st.issuer, quantity);
}
void thezeostoken::transfer(const name& from, const name& to, const asset& quantity, const string& memo)
{
check(from != to, "cannot transfer to self");
//require_auth(from);
check(has_auth(from) || has_auth(_self), "missing authority");
check(is_account(to), "to account does not exist");
auto sym = quantity.symbol.code().raw();
stats statstable(_self, sym);
const auto& st = statstable.get(sym);
require_recipient(from);
require_recipient(to);
check(quantity.is_valid(), "invalid quantity");
check(quantity.amount > 0, "must transfer positive quantity");
check(quantity.symbol == st.supply.symbol, "symbol precision mismatch");
check(memo.size() <= 256, "memo has more than 256 bytes");
sub_balance(from, quantity);
add_balance(to, quantity, from);
}
void thezeostoken::open(const name& owner, const symbol& symbol, const name& ram_payer)
{
require_auth(ram_payer);
check(is_account(owner), "owner account does not exist");
auto sym_code_raw = symbol.code().raw();
stats statstable(get_self(), sym_code_raw);
const auto& st = statstable.get(sym_code_raw, "symbol does not exist");
check(st.supply.symbol == symbol, "symbol precision mismatch");
accounts acnts(get_self(), owner.value);
auto it = acnts.find(sym_code_raw);
if(it == acnts.end()) {
acnts.emplace(ram_payer, [&](auto& a){
a.balance = asset{0, symbol};
});
}
}
void thezeostoken::close(const name& owner, const symbol& symbol)
{
require_auth(owner);
accounts acnts(get_self(), owner.value);
auto it = acnts.find(symbol.code().raw());
check(it != acnts.end(), "Balance row already deleted or never existed. Action won't have any effect.");
check(it->balance.amount == 0, "Cannot close because the balance is not zero.");
acnts.erase(it);
}
void thezeostoken::add_balance(const name& owner, const asset& value, const name& ram_payer)
{
accounts to_acnts(_self, owner.value);
auto to = to_acnts.find(value.symbol.code().raw());
if(to == to_acnts.end()) {
to_acnts.emplace(ram_payer, [&](auto& a){
a.balance = value;
});
} else {
to_acnts.modify(to, same_payer, [&](auto& a) {
a.balance += value;
});
}
}
void thezeostoken::sub_balance(const name& owner, const asset& value)
{
accounts from_acnts(_self, owner.value);
const auto& from = from_acnts.get(value.symbol.code().raw(), "no balance object found");
check(from.balance.amount >= value.amount, "overdrawn balance");
if(from.balance.amount == value.amount) {
from_acnts.erase(from);
} else {
from_acnts.modify(from, same_payer, [&](auto& a) {
a.balance -= value;
});
}
}
asset thezeostoken::get_supply(const symbol_code& sym) const
{
stats statstable(_self, sym.raw());
const auto& st = statstable.get(sym.raw());
return st.supply;
}
asset thezeostoken::get_balance(const name& owner, const symbol_code& sym) const
{
accounts accountstable(_self, owner.value);
const auto& ac = accountstable.get(sym.raw());
return ac.balance;
}