Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: Tokenista on November 29, 2020, 06:08:06 PM



Title: TRC20 Token Creation
Post by: Tokenista on November 29, 2020, 06:08:06 PM
This will be a thread about TRC20 Token creation

Code:
pragma solidity ^0.4.23;

import "./ITRC20.sol";
import "../../utils/SafeMath.sol";

/**
 * @title Standard TRC20 token (compatible with ERC20 token)
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract TRC20 is ITRC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return An uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(
        address owner,
        address spender
    )
    public
    view
    returns (uint256)
    {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token for a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    )
    public
    returns (bool)
    {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    )
    public
    returns (bool)
    {
        require(spender != address(0));

        _allowed[msg.sender][spender] = (
        _allowed[msg.sender][spender].add(addedValue));
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    )
    public
    returns (bool)
    {
        require(spender != address(0));

        _allowed[msg.sender][spender] = (
        _allowed[msg.sender][spender].sub(subtractedValue));
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
        // this function needs to emit an event with the updated approval.
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
            value);
        _burn(account, value);
    }
}

https://medium.com/@jgulacsy/use-the-open-zeppelin-smart-contract-framework-51ab17c5ae9

https://tronprotocol.github.io/documentation-en/contracts/trc20/

https://coredevs.medium.com/what-is-trc20-da34cac6608d

https://developers.tron.network/docs/issuing-trc20-tokens-tutorial

https://newreleases.io/project/github/tronprotocol/java-tron/release/GreatVoyage-v4.0.0

ERC20 guide to help since they are basically the same
https://github.com/bitfwdcommunity/Issue-your-own-ERC20-token


Title: Re: TRC20 Token Creation
Post by: Krabby on November 29, 2020, 07:41:07 PM
I have a question for quite some time about token creation across platforms. I heard that creating a token on ERC-20 or Tron is also very easy and the cost of the token generation service only costs 50 $!
I'm just a trader and don't understand too much about technology and IT. So I want to ask that only through this post can I create my own token without any fees? :-\
* P/S: I have a long cherished trading pool project and I want to save as much money as possible before creating my project. I will greatly appreciate your detailed answer on this matter. Many thanks.


Title: Re: TRC20 Token Creation
Post by: Tokenista on November 29, 2020, 09:41:55 PM
I have a question for quite some time about token creation across platforms. I heard that creating a token on ERC-20 or Tron is also very easy and the cost of the token generation service only costs 50 $!
I'm just a trader and don't understand too much about technology and IT. So I want to ask that only through this post can I create my own token without any fees? :-\
* P/S: I have a long cherished trading pool project and I want to save as much money as possible before creating my project. I will greatly appreciate your detailed answer on this matter. Many thanks.

TRC20 is Free, that is why I chose it to launch first, no other reason.

Just make sure you have 10 TRX in your wallet for energy fees, or 3,000 TRX Frozen as energy in your wallet. The Energy is imaginary and is just a way for TRON to generate Income on their Blockchain, but if you don't have the energy Frozen already it doesn't cost too much to pay for energy on the spot. You have to Freeze (A.K.A. Stake) a lot more TRX to get the same amount that you could use by Burning (instead of Staking) but Burnt Fees go to TRON and don't come back, while the Frozen coins are just locked in your own wallet.

So it is your choice if you want to invest a little or a lot, but it only costs the Energy Fee to make a TRC20.

After your Token is made tell us about it in this thread.


Title: Re: TRC20 Token Creation
Post by: Tokenista on November 30, 2020, 03:38:59 PM
You can copy any ERC20 Token into a TRC20 Contract.

It is the same.

You can just copy it and change a few little things, that is why I gave the example in the first post, that is what it is showing, I just forgot to explicitly mention that ERC20 and TRC20 are the same and anyone can copy ERC20 to TRC20.


Title: Re: TRC20 Token Creation
Post by: Tokenista on November 30, 2020, 04:28:45 PM
Here is the TRC10 Token creation Guide, you can do it from your Cell phone
Android/Iphone Guide to Make a TRC10 TRON Token: Every Steemit user should Create or be involved with one
https://steemit.com/hive-142140/@punicwax/android-iphone-guide-to-make-a-trc10-tron-token-every-steemit-user-should-create-or-be-involved-with-one


Title: Re: TRC20 Token Creation
Post by: Tokenista on November 30, 2020, 09:21:20 PM
I am going to work on launching the first Punic TRC20 tonight, or tomorrow.


Title: Re: TRC20 Token Creation
Post by: globalcitizen on November 30, 2020, 10:44:02 PM
I have been trying to learn solidity but it hasn't been that easy for me because of my lack of background in programming. But anytime I see a new coin or token launched I feel more compelled to try to give it a try.

The fact that one can just create a token with little or no cost and launch it to the public to raise money for one's project makes learning Ethereum solidity for ERC-20 and even TRC-20 creation a worthwhile effort. I just hope I will be able to achieve that one day.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 01, 2020, 01:32:54 AM
I have been trying to learn solidity but it hasn't been that easy for me because of my lack of background in programming. But anytime I see a new coin or token launched I feel more compelled to try to give it a try.

The fact that one can just create a token with little or no cost and launch it to the public to raise money for one's project makes learning Ethereum solidity for ERC-20 and even TRC-20 creation a worthwhile effort. I just hope I will be able to achieve that one day.

Here are some Solidity guides

Solidity Cookbooks
https://github.com/matheusroleal/solidity-cookbook

https://github.com/ice09/SmartContractDev-Cookbook

https://myhsts.org/tutorial-learn-how-to-write-ethereum-smart-contracts-with-solidity-in-1-hour.php
https://www.scribd.com/document/486184355/Ethereum-Tools-Skills

https://www.scribd.com/document/486184352/Ethereum-Builder-s-Guide

https://www.scribd.com/document/486184424/Ethereum-for-Architects-and-Developers-With-Case-Studies-and-Code-Samples-in-Solidity

https://www.scribd.com/document/486184564/A-Developer-s-Guide-to-Ethereum

https://www.scribd.com/document/486184611/Build-Your-First-Ethereum-DApp

https://www.scribd.com/document/486184627/Introducing-Ethereum-and-Solidity

https://www.scribd.com/document/486184659/Building-Games-With-Ethereum-Smart-Contracts-Intermediate-Projects-for-Solidity-Developers


Ethereum GPU Miner building guide
https://www.scribd.com/document/486184535/A-Quick-Guide-on-Building-a-GPU-Mining-Rig-Edition-3-2-Best-for-Ethereum-and-Ethereum-Classic


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 01, 2020, 02:28:26 AM
Here is how TRX voting works for those wondering what they can do with Frozen Funds
https://medium.com/tron-foundation/how-to-vote-for-super-representatives-d81d14d9743d


Title: Re: TRC20 Token Creation
Post by: globalcitizen on December 01, 2020, 03:15:51 AM
I have been trying to learn solidity but it hasn't been that easy for me because of my lack of background in programming. But anytime I see a new coin or token launched I feel more compelled to try to give it a try.

The fact that one can just create a token with little or no cost and launch it to the public to raise money for one's project makes learning Ethereum solidity for ERC-20 and even TRC-20 creation a worthwhile effort. I just hope I will be able to achieve that one day.

Here are some Solidity guides

Solidity Cookbooks
https://github.com/matheusroleal/solidity-cookbook

https://github.com/ice09/SmartContractDev-Cookbook

https://myhsts.org/tutorial-learn-how-to-write-ethereum-smart-contracts-with-solidity-in-1-hour.php
https://www.scribd.com/document/486184355/Ethereum-Tools-Skills

https://www.scribd.com/document/486184352/Ethereum-Builder-s-Guide

https://www.scribd.com/document/486184424/Ethereum-for-Architects-and-Developers-With-Case-Studies-and-Code-Samples-in-Solidity

https://www.scribd.com/document/486184564/A-Developer-s-Guide-to-Ethereum

https://www.scribd.com/document/486184611/Build-Your-First-Ethereum-DApp

https://www.scribd.com/document/486184627/Introducing-Ethereum-and-Solidity

https://www.scribd.com/document/486184659/Building-Games-With-Ethereum-Smart-Contracts-Intermediate-Projects-for-Solidity-Developers


Ethereum GPU Miner building guide
https://www.scribd.com/document/486184535/A-Quick-Guide-on-Building-a-GPU-Mining-Rig-Edition-3-2-Best-for-Ethereum-and-Ethereum-Classic

That's awesome. Thank you for those resources. It will be very useful for my learning. I will devote sometime to go through them and use them as learning resources and reference materials. Nice job.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 01, 2020, 08:38:47 AM
I have been trying to learn solidity but it hasn't been that easy for me because of my lack of background in programming. But anytime I see a new coin or token launched I feel more compelled to try to give it a try.

The fact that one can just create a token with little or no cost and launch it to the public to raise money for one's project makes learning Ethereum solidity for ERC-20 and even TRC-20 creation a worthwhile effort. I just hope I will be able to achieve that one day.

Here are some Solidity guides

Solidity Cookbooks
https://github.com/matheusroleal/solidity-cookbook

https://github.com/ice09/SmartContractDev-Cookbook

https://myhsts.org/tutorial-learn-how-to-write-ethereum-smart-contracts-with-solidity-in-1-hour.php
https://www.scribd.com/document/486184355/Ethereum-Tools-Skills

https://www.scribd.com/document/486184352/Ethereum-Builder-s-Guide

https://www.scribd.com/document/486184424/Ethereum-for-Architects-and-Developers-With-Case-Studies-and-Code-Samples-in-Solidity

https://www.scribd.com/document/486184564/A-Developer-s-Guide-to-Ethereum

https://www.scribd.com/document/486184611/Build-Your-First-Ethereum-DApp

https://www.scribd.com/document/486184627/Introducing-Ethereum-and-Solidity

https://www.scribd.com/document/486184659/Building-Games-With-Ethereum-Smart-Contracts-Intermediate-Projects-for-Solidity-Developers


Ethereum GPU Miner building guide
https://www.scribd.com/document/486184535/A-Quick-Guide-on-Building-a-GPU-Mining-Rig-Edition-3-2-Best-for-Ethereum-and-Ethereum-Classic

That's awesome. Thank you for those resources. It will be very useful for my learning. I will devote sometime to go through them and use them as learning resources and reference materials. Nice job.

I will put up a guide for Publishing the basic TRC20 soon, so everyone can do it.


Title: Re: TRC20 Token Creation
Post by: Sirait on December 01, 2020, 09:17:50 AM
^ thank you bro for this very valuable topic, sorry I ran out of merit :D. I have a plan to make my own token based on ERC20 and TRC20, I hope you and your family are healthy always.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 01, 2020, 07:59:07 PM
I just want to reiterate for everyone how easy it is to clone entire Blockchains.

I am not a Programmer, I started in a terminal to learn how to make a Genesis Block and that is what I did.

This is originally how I learned to make Blockchains years ago.

LEARNCOIN [LEARN] - The coin that helps you learn to make your own cryptocurrency!

Source: https://github.com/altcryptomining/learncoin
Windows Binaries: https://www.dropbox.com/s/d8pm4vp60zwglt0/learncoinwin-latest.zip
Virustotal for windows binaries: https://www.virustotal.com/en/file/3dc907392d61cddad739818689d7f723cc84a67b65e66c033e5b9a9ad9b5e30b/analysis/1449455467/

2nd opinion: https://www.virustotal.com/en/file/b7d8f52a5504414ed269b7259faba915c2345d5eaab727efc674525cfa94b8db/analysis/1449455160/

First Pool
Basic UNOMP - http://159.203.105.243

The coin that teaches you about creating your own cryptocurrency
I decided to create this coin for 2 reasons:
1. to show people how easy it is to create your own coin which can teach you a lot about command line interface, simple coding, git and just generally get into programming the easy way
2. to show people that they shouldn't necessarily buy into (or invest their mining power!) into any old coin that comes along, because as you'll see it's really not that hard, and why should you give money to some guy who spent like 4-5 hours doing some copying and pasting and tells you what he's "created" is the best coin there has ever been.

I don't expect this coin to be a huge hit, in fact it's probably full of bugs that will almost immediately break it if anyone starts mining.

What you will get out of this coin is the chance to follow along with me as I build the coin (I'm committing my whole day off today to doing this so I  hope you enjoy it)

Key Info / What you'll get:
A series of youtube videos that shows you every step of the way how to (poorly) "make" your own cryptocurrency.
A "dev" who wants to learn / be criticized along the way
A fair release. This is a scrypt coin and I've only got a single r9 280x so my premine will suck :D so ASICs feel free to jump on board. Who knows, it might even fork and I won't know how to fix it! How fun!
How I created the first pool which will be avaialble at launch (without a domain, because I'm too poor to buy one)

Coin Specs
Algo: Scrypt (cloned from Litecoin)
Block Reward: 50 LERNS
Block Time: 30s
Retarget: 5 minutes (10 blocks)
Total coins 84000000
Confirmations 20

Videos Below - note I just do one take on Open Broadcaster without any editing other than pausing the video to get a coke while shit compiles
(Just uploading to youtube now)

Episode 1:
Introduction / Explanations / OS Setup / Cloning
https://www.youtube.com/watch?v=86jqAfySi64&list=PL3VHTMe_nFkyQKRus_py1WIRQr7FG2009

Episode 2
More cloning and generating merkle root
https://www.youtube.com/watch?v=ENaTmbh8Xuw&feature=youtu.be

Episode 3
Hashing the genesis block
https://www.youtube.com/watch?v=3Jp65Uq_U30&feature=youtu.be

Episode 4:
Creating some "artwork"
https://www.youtube.com/watch?v=1z_ONhDseVE&feature=youtu.be

Episode 5:
Compiling for Windows and uploading to github
https://www.youtube.com/watch?v=YF3oE5uIP64&feature=youtu.be

Episode 6:
Seeing it all running and pool starting
https://www.youtube.com/watch?v=kVPcmirqyOY&feature=youtu.be

Episode 7:
Profit???
This made it easier

Forknote (current core - Bytecoin 2.1.0)
http://forknote.net (http://forknote.net)

Forknote is tool for creating or connecting to Cryptonote blockchains. It uses Bytecoin as base, and sticks to its codebase as close as possible.

Download
https://github.com/forknote/forknote/releases

Active networks
https://github.com/forknote/configs

Connect to existing blockchains

$ ./forknoted --config-file configs/imaginary_blockchain.conf
$ ./simplewallet --config-file configs/imaginary_blockchain.conf

Create new coins

Use our form to create a Cryptonote network a matter of seconds:
http://forknote.net/create/

Learn more in our guide:
http://forknote.net/guides/setup-private-blockchain/

List of all available parameters:
http://forknote.net/documentation/daemon/#blockchain-options

You can try it by downloading Forknote:
http://forknote.net/downloads


Bounties

Forknote GUI (50000 DSH): https://bitcointalk.org/index.php?topic=1079306.msg23747414#msg23747414

Reddit:
https://www.reddit.com/r/forknote/


Support the project with BTC:
1M5ihpjUwQ86XWHGNVGGd3LgpJajpPJ6uR

or with DSH:
Quote
D6WLtrV1SBWV8HWQzQv8uuYuGy3uwZ8ah5iT5HovSqhTKMauquoTsKP8RBJzVqVesX87poYWQgkGWB4 NWHJ6Ravv93v4BaE

And Ethereum is even easier than that.

Also, for anyone who is interested in the Punic Wax Mystery:

I will be posting tons and tons if information on this, the post at the beginning of this thread is hardly what will be posted on the Subject.

Go to:
http://www.PunicWax.com

I have 84 more posts that will be going up there over a period of time, and many more will be added. The whole thing is basically a Thesis, or several Premises, and people may go get their PhDs using this information, and I hope they do because the research in this field needs to be expanded on.

We are creating an Alchemical Mystery School where by understanding certain things, you better understand several other certain things.

We will create a Initiation Mystery Ritual in which once you have completed a number of duties and tasks listed, you will be certified with a Megarian Degree, we are creating a Mystery School that is of the Stoic Philosophy, and African Mythological Mystery, guided by Hindu Shaivite Religion.

Once you become more capable in Crypto, you will be given various other Degrees and then will eventually start your own Central Regional Headquarters free from us having any role in creating or shareholding your Currency. This will be for local purposes, but in a Global Network.


Title: Re: TRC20 Token Creation
Post by: hd49728 on December 02, 2020, 02:10:06 AM
You can copy any ERC20 Token into a TRC20 Contract.

It is the same.

You can just copy it and change a few little things, that is why I gave the example in the first post, that is what it is showing, I just forgot to explicitly mention that ERC20 and TRC20 are the same and anyone can copy ERC20 to TRC20.
It sounds you are an expert in TRC20 token and contracts on that platform. I knew of the contract to move Tether USD (USDT) on TRC20 chain with zero cost of transaction (almost zero cost). Could you give me explanation on the process of moving USDT on TRC20 chain, please.

This method is more commonly used after the DeFi trend was hyped and fee on ERC20 chain was very high. I still don't understand why fee on TRC20 is very cheap like that.
I read the article Tether (USDT) TRC20 vs ERC20 (https://community.trustwallet.com/t/tether-usdt-trc20-vs-erc20/61950) but could not find answers.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 02, 2020, 05:25:09 PM
You can copy any ERC20 Token into a TRC20 Contract.

It is the same.

You can just copy it and change a few little things, that is why I gave the example in the first post, that is what it is showing, I just forgot to explicitly mention that ERC20 and TRC20 are the same and anyone can copy ERC20 to TRC20.
It sounds you are an expert in TRC20 token and contracts on that platform. I knew of the contract to move Tether USD (USDT) on TRC20 chain with zero cost of transaction (almost zero cost). Could you give me explanation on the process of moving USDT on TRC20 chain, please.

This method is more commonly used after the DeFi trend was hyped and fee on ERC20 chain was very high. I still don't understand why fee on TRC20 is very cheap like that.
I read the article Tether (USDT) TRC20 vs ERC20 (https://community.trustwallet.com/t/tether-usdt-trc20-vs-erc20/61950) but could not find answers.

So, you just go to EtherScan and Github, it is easier to use Github with Ubuntu than Windows.

They would have taken their contract for USDT on EtherScan, and Uploaded it to TronScan, and if there is a function where fees go to an account they would change their wallet address. But then they go to the Token Record section on TronScan.

Clone the Git Repositories with similar changes. And put the TronScan Contract on their Github Clone.

And that's it. Some Tokens don't even require any Github.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 02, 2020, 05:25:19 PM
Something everyone should know. This applies to BLURT because BLURT is a STEEM Fork, meaning it is an exact copy of STEEM from March 2020, but everything after that is independent from what happens on Steemit.

When I joined Steemit in 2016, it took 104 weeks, which is 2 years, to take your funds out. I am fully in support of that, but it is not a well understood position. Most people think STEEM or BLURT should be able to be withdrawn in 4 weeks.

So I want to explain this for everyone.

Anarcho-Capitalists took over Steemit, and I left. STEEM was topping at like $20 and sitting at like $5 when I left because the platform became useless. Dan and Ned are the Developers, then the Bitshares people were the Witnesses and early adopters. So when they all got Anarchy Fever, no one could get an upvote unless they were saying "Taxation is Theft", and being proud Anti-Statists who literally think anyone who believes in a State is wrong.

You may think "that's democracy" or Majority Rule or whatever, but that is not good business for a Social Media Blogging site trying to be a real universal platform.

Apparently these Anarchists voted for a 13 week STEEM Power Down, so people could withdraw all their money. I started my Power Down during the 104 week rule, and never came back, so I literally had no idea this happened. I spoke to someone today and they said "it was always 13 weeks on Steemit", so that means that most people don't even understand how this works.

So, everyone wants their money when they need it, but that is why Steemit had a 50/50 Payout in Liquid and STEEM Power. So half is saved, half is held.

And you are supposed to use this like a Bank.

STEEM Power has 4% interest. So it makes money like a Bank, actually better than most Banks. Plus, you get Curation and Author Rewards. So if you think of STEEM Power as Money held in your Bank account, you can actually live on the Interest and Rewards.

And the fact that it took 102 weeks to pull it out meant that people had to be in it for the long haul. People couldn't just pull all the STEEM being used for Curation and dump it.

If that isn't obviously clear, you can look at what happened when they changed to 4 week withdrawals. It is $0.15 now and everyone is gone.

This could be resolved if we all just started coming in, buying it up, and holding it ourselves. But you can see how the 4 weeks was not really a good move. And really 13 weeks was too quick.

But, in order to raise the prices of these currencies, we can collectively do this ourselves.

This concept that existed at the beginning of Steemit, which the Anarchocapitalists got rid of, is very well defined here.

https://i.ibb.co/FDGf2nQ/unknown.png


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 02, 2020, 06:23:07 PM
This video series was created early on after the TRON Blockchain launched, so the functionality after launch is now Built into TRON Link, but other than that this Tutorial is still good. It is a series of videos.
https://youtu.be/LsNaflm5Abc


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 02, 2020, 07:58:07 PM
Here is a good project to look into cloning for everyone
https://client.aragon.org/#/governance.aragonproject.eth

And everyone check out $LGCY which is a TRON Fork.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 04, 2020, 04:48:54 AM
I was doing something with Steem-Engine, for the PUTI Token, so I didn't get this done yer. But I am going to upload a TRC20 on TronScan tomorrow. And I will make a Guide.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 06, 2020, 05:39:35 AM
Something that should be mentioned, right now if I want to send a Bitcoin or an ETH somewhere, it costs like $2.00+, this is due to Transaction fees used to pay miners to want to mine your block, the more fees you pay the faster your transaction goes through, it can take 1 hr or more for a Bitcoin to go from 1 wallet to another.

So there is an entire market for what are called Micropayments.

Micropayments are if I want to send $1 or less, or even $10 or so. It is not really efficient to send $10.00 payments with fees at $2.00 or more.

So there is an entire industry for Micropayments, and TRC10/20 Tokens definitely fulfill this. You get about 5000 free Bandwidth per day in your wallet, and can send any amount of a Token to another wallet for about 280 Bandwidth. So you can easily send several people small payments in 1 day if you needed, or accept small payments from them. All within the TRON wallet, then for liquid trade on the TRON Link exchanges.

There have been entire currencies with the singular purpose of being a Micropayment Blockchain, and TRON Tokens have it built in. And the Tokens move to the other wallet just about instantly.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 09, 2020, 10:01:36 AM
Use this with the links, it gives you the Github repository to clone
https://developers.tron.network/docs/issuing-trc20-tokens-tutorial

Then this as a guide to set up the git repository
https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/cloning-a-repository#cloning-a-repository-using-the-command-line

I have been busy, but will be launching a TRC20 Token very soon using this method and will take screen shots.

This explains how you get your Token from the Github website to visibly up if you clone a more complex Token, but this is Steem-Engine Tokens. Github works the same for both though.
https://steemit.com/dtube/@heimindanger/steem-engine-tokens-dtube-scottube


Title: Re: TRC20 Token Creation
Post by: Tokenista on March 31, 2021, 08:21:47 AM
We will be getting everything moving again soon.

I have had to postpone everything, like this thread for example, until now due to COVID Pandemic issues, and having to fight the State of Texas over COVID money. But, we are getting everything moving, and those things in themselves are a good example of Fate and Economics, and I want to expand on this.

Foreign Currency Trading (FOREX), Stock Trading, even trading things like Gold and Silver, are all similar but different. Silver is talked about in commercials, they say things about how low it is now, and how primed it is to spike, and what it has been before. Silver has several uses, in Industry, Manufacturing and Research, as well as non-Recyclable Consumables like Colloidal Silver. But everyone and their Grandma used to have a Drawer full of... "Silver Wares" and Teapots and Cups, etc, they used to have Warehouses everywhere full of Silver, and Silver Crafting was a common job. Not that we can not go back to that point, or that Silver Consumables couldn't cause rarity, but we can actually look and see why Silver went down, why it was up, and how we could do it again.

We can also look to Iraq, where ISIS robbed the Bank of Mosul, took all the Gold, took over the Oil feilds, and decimated the value of the Iraqi Dinar. But, if Iraq now turns around and their National Production of Value could turn around their Currency.

Brexit was similar, when Britain left the EU the price of the British Pound went down, there was a Crisis and the "Fed" (like the Federal Reserve) of Britain had to come talk about how they were going to prop up the Market. But then it went back up.

The Economy is not a thing separate from the Earth, it is the Current. Markets are not the Economy either, and there is a National Economy and a World Economy, which is just our production of Value as a Nation or World.

A Stock represents the Value, Productivity, Innovation, Development, of a Company. A Currency represents that for a Nation, and it is balanced with Bonds. Then as Stocks and Currency go down, Gold goes up. So it is best to use Currency to buy Materials for Manufacturing, or Software, Land, Services, etc. Then use those to get more money, or do that same thing by watching other people do that and Buy their stocks. That is why there are shows where Rich people come invest in people's companies to make them better, those 2 things go together, you want to buy Stocks in a Company that could maybe otherwise be your company if you weren't just an investor, like something you know how it works and that it will work. Then you can see how even starting from scratch can be like trading Stocks.

Then, when all those Markets are down, Gold goes up in value, this means you can go get more USD or whatever Currency for your Gold than usual. So when Stocks are down, you can watch Gold go up and you Sell and the top, wait for it to go down and Buy more Gold at the lower price or Reinvest that money to make more money.

But all of it is just a Current, which is why I talk about "Grounding" your Currency to the Earth.


Title: Re: TRC20 Token Creation
Post by: KryptoKings on March 31, 2021, 08:40:39 AM
Here is the TRC10 Token creation Guide, you can do it from your Cell phone
Android/Iphone Guide to Make a TRC10 TRON Token: Every Steemit user should Create or be involved with one
https://steemit.com/hive-142140/@punicwax/android-iphone-guide-to-make-a-trc10-tron-token-every-steemit-user-should-create-or-be-involved-with-one
I created a trc10 token on tronscan.org few months back but it never got approved.
I was a newbie (still am) so I just left it there.
Do we need website to create our token? I was asked to fill website address in one field if I remember correctly.
Do tokens created by us have any life cycle or they stay alive forever even if they are not in circulation?


Title: Re: TRC20 Token Creation
Post by: Tokenista on April 02, 2021, 02:58:01 AM
Here is the TRC10 Token creation Guide, you can do it from your Cell phone
Android/Iphone Guide to Make a TRC10 TRON Token: Every Steemit user should Create or be involved with one
https://steemit.com/hive-142140/@punicwax/android-iphone-guide-to-make-a-trc10-tron-token-every-steemit-user-should-create-or-be-involved-with-one
I created a trc10 token on tronscan.org few months back but it never got approved.
I was a newbie (still am) so I just left it there.
Do we need website to create our token? I was asked to fill website address in one field if I remember correctly.
Do tokens created by us have any life cycle or they stay alive forever even if they are not in circulation?

I am suing Poloniex soon to fix this, they are Monopolizing under false pretenses of self listing, anyone interested just keep checking in, and if you want you can join later to make it class action.


Title: Re: TRC20 Token Creation
Post by: Tokenista on April 03, 2021, 01:18:35 PM
Over the next few days I am going to get into DeFi conceptualization. I wrote the guide on Steemit that ended up defining Steemit Bots, so I promise that you are not wasting your time by reading concepts that come from my brain. This Steemit post has evidence.
https://steemit.com/steemit/@marsresident/i-am-back-but-created-a-new-account-punicwax

SMTs and Scot Bots when they first launched changed the way everyone used STEEM. When STEEM and Steemit started it was worthless, and was actually just Steemit with no currency and a promise of payouts when it launched. The SMTs came when there were so many users they could no longer get to everyone. At first a Whale user would manually curate Steemit, looking through the Trending, Hot and New pages until they found something they wanted to vote on. You could also write about them and slip in a tag and maybe they would see it. Steemit posts about Steemit were the most popular at first, mostly because people new to it, and didn't completely understand Cryptocurrency, it was the first place you could earn for free without without mining, where fresh Crypto people were being introduced to it. The numbers grew and the Whales made bots to Vote for them, either by username or a point based algorithm based on time posted, votes, and strength of other voters by certain times.

You may wonder, "So what happened?", the Anarchocapitalists took over, removed almost all of the Bridge Toll, which started with a 104 week withdraw period with 1 payment per week. After Steemit sold to Justin Sun and TRON, they got in a War with him and lowered it to 2 months or less. And they all went to Hive.io

Hive now claims to be built for dApps, so while Steemit has SMTs and Scot Bots, Hive is built for those not just hosting them coincidentally.

A Scot Bot is a bot which distributes tokens in the same model as Steemit, with Vote weights, Whales, Payout periods/Time to collect Votes, and then they are hosted on Steem-Engine.net and now Hive-Engine.com, and you can take a whole other step and create a DTube clone Scot Bot. The DTube clone means you create a Front End, so people type your website in the browser, you make business cards for your website if you want, it has your webpage name, your logo, and in the wallet are your Tokens in whatever amount they are holding. But they log in using their Steemit username and password, and when they post it goes into a group on Steemit with a hashtag attached to your Front End.

So with a Scot Bot DTube clone people can experience Steemit completely through your website. And earn your currency, thereby raising the traffic in your Steemit group and earning themselves both your Token and STEEM at the same time.

STO is kind of misleading but also not, because STO means "Securities Token Offering", and this is True somewhat as the person who designed Steem-Engine and Hive-Engine seemed to have cooperated with a Securities Attorney to create Packages that can be purchased that comply with various Securities Laws, so these platforms have Tokens that legally comply so that people can, for example create a Token that represents Stocks, or Metals, or anything, even a House.

This is similar, and can best be comprehended by comparing it to, IBM NFTs as Diamonds and Fish. IBM uses these types of Tokens, called "Non-Fungible Tokens" (NFTs) to represent objects, and as they move to different wallets, or checkpoints in the chain of custody, it is recorded on the Blockchain. While these Tokens do not go on a market for sale, which Securities would. There are also very detailed ETH NFT Protocols.

Venezuala's Petro Dollar is kind of anexample, where they were going to peg a Currency to Venezualan Oil (where people burn things down and kill Officials when gas is over $0.08 or something) and trade it, then OPEC told all Countries not to buy it and it collapsed with the Country. But Venezualans are not new to volatile markets, and have actually been using Bitcooin as a store of value, or in place of their currency, pretty much since like 2012 or sooner. They could always trust it to move up more steadily than the Venezualan Peso, which went the other way.

Pegging a Token to Silver or Gemstones can be an easy way to give it real value. Silver is $0.50 per gram and then can be used to represent a currency that can go higher than silver at which point it would be stupid for someone to withdraw the Silver, giving you more valuable coins. Or people load you up such coins that you can set for sale at more than the price of silver.

Local Currencies:
Ithica Bucks and similar, as well as Store Credit, Toys R Us Bucks, and State Fair Coupons or other access Credit systems.

The Access Credit model could best be visualized in someone earning a Concert Ticket with online interaction, or as State Fair Coupons where you buy them before you show up and spend them to do things, maybe at a Festival. I will get deeper into this soon.


Title: Re: TRC20 Token Creation
Post by: iTradeChips on April 03, 2021, 02:07:05 PM
Thank you Tokenista for the links. I do have one question though that bugs me since I started trading in crypto. Could someone who is totally alien to the concept of computer programming and cryptography be able to create a token of his own? I am dreaming that one day I can come up with my own token but of course that will happen if in case I have some funky business proposal. But also there is the Dogecoin which is a meme coin. Could someone just create a token just for fun?


Title: Re: TRC20 Token Creation
Post by: Fivestar4everMVP on April 03, 2021, 03:11:18 PM
Thank you Tokenista for the links. I do have one question though that bugs me since I started trading in crypto. Could someone who is totally alien to the concept of computer programming and cryptography be able to create a token of his own? I am dreaming that one day I can come up with my own token but of course that will happen if in case I have some funky business proposal. But also there is the Dogecoin which is a meme coin. Could someone just create a token just for fun?
Well, am not the poster but I think I show answer, when he comes, he can answer too.
From my experience, anyone with coding skills can create any token just for fun, this is why we have a lot of scams in the crypto space today, some guys learn how easy tokens is and decide to make there own, and after the creation, having no idea what to do to give it value, they end up launching a project they are not ready to manage properly, only to collect money from investors and later abadon the project causing innocent people to loose money.

I will advice that if you wanna make a token, do it when you have a serious business or idea that will give such token good value in the market, like myself, I have a project am working on, though fund to build the project has been a major challenge, but am pushing it little by little, I have a website built already, I have a whitepaper, only a few things to put together then I launch it to the public.

Don't go the way of dogecoin cus you might not have the luxury dogecoin has, don't forget that alot of influencial people helped doge coin to be where it is today, it is not the same with every meme coin.

And to answer your question properly, yes,, you can still create a token without having or knowing much about tech, this is to say that you can easily copy and paste a code, change a few things and then deploy, but to write a good code from start to finish, you definitely have to know how to.


Title: Re: TRC20 Token Creation
Post by: Tokenista on April 04, 2021, 06:52:42 AM
Thank you Tokenista for the links. I do have one question though that bugs me since I started trading in crypto. Could someone who is totally alien to the concept of computer programming and cryptography be able to create a token of his own? I am dreaming that one day I can come up with my own token but of course that will happen if in case I have some funky business proposal. But also there is the Dogecoin which is a meme coin. Could someone just create a token just for fun?

Yes.

Start here
https://steemit.com/hive-142140/@punicwax/android-iphone-guide-to-make-a-trc10-tron-token-every-steemit-user-should-create-or-be-involved-with-one


Title: Re: TRC20 Token Creation
Post by: Tokenista on April 04, 2021, 06:54:24 AM
Thank you Tokenista for the links. I do have one question though that bugs me since I started trading in crypto. Could someone who is totally alien to the concept of computer programming and cryptography be able to create a token of his own? I am dreaming that one day I can come up with my own token but of course that will happen if in case I have some funky business proposal. But also there is the Dogecoin which is a meme coin. Could someone just create a token just for fun?
Well, am not the poster but I think I show answer, when he comes, he can answer too.
From my experience, anyone with coding skills can create any token just for fun, this is why we have a lot of scams in the crypto space today, some guys learn how easy tokens is and decide to make there own, and after the creation, having no idea what to do to give it value, they end up launching a project they are not ready to manage properly, only to collect money from investors and later abadon the project causing innocent people to loose money.

I will advice that if you wanna make a token, do it when you have a serious business or idea that will give such token good value in the market, like myself, I have a project am working on, though fund to build the project has been a major challenge, but am pushing it little by little, I have a website built already, I have a whitepaper, only a few things to put together then I launch it to the public.

Don't go the way of dogecoin cus you might not have the luxury dogecoin has, don't forget that alot of influencial people helped doge coin to be where it is today, it is not the same with every meme coin.

And to answer your question properly, yes,, you can still create a token without having or knowing much about tech, this is to say that you can easily copy and paste a code, change a few things and then deploy, but to write a good code from start to finish, you definitely have to know how to.

Dogecoin largely got where it is because people who adopted mining early were very involved in a give away thread here on Bitcointalk. When DOGE coin started anyone could get 100,000 or so just by making a Wallet.


Title: Re: TRC20 Token Creation
Post by: Tokenista on April 05, 2021, 08:14:46 AM
Over the next few days I am going to get into DeFi conceptualization. I wrote the guide on Steemit that ended up defining Steemit Bots, so I promise that you are not wasting your time by reading concepts that come from my brain. This Steemit post has evidence.
https://steemit.com/steemit/@marsresident/i-am-back-but-created-a-new-account-punicwax

SMTs and Scot Bots when they first launched changed the way everyone used STEEM. When STEEM and Steemit started it was worthless, and was actually just Steemit with no currency and a promise of payouts when it launched. The SMTs came when there were so many users they could no longer get to everyone. At first a Whale user would manually curate Steemit, looking through the Trending, Hot and New pages until they found something they wanted to vote on. You could also write about them and slip in a tag and maybe they would see it. Steemit posts about Steemit were the most popular at first, mostly because people new to it, and didn't completely understand Cryptocurrency, it was the first place you could earn for free without without mining, where fresh Crypto people were being introduced to it. The numbers grew and the Whales made bots to Vote for them, either by username or a point based algorithm based on time posted, votes, and strength of other voters by certain times.

You may wonder, "So what happened?", the Anarchocapitalists took over, removed almost all of the Bridge Toll, which started with a 104 week withdraw period with 1 payment per week. After Steemit sold to Justin Sun and TRON, they got in a War with him and lowered it to 2 months or less. And they all went to Hive.io

Hive now claims to be built for dApps, so while Steemit has SMTs and Scot Bots, Hive is built for those not just hosting them coincidentally.

A Scot Bot is a bot which distributes tokens in the same model as Steemit, with Vote weights, Whales, Payout periods/Time to collect Votes, and then they are hosted on Steem-Engine.net and now Hive-Engine.com, and you can take a whole other step and create a DTube clone Scot Bot. The DTube clone means you create a Front End, so people type your website in the browser, you make business cards for your website if you want, it has your webpage name, your logo, and in the wallet are your Tokens in whatever amount they are holding. But they log in using their Steemit username and password, and when they post it goes into a group on Steemit with a hashtag attached to your Front End.

So with a Scot Bot DTube clone people can experience Steemit completely through your website. And earn your currency, thereby raising the traffic in your Steemit group and earning themselves both your Token and STEEM at the same time.

STO is kind of misleading but also not, because STO means "Securities Token Offering", and this is True somewhat as the person who designed Steem-Engine and Hive-Engine seemed to have cooperated with a Securities Attorney to create Packages that can be purchased that comply with various Securities Laws, so these platforms have Tokens that legally comply so that people can, for example create a Token that represents Stocks, or Metals, or anything, even a House.

This is similar, and can best be comprehended by comparing it to, IBM NFTs as Diamonds and Fish. IBM uses these types of Tokens, called "Non-Fungible Tokens" (NFTs) to represent objects, and as they move to different wallets, or checkpoints in the chain of custody, it is recorded on the Blockchain. While these Tokens do not go on a market for sale, which Securities would. There are also very detailed ETH NFT Protocols.

Venezuala's Petro Dollar is kind of anexample, where they were going to peg a Currency to Venezualan Oil (where people burn things down and kill Officials when gas is over $0.08 or something) and trade it, then OPEC told all Countries not to buy it and it collapsed with the Country. But Venezualans are not new to volatile markets, and have actually been using Bitcooin as a store of value, or in place of their currency, pretty much since like 2012 or sooner. They could always trust it to move up more steadily than the Venezualan Peso, which went the other way.

Pegging a Token to Silver or Gemstones can be an easy way to give it real value. Silver is $0.50 per gram and then can be used to represent a currency that can go higher than silver at which point it would be stupid for someone to withdraw the Silver, giving you more valuable coins. Or people load you up such coins that you can set for sale at more than the price of silver.

Local Currencies:
Ithica Bucks and similar, as well as Store Credit, Toys R Us Bucks, and State Fair Coupons or other access Credit systems.

The Access Credit model could best be visualized in someone earning a Concert Ticket with online interaction, or as State Fair Coupons where you buy them before you show up and spend them to do things, maybe at a Festival. I will get deeper into this soon.
I will start this next section with Sweatcoin as PoC, it is a great example for various reasons. 1, a simple Scot Bot would make it all real (if they never got on a blockchain, I am not sure), but Sweatcoin had a great launch and people earned it everywhere, but Sweatcoin was not a Cryptocurrency.

Sweatcoin was created as more like a Game Token, like Points in a video game. The best way to understand what a Cryptocurrency should not be is by understanding that Points are in concept Infinite, they, similarly to Cryptocurrency, could technically be limited, I could create a Points system with limited points. I could create a game map with 500 gemstones, but that game map has no regulatory body there is no Gravity to the Points system like Cryptocurrency.

Cryptocurrency, both Tokens and Coins, are Blockchain based, meaning there are nodes, and a Ledger, an Ledger that can not be gone back through and edited, and while a True Cryptocurrency (meaning the Prime native Currency earned in the Blocks of a Blockchain as you mine it, PoW, PoS, or DPoS) should not have a function where the creator can manifest new Coins, a True Cryptocurrency will come from a Blockchain. Any large mass of Coins owned by the creator should be on a ledger and not manifestible later, CryptoNotes have no ledger but still operate on this basic principle that the Nodes are a Ledger, and the Coin is not Owned by a Central body that Issues new ones, but a Blockchain.

Crypto Tokens, are usually Smart Contracts. First conceptualized as Bitshares Assets from what I know, and Mastercoin, CounterParty somewhere and then ERC20, then all the SMTs, etc came from ERC20 Smart Contracts. But the Contract may allow the Creator to issue new Tokens. A Token is on a Blockchain, moving Transactions on top of whatever Blockchain. Mastercoin and Counterparty are on Bitcoin, there were also Colored Coins. Then Steem-Engine is on STEEM, a Graphene chain. Hive-Engine is on HIVE. ERC20 is Ethereum, TRC20 is TRON, and on and on.


So now to Use cases

A Studio Booth Token as example of Access Credit, earned by listening and sharing Music from the Studio. If you have a Recording Booth, and you want to earn more. You can host a Blockchain from the Studio, that people can mine from anywhere, or a Token they can earn on a certain Blockchain. This Token could be earned on your Website as either a custom thing (GitHub has good resources, people have tons of good stuff to fork) or on Steemit or HIVE, so they then have a World Wide community earning by interacting with their music, recorded by them, and anyone who wants to can bring it in and get recording time, so it creates a larger community. People will buy things from each other outside of your knowledge, someone might trade a pair of shoes for 6 hours of recording time. It creates a whole new way to interact with your business outside of direct service or sales of any kind.

An Access Credit Currency should be named in a way that makes it clearly recognizable by a newcomer, there could be one Currency Brand from a Studio in NY or Miami called "Hours", maybe they are associated with a big label and they sell $5,000 each on the market, and people hold them like Bitcoin, maybe there is even a 2 year wait list when you redeem. They could be NY Hours, Miami Hours, Jay Z Hours, whatever brand they are associated with. And a smaller Studio, or any big Studio, could sell Minutes. A Cryptocurreny could be called MINUTES or NYMIN and MIAMIN, etc. Then there could be the LAMIN, or LAHR come out, and it could even be Studio to Studio Label names on the Minutes. Someone could come out with Seconds, and these would all range in value based on the Studio, the rate of Pay for those earning, etc, etc.

The benefits of getting deep into planning is DAOs as an example, a DAO is a Decentralized Autonomous Organization (DAO) which can best be compared to a massive board of Directors made up of each and every person holding a Currency. A DAO gives users the ability to Vote and shape the future of a Currency or Blickchain by weighting their input to the organization to their Cryptocurrency holdings. So if people are earning Studio Currencies like NYMIN, LAMIN, MIAMIN, etc, the people who don't spend them can help shape the future of the currency, because it will grow and people will use it outside of your Studio, outside of your DAO, they will create ways for people to spend it.

DeFi is an entire concept where coins other people invented or cloned, are pumped through Smart Contracts in a way that technically multiplies them as they are locked in Bank type investment Contracts, with Loans taken out on the Contract to pay for more Investment on Bank type contracts, to take out more and more loans. The creators of the Currencies never planned it.

There is an App for Temporary workers called JobStack that does with the company PeopleReady, and you go on and look for Jobs. Someone like Veryable or other companies could compete (or they could use it) to get more jobs and workers by having a Currency that pays workers, to be available or working and diminishes if you refuse specific jobs after claiming availability. Or if you are just doing it to earn. These could also then be used to pay for projects, turning workers into Employers, and helping existing Employers have a way to maybe buy Low and cash out High on Labor speculation. The Minutes could end up being used in many places.

Tokens for Museums, Zoos, Wildlife and Security Cameras could be used the same way. The Government and others could pay people to watch cameras and report things. It would be like a game to help with Security. People love watching certain Pandas, or Dolphins, and they could have earnings to show for it. Someone might say "Participation Trophies", and sure, but you can buy everyone's up and drive up the price if you want. It is a Currency, a Current. The Tax Law in the U.S. Amendments can best help you understand Currency, it says that The Governent may Tax "Income from any source derived",

US Constitution 16th Amendment:
"The Congress shall have power to lay and collect taxes on incomes, from  whatever source derived, without apportionment among the several States,  and without regard to any census or enumeration."

Eisner V Macomber:
https://supreme.justia.com/cases/federal/us/252/189/case.html

"The fundamental relation of "capital" to  "income" has been much discussed by economists, the former being likened  to the tree or the land, the latter to the fruit or the crop; the  former depicted as a reservoir supplied from springs, the latter as the  outlet stream, to be measured by its flow during a period of time.  For  the present purpose, we require only a clear definition of the term  "income,"   as used in common speech, in order to  determine its meaning in the amendment, and, having formed also a  correct judgment as to the nature of a stock dividend, we shall find it  easy to decide the matter at issue. After examining dictionaries in common use (Bouv. L.D.; Standard  Dict.; Webster's Internat. Dict.; Century Dict.), we find little to add  to the succinct definition adopted in two cases arising under the  Corporation Tax Act of 1909 (Stratton's Independence v. Howbert, 231 U. S. 399,  231 U. S. 415; Doyle v. Mitchell Bros. Co., 247 U. S. 179,  247 U. S. 185),  "Income may be defined as the gain derived from capital, from labor, or  from both combined," provided it be understood to include profit gained  through a sale or conversion of capital assets, to which it was applied  in the Doyle case, pp.  247 U. S. 183-185. Brief as it is, it indicates the characteristic and distinguishing  attribute of income essential for a correct solution of the present  controversy.  The government, although basing its argument upon the  definition as quoted, placed chief emphasis upon the word "gain," which  was extended to include a variety of meanings; while the significance of  the next three words was either overlooked or misconceived.  "Derived from capital;" "the gain derived from capital," etc.  Here, we have the essential matter:  not a gain accruing to capital; not a growth or increment of value in the investment; but a gain, a profit, something of exchangeable value, proceeding from the property, severed from the capital, however invested or employed, and coming in, being "derived" -- that is, received or drawn by the recipient (the taxpayer) for his separate use, benefit and disposal -- that is income derived from property.  Nothing else answers the description.  The same fundamental conception is clearly set forth in the Sixteenth Amendment -- "incomes, from whatever source derived"-- the essential thought being expressed with a conciseness and lucidity entirely in harmony with the form and style of the Constitution. "

 "It is manifest that the stock dividend in question cannot be reached by the Income Tax Act and could not, even  though Congress expressly declared it to be taxable as income, unless it  is in fact income."

 "Gibbons v. Mahon, 136 U. S. 549,  136 U. S. 559-560.  In short, the corporation is no poorer and the stockholder is no richer than they were before."

"And if, for the reasons thus expressed, such a  dividend is not to be regarded as "income" or "dividends" within the  meaning of the Act of 1913, we are unable to see how it can be brought  within the meaning of "incomes" in the Sixteenth Amendment, it being  very clear that Congress intended in that act to exert its power to the  extent permitted by the amendment."

"Just as we deem the legislative intent  manifest to tax the stockholder with respect to such accumulations only  if and when, and to the extent that, his interest in them comes to  fruition as income, that is, in dividends declared, so we can perceive  no constitutional obstacle that stands in the way of carrying out this  intent"

"[The 16th Amendment]  did not extend the taxing power to new  subjects, but merely removed the necessity which otherwise might exist  for an apportionment among the states of taxes laid on income.  Brushaber v. Union Pacific R. Co., 240 U. S. 1,  240 U. S. 17-19; Stanton v. Baltic Mining Co., 240 U. S. 103,  240 U. S. 112 et seq.; Peck & Co. v. Lowe, 247 U. S. 165,  247 U. S. 172-173. "

"In order, therefore, that the clauses cited  from Article I of the Constitution may have proper force and effect,  save only as modified by the amendment, and that the latter also may  have proper effect, it becomes essential to distinguish between what is  and what is not "income," as the term is there used, and to apply the  distinction, as cases arise, according to truth and substance, without  regard to form. Congress cannot by any definition it may adopt conclude  the matter, since it cannot by legislation alter the Constitution, from  which alone it derives its power to legislate, and within whose  limitations alone that power can be lawfully exercised."

 "We are clear that not only does a stock  dividend really take nothing from the property of the corporation and  add nothing to that of the shareholder, but that the antecedent  accumulation of profits evidenced thereby, while indicating that the  shareholder is the richer because of an increase of his capital, at the  same time shows he has not realized or received any income in the  transaction."

"It is equally true that, if he does sell, and  in doing so realizes a profit, such profit, like any other, is income,  and, so far as it may have arisen since the Sixteenth Amendment, is  taxable by Congress without apportionment."

 "Thus, the government contends that the tax "is  levied on income derived from corporate earnings," when in truth the  stockholder has "derived" nothing except paper certificates, which, so  far as they have any effect, deny him present participation in such  earnings.  It contends that the tax may be laid when earnings "are  received by the stockholder," whereas he has received none; that the  profits are "distributed by means of a stock dividend," although a stock  dividend distributes no profits; that, under the Act of 1916, "the tax  is on the stockholder's share in corporate earnings," when in truth a  stockholder has no such share, and receives none in a stock dividend;  that "the profits are segregated from his former capital, and he has a  separate certificate representing his invested profits or gains," "

"We cannot disregard the essential truth  disclosed, ignore the substantial difference between corporation and  stockholder, treat the entire organization as unreal, look upon  stockholders as partners when they are not such, treat them as having in  equity a right to a partition of the corporate assets when they have  none, and indulge the fiction that they have received and realized a  share of the profits of the company which in truth they have neither  received nor realized."

"Thus, from every point of view, we are brought  irresistibly to the conclusion that neither under the Sixteenth  Amendment nor otherwise has Congress power to tax without apportionment a  true stock dividend made lawfully and in good faith, or the accumulated  profits behind it, as income of the stockholder.  The Revenue Act of  1916, insofar as it imposes a tax upon the stockholder because of such  dividend, contravenes the provisions of Article I, § 2, cl. 3, and  Article I, § 9, cl. 4, of the Constitution, and to this extent is  invalid notwithstanding the Sixteenth Amendment."


Rewards Points, Game Tokens like in individual games or as in an arcade, as well as Augmented Reality Access Credits (Decentraland, ex), and Tokens that are a game like Gradients (CryptoKitties), or dynamic like a hot potato with PoS qualities. Tokens may also work as Keys in the Access Credits model, but could be used to Unlock things as in Kerberos. Decentraland is a Virtual Reality space that sold property and has a Currency, and from my understanding of the original concept they intend it to be freely selected by the people, but for each area to be different. Like where you can go to different styles of places, or like time period themes, or maybe games v. social, etc. So this same concept can be used at Festivals, or like someone could do it at a Theme Park in place of the E-Z pass, or on top of. The E-Z pass people could probably make a very very successful currency. The Bitshares Asset concept was originally meant to be like Concert tickets, Coupons, etc. But they are like Brownie Points now, but they are the same type of thing IBM uses for their NFTs.
Basic Attention Token (BAT) and DTube as existing PoC for Attention Tokens, the idea is just then now to actually apply the concept to Corporate Currency as in applied Local Economics, or State Economics, or Interstate Economics. BAT is a Token on a Browser that sounds great at first, but has an earnings model where you earn but have to use it to Tip web pages, then they can cash them out. And while this keeps the Tokens locked in as forced to move through the Tip functionality, this does limit user acceptance and retention. DTube is similar but better, it exists on top of HIVE (it was originally on Steemit) so not an entirely new browser everyone has to download, and you earn it alongside HIVE, then it also has a larger community, and itself is like a YouTube tip Token for "Decentralized Tube" (DTube). It is a Token in the Scot Bot model.

The Access Credit is like Mining for Coupons or Tickets, and can be compared to Basic Attention Token with other qualities as it is used as a Access Credit.

Steemit is a rough clone of Reddit, meant to look and work like it

Gems (not really in use now) is Telegram, this could be used by someone to create Apps. Go get the Gems Github on Google and Fork it, and build your App, called a dApp.

DTube is YouTube.

More could be remade with Blockchains and Tokens, I have seen an Instagram.

APPICS is an SMT that was built on Steemit and works like Instagram kind of.


Home Town Currencies
Starting with no local shop acceptance but a main goal of local shop acceptance, you would either make a Token or Clone ETH and have friends help distribute. If you are not sitting on Millions to start your project or able to do an ICO properly to get it, then the very best thing you can do is to Give them away for Free so more and more people can hold it and share it. You want ambassadors, and people just handing them out maybe as a group of people mining your coin giving it away and teaching others.

Petitioning Companies to accept your currency, and exchanges to list it, the more Token holders the better. You can ask the Coin or Token holders to petition exchanges to join, and you can get listed for about $1,000 or less on some exchanges. You do want to be on an exchange before you start asking companies to accept you as money, but you can then go to local shops and show them your currency.

Truancy Token as an example of an Access Credit, this would be done with a School or Corporate Office, and it would work like Vacation Benefits where the person earns rewards for appearing at work or school, and they then can use those to access Graduation or Promotion, and they can also go on an exchange to be sold, or technically if the Company wants they could be bought and traded for rank. But in the school model they would be a reward that could then maybe be traded in to the school for prizes, for example it could be a booster club currency.

Example: App where people are paid to lose weight, people could sign up, track their progress with images for everyone, there could even be weigh days where people are running around the app getting paid to Verify others, and those getting Verified are getting ranked based on IoT scales or FitBits, etc, that can be used to measure. So this way it is both a "lose weight and earn" with payment from the blockchain, plus a place to get paid for casual fitness, as well as rankings and payments for all users. There are a few currencies like this on Steem-Engine and Hive-Engine, similar to APPICS. Maybe the more you hold the more you earn when Verifying others, as a HODL draw for Buy Support.

Festival Currencies
With 1 Currency or with DEX, meaning either the overall caravan company would create a currency or each company would start making their own and the caravan or someone else is manufacturing them. But the central festival body would create a DEX if there were many (or use Hive-Engine), while with 1 Currency they could go on an exchange and say "there it is". These could then have an Access Credit, used like State Fair Coupons to be spent with Vendors or Events. Like a SXSW coin could be used to pay for access more granularly instead of buying larger passes, like maybe you just want to see 1 big keynote and go home. You can pay just for that.

Industry Currencies
These Tokens and Currencies would be industry specific, so several applications exist, and the best reference is Trade Unions and Credit Unions. But we can start by looking at IBM and their applications of the OpenLedger Fabric framework, to create the Diamond and Fish NFTs. If we have these in our mind, we can now see how these items can be traded on the exchange, but this requires a central body verifying that there is some value stored somewhere in that item.

For example, if it is a Diamond, it could be traded speculatively on a Diamond somewhere in the world that can be traded, but if I only have 500 Diamond Coins on the market those might be held by 100,000 people holding fragments, and it may raise passed any reasonable sale price for Diamonds and would be stupid for someone to trade in for the less valuable Diamond. And this concept could then be used to pay Stock Dividends, or to represent shares in a Company giving DAO voting capability.

You could also Clone ETH and as an example, a Grocery store, Farmer's market or Farm could create the ETH clone. They then focus on finding people to create dApps for use in the industry, and it would be like "insider knowledge" for store clerks to go home and set their laptop up, or buy an ETH rig to mine this easier to mine coin (at least at first it would be easier than ETH). They then would campaign to have more and more companies in the industry, and farms, accept it.

Farms and Markets, and larger Farm Corporations could create Tokend on the ETH chain. The issuer could then also issue Tokens with a Bridge Toll, knowing next year the Farms can produce that amount (like a Nileometer) to then be withdrawn later. And this will be possible anyhow as many people will Buy and Sell the coins on the market with no intention of ever trading them in, just Capital Gains.

Fundraiser Currencies
For Large Organizations, I see NASA as a good example. They could Pre-mine 50% before launch, launch it and ask people to Buy and HODL, while promising only to dump when buying things all the HODLers want, and they can buy everything up cheap on NASA dump days, to then trade on other days.

In Gibbons v. Ogden, 22 U.S. 1 (1824), the Supreme Court held that intrastate activity could be regulated under the Commerce Clause, provided that the activity is part of a larger interstate commercial scheme. In Swift and Company v. United States, 196 U.S. 375 (1905), the Supreme Court held that Congress had the authority to regulate local commerce, as long as that activity could become part of a continuous “current” of commerce that involved the interstate movement of goods and services.

More coming soon...


Title: Re: TRC20 Token Creation
Post by: Tokenista on August 02, 2021, 11:50:56 PM
This has been delayed because of Corona Virus Economy issues, and the State of Texas, but soon we will be:

Expanding on the Punic Tokens,
Punic Metals and Gemstones,

Some will then be Blockchains instead of Tokens.

Early on we will get the Mining Pools going to Mine other Coins, then we can add ours.

We will have Witnesses on the Steemit Clone Chains.

We will have an ETH Clone called Akasha, and then a Temple Coin. We will also Clone DeFi Projects, and make a DAO to issue Coins and Tokens for the DeFi Projects.

We will be focused on then getting other People making City and State or Religious Currencies, as well as Corporate Coins, etc.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 02, 2021, 01:13:52 PM
Sorry for the Massive Delay,

In about 48 Hrs I will be announcing the Launch of a TRX PancakeSwap or SunSwap Fork.

We will soon after that list PUCO,
And soon after that we will talk with the PAL Network/HIVE-Engine and make sure the STEEM-Engine DEX will continue to be supported, and make a PUTI Peggy on BSC or TRX to list on the Swap, as well as BLURT, STEEM and maybe HIVE.

So this will then be the DeFi Platform for Crypto Bloggers.


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 21, 2021, 09:58:03 AM
Upcoming Bounties for Van Kush Rewards Token on TRX
https://bitcointalk.org/index.php?topic=5378003.0


Title: Re: TRC20 Token Creation
Post by: Tokenista on December 24, 2021, 03:23:15 AM
We are Launching Van Kush Rewards Token and Today we found an issue, and it seems to be more common than everyone thinks, but there seems to be an entire Over Complex Algorithm attached to the Energy in your Wallet.

So,
Basically, you need to just hold a bunch in your wallet all the time to resolve that, but I will go through the algorithm here for everyone.

const R = Dynamic Energy Limit
const F = Daily account energy from staking TRX
const E = Remaining daily account energy from staking TRX
const L = Fee limit in TRX set in deploy/trigger call
const T = Remaining usable TRX in account
const C = Energy per TRX if purchased directly

// Calculate M, defined as maximum energy limit for deployment/trigger of smart contract
if F > L*R
    let M = min(E+T*C, L*R)
else
    let M = E+T*C

It basically says, you need:

TRX Staked,
Unstaked,
Maybe some Rented Energy then with that.
http://m.tronlending.org/tronLending

This goes further into it
https://developers.tron.network/docs/frozen-energy-and-fee-limit-model

The Calculation can be made easier with this Calculator
https://tronstation.io/calculator

I will put a guide up here tomorrow with the exact numbers we use. We also will be helping people create Tokens.



Home  Crypto Exchanges
TRON TRC20 exchange SunSwap rolls out V2 upgrade
Published By CryptoNinjas.net  2 days ago

TRON TRC20 exchange SunSwap rolls out V2 upgrade
SunSwap, a decentralized application on TRON for exchanges between TRC20 tokens, recently announced it has officially rolled out an upgrade with the brand-new SunSwap V2.

There have been a series of improvements implemented based on the swap and liquidity mechanism, with V2 featuring the following modifications:

Users do not need TRX as an intermediary to swap TRC20 tokens;
Now users can directly add liquidity to trading pairs of any two TRC20 tokens;
V2 includes a new swap routing protocol that can automatically recommend the optimal swap path;
A new liquidity migration feature has been added, allowing users to migrate liquidity from SunSwap V1 and V1.5 to SunSwap V2 in a quick way;
The user interfaces and interactions for swap, liquidity pools, the explorer, and other modules have also been improved.
“Committed to building long-term value, SunSwap has made significant progress in improving its functionalities, user experience, and security. We are confident that as V2 goes live, it will surely deliver a better user experience.”
– The SunSwap Team




Around two months ago, the SunSwap team acquired JustSwap and officially renamed it SunSwap, along with launching the exchange on the domain sunswap.com. With SunSwap, all trading fees collected on the exchange go directly to liquidity providers rather than the protocol itself.

29
SHARES
Facebook
Twitter
Linkedin
Reddit
E-Mail
Telegram
Related Content

Crypto exchange Kraken acquires crypto staking platform Staked
BY CRYPTONINJAS.NET 12/21/2021

MeoTools - an all-in-one cryptocurrency tracking dashboard looks to expand
BY CRYPTONINJAS.NET 12/16/2021

Korean crypto exchange Upbit's parent company Lambda256 raises $60M in Series B
BY CRYPTONINJAS.NET 12/15/2021

BitMEX lists linear perpetual contracts for ADA, BNB, FTM, and SHIB
BY CRYPTONINJAS.NET 12/15/2021
BACK TO TOP
© 2016 - 2021 CryptoNinjas Disclosures | Privacy Policy


Title: Re: TRC20 Token Creation
Post by: Tokenista on April 07, 2022, 10:40:29 AM
We are listed on SunSwap
https://sunswap.com/#/scanv2/detail/TJi8tMNKMav5uLNBVtevmKfu3Hz8tUhYW2