EIP, ethereum protocol, token action ethereum implimentation, token action protocol, action on solidity
---
eip: <to be assigned>
title: <EIP title>
author: <a list of the author's or authors' name(s) and/or username(s), or name(s) and email(s), e.g. (use with the parentheses or triangular brackets): FirstName LastName (@GitHubUsername), FirstName LastName <[email protected]>, FirstName (@GitHubUsername) and GitHubUsername (@GitHubUsername)>
discussions-to: <URL>
status: Draft
type: <Standards Track (Core, Networking, Interface, ERC) | Informational | Meta>
category (*only required for Standard Track): <Core | Networking | Interface | ERC>
created: <date created on, in ISO 8601 (yyyy-mm-dd) format>
requires (*optional): <EIP number(s)>
replaces (*optional): <EIP number(s)>
---
Health alternative for crypto ecosystem. Transition from utility tokens to action tokens.
Not ready
Almost anything ethereum tokens is utility and you as investor do not have any rights on company profits, it is profitable for business, but not profitable for us. But if we could be possible to change it now, in cryptocurrency technologies age. I see no reason for us to make the crowdsalers pay us a legitimate income.
-
At the first stage, we determine the owner of the token, and only the true owner, can create a contract wrapper TAP. For this purpose, the contract is ConfrimOwnership.
-
Second, the owner receives all shares in the amount of totalsupply from EPC 20 token.
-
Third, the distribution of shares occurs at the will of the creator.
-
Fourth, the restriction on the transfer of rights, requires that the recipient on the account have more or equivalent balance in relation to the ERC20 balance. Those. the recipient must have an equivalent balance in order to prove that he, at least at the moment of receipt, is the real holder of the asset.
-
The fifth. The recalculation of the David takes place at a predetermined time limit, and when the legal balance is changed, the recalculation and accrual of the Devian occurs, under the conditions specified in the contract.
-
The sixth. The outputs are output through the withdraw pattern, the withdraw function.
/**
* @dev Return current rightholders balance, this balance show your real action balance
* @param rightholder <address>
*/
function rightsOf(address rightholder) external view returns (uint256);
/**
* @dev Transfer rights. Use when need to sell your active.
* @param to
* @param amount
*/
function transferOfRights(address to, uint256 amount) external returns(bool);
/**
* @dev Allow another balance spend the current balance.
* @param to
* @param amount
*/
function rightToTransfer(address from, address to, uint256 amount) external returns(bool);
/**
* @dev Using for transfer tokens with rights.
* Economical function make double send if you need.
* Do not use for transfer to exchanges.
* @param to
* @param amount
*/
function transferWithRights(address to, uint256 amount) external returns(bool);
/**
* @dev Call to get your devidents. You need execute func.withdrawalRequest() before.
*/
function getDividends() external returns (bool);
/**
* @dev Emits when rights transfer to new rightholder.
* @param rightholder tx sender
* @param newRightholder tx spender
* @param amount tx value
*/
event RightsTransfer(address indexed rightholder, address indexed newRightholder, uint256 indexed amount);
/**
* @dev Emits when rights transfer to new rightholder.
* @param rightholder tx sender
* @param newRightholder tx allowed address
* @param amount tx value
*/
event RightsApproval(address indexed rightholder, address indexed newRightholder, uint amount);
/**
* @dev Emits when calculating dividends and crediting to balance.
* @param rightholder
* @param amount
*/
event AccrualDividends(address indexed rightholder, uint amount);
Not ready
Not ready
Could be found here https://github.com/pironmind/TokenActionProtocol/test/
Could be found here https://github.com/pironmind/TokenActionProtocol/contracts/
Copyright by pironmind - link https://github.com/pironmind | [email protected]