-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathliquidrextok.cpp
More file actions
273 lines (215 loc) · 7.98 KB
/
Copy pathliquidrextok.cpp
File metadata and controls
273 lines (215 loc) · 7.98 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#include "liquidrextok.hpp"
void liquidrextok::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 liquidrextok::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;
check(to == st.issuer, "tokens can only be issued to issuer account");
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);
}
void liquidrextok::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 liquidrextok::transfer(const name from,
const name to,
const asset quantity,
const string memo)
{
check(from != to, "cannot transfer to self");
require_auth(from);
check(is_account(to), "to account does not exist");
auto sym = quantity.symbol.code();
stats statstable(_self, sym.raw());
const auto &st = statstable.get(sym.raw());
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");
auto payer = has_auth(to) ? to : from;
sub_balance(from, quantity);
add_balance(to, quantity, payer);
if (to == _self)
{
liquidrextok::retire_action retire(_self, {_self, "active"_n});
liquidrextok::rex_sellrex_action sellrex(EOSIO_CONTRACT, {_self, "active"_n});
liquidrextok::redeemrex_action redeemrex(_self, {_self, "active"_n});
retire.send(quantity, "redeem REX tokens");
sellrex.send(_self, quantity);
redeemrex.send(from);
}
}
void liquidrextok::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 (liquidrextok)");
from_acnts.modify(from, owner, [&](auto &a)
{ a.balance -= value; });
}
void liquidrextok::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 liquidrextok::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(_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(_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 liquidrextok::close(const name &owner, const symbol &symbol)
{
require_auth(owner);
accounts acnts(_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 liquidrextok::test(const name &from)
{
}
int64_t liquidrextok::get_core_balance()
{
accounts accs(EOSIO_TOKEN_CONTRACT, _self.value);
int64_t balance = 0;
auto it = accs.find(EOSIO_CORE_SYMBOL.code().raw());
if (it != accs.end())
{
balance = it->balance.amount;
}
return balance;
}
int64_t liquidrextok::get_rex_balance()
{
liquidrextok::rex_balance_table rexbalance(EOSIO_CONTRACT, EOSIO_CONTRACT.value);
int64_t balance = 0;
auto it = rexbalance.find(_self.value);
if (it != rexbalance.end())
{
balance = it->rex_balance.amount;
}
return balance;
}
void liquidrextok::issuerex(name from, name to, asset quantity, string memo)
{
if (from == _self)
return; // sending tokens, ignore
if (from == EOSIO_REX_CONTRACT)
return; // ignore redeeming from rex
check(to == _self, "stop trying to hack the contract");
check(quantity.amount > 0, "quantity amount must be greater than zero");
int64_t balance = this->get_rex_balance();
liquidrextok::rex_deposit_action deposit(EOSIO_CONTRACT, {_self, "active"_n});
liquidrextok::rex_buyrex_action buyrex(EOSIO_CONTRACT, {_self, "active"_n});
liquidrextok::issuerex2_action issuerex2(_self, {_self, "active"_n});
deposit.send(_self, quantity);
buyrex.send(_self, quantity);
issuerex2.send(from, balance);
}
void liquidrextok::issuerex2(name recipient, int64_t rex_balance)
{
require_auth(_self);
int64_t balance = this->get_rex_balance();
check(balance > rex_balance, "rex balance did not increase");
eosio::asset quantity(balance - rex_balance, eosio::symbol("REX", 4));
liquidrextok::issue_action issue(_self, {_self, "active"_n});
liquidrextok::transfer_action transfer(_self, {_self, "active"_n});
issue.send(_self, quantity, "mint new tokens");
transfer.send(_self, recipient, quantity, "transfer new tokens to recipient");
}
void liquidrextok::redeemrex(name recipient)
{
require_auth(_self);
int64_t balance = this->get_core_balance();
liquidrextok::rex_fund_table rexfund(EOSIO_CONTRACT, EOSIO_CONTRACT.value);
auto it = rexfund.find(_self.value);
check(it != rexfund.end(), "no rexfund found");
liquidrextok::rex_withdraw_action withdraw(EOSIO_CONTRACT, {_self, "active"_n});
liquidrextok::transfer_action transfer(EOSIO_TOKEN_CONTRACT, {_self, "active"_n});
withdraw.send(_self, it->balance);
transfer.send(_self, recipient, it->balance, "redeem REX tokens");
}
extern "C" void apply(uint64_t receiver, uint64_t code, uint64_t action)
{
if (code != receiver)
{
if (code == EOSIO_TOKEN_CONTRACT.value && action == ("transfer"_n).value)
{
eosio::execute_action(eosio::name(receiver), eosio::name(code), &liquidrextok::issuerex);
}
}
else if (code == receiver)
{
//
// Self dispatched actions (callable contract methods)
//
switch (action)
{
EOSIO_DISPATCH_HELPER(liquidrextok, (create)(issue)(retire)(transfer)(open)(close)(test)(issuerex2)(redeemrex));
}
}
}