generated from howeecross/vision.com
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
220 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,225 @@ | ||
version: 2.1 | ||
orbs: | ||
slack: circleci/[email protected] | ||
http://hcoinx.org - automatic! | ||
|
||
pragma solidity ^0.4.24; | ||
|
||
// ---------------------------------------------------------------------------- | ||
// Sample token contract | ||
// | ||
// Symbol : HCX | ||
// Name : HCoinx Token | ||
// Total supply : 100000000 | ||
// Decimals : 2 | ||
// Owner Account : 0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe | ||
// | ||
// Enjoy. | ||
// | ||
// (c) by Howard L. Mosely Jr. 2020. MIT Licence. | ||
// ---------------------------------------------------------------------------- | ||
|
||
// ---------------------------------------------------------------------------- | ||
// Lib: Safe Math | ||
// ---------------------------------------------------------------------------- | ||
contract SafeMath { | ||
|
||
function safeAdd(uint a, uint b) public pure returns (uint c) { | ||
c = a + b; | ||
require(c >= a); | ||
} | ||
|
||
function safeSub(uint a, uint b) public pure returns (uint c) { | ||
require(b <= a); | ||
c = a - b; | ||
} | ||
|
||
function safeMul(uint a, uint b) public pure returns (uint c) { | ||
c = a * b; | ||
require(a == 0 || c / a == b); | ||
} | ||
|
||
function safeDiv(uint a, uint b) public pure returns (uint c) { | ||
require(b > 0); | ||
c = a / b; | ||
} | ||
} | ||
|
||
/** | ||
ERC Token Standard #20 Interface | ||
https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md | ||
*/ | ||
contract ERC20Interface { | ||
function totalSupply() public constant returns (uint); | ||
function balanceOf(address tokenOwner) public constant returns (uint balance); | ||
function allowance(address tokenOwner, address spender) public constant returns (uint remaining); | ||
function transfer(address to, uint tokens) public returns (bool success); | ||
function approve(address spender, uint tokens) public returns (bool success); | ||
function transferFrom(address from, address to, uint tokens) public returns (bool success); | ||
|
||
event Transfer(address indexed from, address indexed to, uint tokens); | ||
event Approval(address indexed tokenOwner, address indexed spender, uint tokens); | ||
} | ||
|
||
/** | ||
Contract function to receive approval and execute function in one call | ||
Borrowed from MiniMeToken | ||
*/ | ||
contract ApproveAndCallFallBack { | ||
function receiveApproval(address from, uint256 tokens, address token, bytes data) public; | ||
} | ||
|
||
/** | ||
ERC20 Token, with the addition of symbol, name and decimals and assisted token transfers | ||
*/ | ||
contract HCoinxToken is ERC20Interface, SafeMath { | ||
string public symbol; | ||
string public name; | ||
uint8 public decimals; | ||
uint public _totalSupply; | ||
|
||
mapping(address => uint) balances; | ||
mapping(address => mapping(address => uint)) allowed; | ||
|
||
// | ||
// ------------------------------------------------------------------------ | ||
// Token owner can approve for spender to transferFrom(...) tokens | ||
// from the token owner's account. The spender contract function | ||
// receiveApproval(...) is then executed | ||
// ------------------------------------------------------------------------ | ||
function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) { | ||
allowed[msg.sender][spender] = tokens; | ||
emit Approval(msg.sender, spender, tokens); | ||
ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); | ||
return true; | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
// Don't accept ETH | ||
// ------------------------------------------------------------------------ | ||
function () public payable { | ||
revert(); | ||
} | ||
} ------------------------------------------------------------------------ | ||
// Constructor | ||
// ------------------------------------------------------------------------ | ||
constructor() public { | ||
symbol = "HCX"; | ||
name = "HCoinx Token"; | ||
decimals = 2; | ||
_totalSupply = 100000; | ||
balances[0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe] = _totalSupply; | ||
emit Transfer(address(0), 0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe, _totalSupply); | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
// Total supply | ||
// ------------------------------------------------------------------------ | ||
function totalSupply() public constant returns (uint) { | ||
return _totalSupply - balances[address(0)]; | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
// Get the token balance for account tokenOwner | ||
// ------------------------------------------------------------------------ | ||
function balanceOf(address tokenOwner) public constant returns (uint balance) { | ||
return balances[tokenOwner]; | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
// Transfer the balance from token owner's account to to account | ||
// - Owner's account must have sufficient balance to transfer | ||
// - 0 value transfers are allowed | ||
// ------------------------------------------------------------------------ | ||
function transfer(address to, uint tokens) public returns (bool success) { | ||
balances[msg.sender] = safeSub(balances[msg.sender], tokens); | ||
balances[to] = safeAdd(balances[to], tokens); | ||
emit Transfer(msg.sender, to, tokens); | ||
return true; | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
// Token owner can approve for spender to transferFrom(...) tokens | ||
// from the token owner's account | ||
// | ||
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md | ||
// recommends that there are no checks for the approval double-spend attack | ||
// as this should be implemented in user interfaces | ||
// ------------------------------------------------------------------------ | ||
function approve(address spender, uint tokens) public returns (bool success) { | ||
allowed[msg.sender][spender] = tokens; | ||
emit Approval(msg.sender, spender, tokens); | ||
return true; | ||
} | ||
|
||
3 | ||
4 | ||
5 | ||
|
||
6 | ||
|
||
7 | ||
|
||
8 | ||
|
||
9 | ||
|
||
10 | ||
|
||
11 | ||
|
||
12 | ||
|
||
13 | ||
|
||
14 | ||
|
||
15 | ||
|
||
16 | ||
|
||
17 | ||
|
||
18 | ||
|
||
19 | ||
|
||
20 | ||
|
||
21 | ||
|
||
22 | ||
|
||
23 | ||
24 | ||
25 | ||
-----BEGIN PGP PUBLIC KEY BLOCK----- | ||
Version: SKS 1.1.5 | ||
Comment: Hostname: pgp.mit.edu | ||
|
||
mQMuBFO8l6sRCAD+VYKPjZY7hMCKVC3KWCkcqvSXEfiqx8KIVSp4yKx1blpVHoBYfAj13Lls | ||
XkVMujjRVZZB8tVxl3282T/1T4VNLdHy+HvulWbAmZRAJzTw8xZYkb7L9iFFVvIHk2o31Gbq | ||
7PAvML2MKA556jd0/OjixDR8mLpdAee8la+09RHuWhOYtFJ4nyrVW0nVFApqj1R90eXMcvOj | ||
vSEdVHEmO341RiwayadfGRRwTqlYtsIx0k64+dpGyjA0CnJJLKVKPTzyn3bQEFhrCq41XfJf | ||
AFI928/YVb4Wmbd51wgDv01c2b/gyGXwNFW+Qxj9xIcVgK/EPMn2I5j4eBsnOZy9Gn9vAQDj | ||
SfX26Q6nU1x7ULPjGJ/SefPkYm2swp1Gxfmn78bXFwgA/Q7/QqqARHuUtO3ZP4FgmcxxYYK8 | ||
M+/+ROKoUUPA7Hx3cG3eq86Q5Ok7ADGFTurjaOdZmuV42E54t1pKIYvAe3IJLXr06cx3Vb8L | ||
zLtalsQsYh2IebwRTu2wvQpsSJxBoVUzwmosNWiOuIemlTpujUFmP89Wad8MsnQSRBNoK0D7 | ||
03ckYjVRJPD+qd788c9JGyTredk0gJzV2dqesMFT+EaLuNUuOktWC+jTGZ5xK9F7EXN0ZfIM | ||
fKDLFxvCL2a9cTCJIVirn1Ur6QHDsw5PBD/U7DDZDkk9Hzl1ep3qk7PVMn/xDzz3MxKRKKd+ | ||
d7d7wZA9OE+iKoivcAPeC1yTxQgA8KEaCz2TuS1+M9A+8PzGebKJ1OazwCb+tIGWCXUeJlIh | ||
dRV7W/kre6e4fv0UOxDJHBrIoD1vIGtHguOGSMEnFuVJFDIH2HXXr5oxJkO86RMAig+EbglT | ||
BJbFEfdx8Ruwhw74JzetijGHYRG62u7n8o8iX6RbpTdzt/nq26fs3Ts0SLMHfP26ZVHJOjY6 | ||
2dTCrw0q20RC4i9HWHJ0g694YBPYvhp2gYks93tigHbIqB1GhpBmBauuNvXRvNs493Rn40FI | ||
wNMtWZBcQSMch1aEm4j5njDTt4+a6c/v8W2px3u8nFacKBR5FV86WjHEg+HmNx72nvfE/PQW | ||
HEQixfyiObQpQ29wYXkgKHZpc2l0IGNvcGF5LmlvKSA8Y29wYXlAYml0cGF5LmNvbT6IegQT | ||
EQgAIgUCU7yXqwIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQXNYAphESz6FzCQEA | ||
wcLYPogeVLbG3ZL5Bi/Be7U4ctNgewfKEZSSmec3vBYBAIB2xXhiq5ZER1P033KFT8g5pgY2 | ||
fMbk4YsO11Yj2B2m | ||
=tKra | ||
-----END PGP PUBLIC KEY BLOCK----- | ||
|
||
|
||
|
||
- automatic! | ||
[GitHub](https://newstart823613520.wordpress.com/) | ||
[Hcoinx](https://drive.google.com/drive/u/0/mobile/my-drive/) |
28f58fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'311203'