Category: Coin Guide

There are several thousands of cryptocurrencies out there, known also as altcoins. These coins and tokens all have their own unique features and uses, for example, some are used to help decide the direction the creator company should take, others give you discounts or access to special features. The Coin Guide is a concise summary of the aims and technology behind a certain cryptocurrencies. Insight is crucial in this field. Many projects disguise their progress through complicated jargon, making it hard to distinguish those who are building something meaningful from those who are not.

  • ERC Tokens Explained: What are they?

    ERC Tokens Explained: What are they?

    ERC (Ethereum Request for Comment) token standards are built upon and utilise the Ethereum blockchain. Most of us have only heard about the vastly used ERC-20, while becoming more familiar with the ERC-721 and ERC-1155 token standards thanks to the growing adoption of NFTs (Non-Fungible Tokens) by upcoming projects. This article gives an overview of what are ERC tokens, their various types, and functions.

    Summary

    • ERC tokens are special forms of smart contracts that utilise the Ethereum blockchain, rather than having their own blockchain like Bitcoin.
    • They can have different functions and even a combination of features.
    • ERC tokens can be Fungible, Non-fungible, and Semi-fungible.

    What is a token and how do we classify them?

    First of all, ‘tokens‘ are programmable digital units of value that are recorded on a distributed ledger protocol such as a blockchain. Basically, ERC20 tokens are special forms of smart contracts that utilize Ethereum’s blockchain. They can also be described as digital assets which are not the main currency of that blockchain. While $ETH and $BTC both have their blockchain and are thus far considered as coins, tokens don’t.

    There are different types of tokens. Utility tokens differ from the rest because they usually offer a wider functionality than, for example, a means of payment (coins, like $BTC) or voting power on a platform (such as governance tokens, like $UNI). They can combine multiple purposes, are integrated into an existing protocol and used to access its services. They also provide network activity, which ensures strength of the platform’s economy.

    To easily understand how they fit into the blockchain ecosystem, we need to understand how Ethereum works first: we can think of it as an operating system on top of which applications (smart contracts) can be built (written), just like developers build applications for Android and iOS. One difference being that applications on Ethereum can be decentralized (Dapps). Once we have these platforms, we can (if we want) create tokens, each time choosing the most appropriate standard for our purpose.

    Years ago, when there was no standard in use, it was far more complicated for developers to make smart contracts interact with each other; they had to create specific implementation standards to develop a token and launch it on Ethereum’s network. Then, the ERC-20 came out and that heavily simplified the process.

    Another distinction is between Fungible and Non Fungible tokens.

    Fungible Tokens

    In this case, each token is equivalent to all the others and they are interchangeable (1 $BTC will always be equal to any other 1 $BTC).

    ERC-20

    First proposed in 2015, it’s the industry standard and most accepted one. It makes the initial distribution of tokens extremely easy, so it became massively used in the 2017 ICOs craze. The ERC-20 contracts are composed of 6 mandatory functions and 3 optional ones.

    ERC-20 contracts
    ERC-20 contracts

    6 mandatory functions:

    • balanceOf(): keeps track of the balance in each user wallet
    • totalSupply(): shows the current total supply in circulation
    • transfer (): lets the owner send a specific amount to another address
    • transferFrom(): allows a smart contract to automate the transfer process and send a given amount of the token on behalf of the owner
    • approve(): approves the withdrawal of tokens from the owner’s address to the receiving address. It also guarantees that nobody could create more tokens out of nothing, keeping the supply under control
    • allowance(): makes sure that the owner has at least as many tokens as the amount set in the approve function; the transactions added to the blockchain have been proved valid

    3 optional functions:

    • name(): pretty self explanatory!
    • symbol(): 3-4 letter abbreviation
    • decimals(): it is impossible to write decimal places in Solidity- only whole numbers, so this function is needed. Most tokens use 18 decimals

    How to send ERC-20 tokens?

    There are two ways of sending ERC-20 tokens, depending on if you want to send them directly or delegate the function to a smart contract. You can either:

    • call the transfer() function to send tokens to another wallet address
    • call the approve() function and then transferfrom() from the receiver contract

    Besides the ease of use and the popularity that this standard immediately gained among the community, its main flaw soon became obvious, causing millions of dollars worth of tokens to be lost forever in smart contracts.

    Limitations of ERC-20 tokens and what are wrapped tokens?

    What happens if you simply use the transfer() function to send tokens to a smart contract which is not made to receive them?

    The transaction will succeed and these tokens will be credited to the receiver address, but they won’t be recognized by the recipient and they will remain there forever, unusable.

    Another limitation is that since $ETH itself was obviously created before the ERC-20 standard was even developed, it is not compliant with it (nor with other standards). That is why to interact with many contracts, we need to “wrap” $ETH into $WETH (wrapped ether, which IS an ERC-20 token, pegged to $ETH 1:1).

    To solve the various flaws, new standards were proposed. The most famous ones are the following.

    ERC-223

    Summary:

    • prevents funds to be lost
    • half as expensive
    • backwards compatible

    This standard was proposed by a Reddit user known as Dexaran; it focuses on security and tries to fix the main flaw of its predecessor, by using a unique, new transfer() function, which allows tokens to be sent to either a personal address or a smart contract. Moreover, it includes a tokenFallback() function that checks the receiving contract for the same function.

    Basically, if the receiver is a regular address (not a contract), the transfer will be similar to the ERC-20 one, while if the receiver is a contract, the tokenFallback() function will be triggered. If the receiving contract does not have this function, the transaction will fail but all the funds will be returned to the sender address.

    Simplifying the transfer and reducing it to just one single step, the process will also be cheaper (less gas fees!). The ERC-223 standard is backwards compatible with the ERC-20, as it keeps all of the original functionalities and solves the biggest issues. The ChainLink ($LINK) token has been described by its developers as “an ERC20 token, with the additional ERC223 ‘transfer and call’ functionality of transfer, allowing tokens to be received and processed by contracts within a single transaction”.

    The ERC-223 standard has never been finalized.

    ERC-777

    Summary:

    • makes transactions smoother
    • allows for approved operators
    • standard for minting/burning tokens
    • backwards compatible with ERC-20

    This standard was developed by Jacques Dafflon and Jordi Baylina, it is similar to ERC-20 and it relies upon the ERC-1820. Before that, developers couldn’t identify the functions which can be implemented by smart contracts. By creating a central registry of contracts on the network, the ERC-777 can use it to identify the interfaces a smart contract uses.

    Its uniqueness is the friction reduction in transactions. It also defines a new set of functions, for example it uses send() instead of transfer(), authoriseOperator() instead of approve(), tokenReceived() handler function instead of tokenFallback().

    It also allows for more customization, a list of approved operators so that people can approve smart contracts to move tokens on their behalf, and creates a standard for minting and burning tokens (very useful for particular projects).

    A pure ERC-777 is not compatible with ERC-20 but the standard described how to make it compatible.

    The ERC-777 standard became finalized on May 6th, 2019.

    Other fungible tokens

    There have been many other proposals combining some aspects of different standards into each other.

    • ERC-827 combines some of the advantages of ERC-223 and ERC-20 standards, it enables token transfer for a 3rd party to spend it
    • ERC-664 is mainly centered on modularity and makes it possible to update token contracts
    • ERC-677 provides a safe way for new contracts to transfer tokens to external contracts
    • ERC-621 can increase or decrease the token supply
    • ERC-884 allows companies to use blockchain to maintain share registries

    Non Fungible Tokens (NFTs)

    These tokens are unique: each one can have a different value ant they are not replaceable. NFTs enable the tokenization of individual assets. They can often be found in games or you can imagine them as digital pieces of art, real estate… basically anything you like. Unique tokens can be further modified adding new “tools”, hence increasing their value overtime (like new bodyparts on a racing car). Check out our video on NFTs:

    Non-fungible tokens explained

    ERC-721

    It became famous with CryptoKitties. The contract is composed by 8 functions plus 2 optional ones. Most of them are the same or similar to the Fungible counterparts, with few important differences.

    ERC-721 contracts
    ERC-721 contracts

    8 mandatory functions:

    • name()
    • symbol()
    • totalSupply()
    • balanceOf()
    • ownerOf(): retrieves the address that owns whichever NFT ID number is searched; ownership is defined by simply having the token
    • approve()
    • takeOwnership(): transfer the tokens from another address that currently holds them
    • transfer()

    2 optional functions:

    • tokenOfOwnerByIndex(): allows NFT IDs to be searched through a list of tokens owned by the user; it is necessary if we want more ntfs
    • tokenMetadata( ): retrieves the metadata, i.e. info for identification

    While when new ERC-20 tokens are created, the supply simply increases. In this case, things are more complicated. We have to monitor the metadata, and that is expensive in gas fees. ERC-721 defines a storing method.

    A problem with this standard is that if we want to send more NFTs to someone, we will need as many transactions as the number of tokens sent.

    Along with the ERC-721, a few other Non Fungible standards have been proposed, like the ERC-875 and the ERC-998.

    Semi Fungible Tokens (SFTs)

    In some cases, NFTs and FTs do not provide the required level of flexibility that is necessary to build new projects. As we have said, Fungible tokens are all “equals” while Non Fungible ones are unique.

    But what if we need something that is neither Fungible nor Non Fungible? Like seat tickets?

    Seat tickets (or supermarket vouchers, lottery tickets etc.) are 99% equal to on another with a very small difference, like a serial number that makes them unique, preventing double-spending/selling. When we buy a seat ticket, we don’t want someone else to have the same exact token and be able to use it if he arrives before us at the cinema.

    In these circumstances Semi Fungible Tokens come in help: they hold their value until they are sold, changing from Fungible to not Fungible anymore.

    The Multi Token Standard: ERC-1155

    This one was created by Enjin in 2018 for its Gaming Multiverse.

    In all the other standards we have considered, we need to deploy a different contract for each type of token (one contract for all the same ERC-20s, one contract for each unique NFT). It is like being at the supermarket and not being able to buy all of the groceries we want at the same time, having to proceed one item after the other, from shelf to register, continuously. If we want to be able to buy a bunch of stuff at the same time, we need a new standard, and that is the ERC-1155. It allows for different “items” to be stored and created in the same contract (FTs, SFTs and NFTs), with the least possible amount of data; it is cheaper and more convenient.

    For example, in a game we may exchange a currency (ERC-20) and/or NFTs (ERC-721) with other gamers; the ERC-1155 makes it possible. Moreover, it can execute a deterministic smart contract function by simply sending a token to an address (i.e. sending a token to an exchange address, the exchange could immediately return another token back to the sender’s address).

    Practically, a single smart contract can mint infinite tokens forever (and it allows to save fees!)

    Learn more about the ERC 1155 token

    Conclusion

    Overall, among the Fungible tokens, some people think that the ERC-777 should be the designated one to become widely adopted. It offers, for example, more ways to protect our funds. Nevertheless, none of the above standards is without flaws and inherent risks. As a matter of fact, there are multiple reasons why ERC-20 is still the most popular one, and we can’t forget to mention that a new standard would create a lot of issues and interoperability problems, at least at the beginning.

    If we consider the Non Fungible world, we are yet to see an explosion in adoption, but more and more platforms and games are coming out and it will probably be one of the trends of the next years. There are different platforms where you can go and buy collectibles directly with your Ethereum wallet (such as Metamask). One of the most famous and used is Rarible.

    Only time will tell us which will be the next standard in use; proposing a solution and having the community embrace it are two very different things.

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • Duck Liquidity Pool (DLP) by DuckDAO ($DUCK)

    Duck Liquidity Pool (DLP) by DuckDAO ($DUCK)

    Duck Liquidity Pool ($DUCK) is a DeFi Market Maker protocol, developed by DuckDAO, one of the biggest cryptocurrency community that provides funding and marketing support to early-stage crypto projects.

    The boom of decentralized finance (DeFi) in recent months has ushered in a new profit-making strategy for crypto traders, beginners and advanced alike. Decentralized exchanges (DEX) rely on liquidity pools to help power their market-makers. While the Duck Liquidity Pool is a new entrant in DeFi, it has already captured the attention of many users in the space thanks to its high APY and token burning model.

    https://youtu.be/8MNKafDgW0o

    What is the Duck Liquidity Pool?

    The Duck Liquidity Pool (DLP) is DuckDAO’s own market maker. The funds that supply its pool came from the sale of pre-mined tokens and can be accessible in many other protocols and exchanges. In the meantime, projects that are supported by DuckDAO will be the first to be able to tap the pool. The ticker for the pool is $DUCK.

    The unique feature that distinguishes DLP from others is its “unilateral burn” strategy, or the one-sided token burn model. It is designed to burn 50% of all earned rewards (more on this later).

    The APY level for DLP is high and its suppliers can receive as much as 50% of the profits from market making, airdrop of incubated project tokens, as well as non-fungible token (NFT) campaigns. Such a feature enables yield farmers the ability to earn profit by just providing liquidity to DuckDAO’s market maker.

    To participate in the DLP, users have to lock their cryptocurrency holdings by depositing their funds in the pool. In return, they receive DUCK tokens as a reward for supplying funds to the pool.

    DuckDAO’s Native Token ($DUCK)

    DUCK token is the DuckDAO’s native utility token, which also powers the incentive model for the Duck Liquidity Pool. The token has the following use cases:

    • Yield farming on Uniswap pools – Staking tokens help contribute liquidity to DUCK and DDIM pools. For this, they earn profit through DLP.
    • Reward token for market-making profit – Half of the profit from the market maker is returned to the community who belong to the liquidity pool. If the performance of DLP is good, the profit for the yield farmers grows in proportion as well.
    • Project token airdrops
    • Non-fungible token as reward

    Deflationary Farming: “One-Side-Burn”

    This is touted by the team as “Yield Farming 2.0,” which is designed to support a deflationary, unilateral burning of tokens. To understand how this works, we must first look at how the current yield farming mechanism works.

    The Usual Scenario for Most Liquidity Pools

    Commonly, yield farming pools in the DeFi space look very advanced for the average trader. Not only does this create a psychological barrier to entry, but it also makes profit-making a little more difficult for someone new to yield farming.

    Another issue that traders face is the inflationary structure of the incentive mechanism in most liquidity pools. This is because, in order to provide rewards to yield farmers, mined tokens have to be released into the market. This model isn’t designed for long-term effectiveness since with more reward tokens in supply over time, we can expect its value to depreciate as well.

    Duck’s Unilateral Burn

    $DUCK, on the other hand, is designed to support long-term yield farming strategies. Even beginners on liquidity pools can just stake and earn a part of the profit that DuckDAO’s market maker gets.

    $DUCK One-Side-Burn Deflationary Model (Source: DuckDAO website)

    One-Side-Burn is a deflationary model that is designed to burn 50% of the carry pair as soon as the liquidity provider decides to cash in a portion of his stake.

    What happens in such a situation is that users lose one side of their liquidity as the tokens are burned. And when someone decides to exit the pool completely, his entire liquidity is also burned and further lowers the DUCK tokens in supply.

    While this model may seem counterintuitive for profit-earning at first, over-time, the value of the tokens is going to be greater than what it was when a user has staked in the pool. That is why DLP’s design appears to be much better in the long run.

    Duck Liquidity Pool Market-Maker Models

    Project Token Purchase

    DLP purchases tokens in order to facilitate buy and sell liquidity.

    Duck Liquidity Pool Business Model – Project Token Purchase (Source: Duck Liquidity Pool (DLP) Blackpaper)

    Project Token Borrow

    DLP loans tokens against collateral in order to facilitate buy and sell liquidity.

    Duck Liquidity Pool Business Model – Project Token Borrow (Source: Duck Liquidity Pool (DLP) Blackpaper)

    Fixed Fee Model

    The protocol can charge a fixed service fee for listings that have decided to provide buy and sell liquidity on their own.

    Duck Liquidity Pool Business Model – Fixed Fee Model (Source: Duck Liquidity Pool (DLP) Blackpaper)

    Conclusion

    DeFi has enabled the birth of new profit-making strategies for traders in the space. However, whether existing liquidity pools can support long-term yield farming models is another question altogether. DLP’s model, which is powered by the ‘unilateral burn’ design, appears to be more promising.

    To be fair, like many other pools, the profit it can generate for stakers is also influenced by the number of users joining the pool. This is why it is important to look into that as well before deciding to lock your tokens and supply liquidity to the pool.

    Decentralised Finance (DeFi) series: tutorials, guides and more

    With content for both beginners and more advanced users, check out our YouTube DeFi series containing tutorials on the ESSENTIAL TOOLS you need for trading in the DeFi space e.g. MetaMask and Uniswap. As well as a deep dive into popular DeFi topics such as decentralized exchanges, borrowing-lending platforms and NFT marketplaces

    The DeFi series on this website also covers topics not explored on YouTube. For an introduction on what is DeFi, check out Decentralized Finance (DeFi) Overview: A guide to the HOTTEST trend in cryptocurrency

    Tutorials and guides for the ESSENTIAL DEFI TOOLS:

    More videos and articles are coming soon as part of our DeFi series, so be sure to SUBSCRIBE to our Youtube channel so you can be notified as soon as they come out!

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • ChainLink ($LINK) guide: A key link in the DeFi space

    ChainLink ($LINK) guide: A key link in the DeFi space

    ChainLink ($LINK) has been a standout project in the cryptocurrency industry since its creation in 2017 by San Francisco based company, SmartContract. The Company is renowned for being a decentralised oracle solution, they act as a middleware agent between traditional data sources, blockchain projects and smart contracts (which drive Decentralised Finance (DeFi) projects) using their $LINK token. Partnership wise, the Company has been linked with national governments like the Chinese government and are consistently building new partnerships with major brands. Clearly, ChainLink is a company that any crypto or blockchain enthusiast should have an understanding of, so here we have compiled a complete guide to this revolutionary project.

    ChainLink has prominence because they solved the Oracle Problem. The oracle problem originates from an issue with smart contracts, which are coding instructions that would automatically execute under specific conditions on blockchain networks. Smart contracts are. also immutable, cost effective and self-executing, so technically they are perfect for automating transactions which are transparent and have zero chance of failure. These smart contracts derive their data from “Oracles” (i.e. data sources, APIs etc) , and this is where the problem lies. Smart contracts are only as “smart” as the information fed to them by the oracles. If you feed a smart contract with malicious code or bad data, the smart contract will still process it anyway because it is just code, and what comes out would be incorrect or unpredictable. This is known as the “Oracle Problem”.

    That all changed when ChainLink worked out how to retrieve and share information from the Oracles without jeopardizing the security of the blockchain. This was by creating a decentralized blockchain that bridges between the Oracles and the smart contracts. While researching this, I stumbled upon a 스포츠토토 사이트 추천, which provided insights into secure and reliable platforms for sports betting. The system is built on a collection of individual nodes that act as smart contracts on their own to gather the information and, as a result, have created a smart contract infrastructure. Now, instead of having to blindly trust a source, smart contracts can access resources like data feeds, traditional bank account payments, and web APIs.

    ChainLink infrastructure
    ChainLink infrastructure (Image credit: Data Driven Investor)

    Why is this important? It is because ChainLink believes its technology will do away with traditional legal agreements and instead the information will be stored on blockchain forever. 

    ChainLink is also relevant to the cryptocurrency industry because its Oracles also provide a solution for decentralized applications (dapps) as they too provide a bridge to the outside world.

    The $LINK token is ChainLink’s native cryptocurrency and was set up on the Ethereum network using an ERC677 token whose functionality is based on the ERC-20 token standard, it also boasts ‘transfer and call’ functionality. The $LINK token is used as staking for a bidding system for provision of information and for rewards, as will be seen in the following paragraph.

    The decentralized oracle network works through a two way system between those who wish to purchase data and those who bid to be the providers of the said data. Providers, also known as “Node Operators” stake ChainLink’s $LINK tokens to make bids to the intended data purchaser. If they win, they must provide the information required by the purchaser on chain through their APIs. The “winning” Node Operator’s payout is determined by the number of operators using the site, and the Oracles implement this decision. Payouts are in the form of the $LINK token. 

    This system has a number of benefits. When ChainLink is popular with Node Operators, then their value increases. Not only that, but Node Operators are also rewarded for accumulating $LINK tokens through easier access to larger contracts, also increasing $LINK’s value. Those who act maliciously, however, are punished by removal of $LINK tokens. 

    As you can see the $LINK token allows for self regulating governance of the ChainLink network. Some have suggested that payouts needn’t be in $LINK, but rather any other cryptocurrency would have done the job. Yet, ChainLink’s price performances in recent times have suggested the team in San Francisco were right to go down the native token route.

    The $LINK token can be traded on exchanges and is gaining in popularity too. Currently it ranks as the 8th highest market cap according to Coingecko. Available on most major exchanges like Coinbase Pro, Binance and OKEX ChainLink’s token has been a standout performer in recent months. Check out our Coinbase Pro review, Binance review and OKEX review.

    Unlike other companies who rely on PR and word of mouth to promote themselves, ChainLink has gone about it by courting various companies and governments around the world. Their CEO Sergey Nazarov has been on a charm offensive for a while and has secured numerous allies. This is because ChainLink provides businesses the benefits of decentralization, trust and immutability, all without them having to make a new system. Here’s some of ChainLink’s key partners.

    Other Cryptocurrencies- Bitcoin and Hyperledger

    In terms of the cryptocurrency field, ChainLink’s oracle services are available on other blockchains such as Bitcoin and Hyperledger. This openness has also opened up the door for a number of high profile partnerships with other blockchain projects that have made commentators and traders take notice of the Company.

    Synthetix Network

    In March 2019, ChainLink and Synthetix announced a partnership with the aim of improving the Synthetix platform’s price feeds. SNX, the company’s native token, receives data feeds using Chainlink’s decentralized oracle network. 

    Celer Network

    ChainLink has been used by Celer to bring accurate real world data to their layer-2 scaling solution. Now, payments executed off chain can be registered on chain making the real world and blockchain more cohesive. Their joint statement described their union as, “a combination of off-chain conditional state transition with an on-chain oracle dependency. Or put it simply, introducing the capability to combine real-world information and layer-2 scalability.”

    ChainLink and their oracles are not just reserved for the cryptocurrency industry. The use cases and partnerships stretch to major internet companies like Google. The search engine company integrated ChainLink’s oracles for its blockchain cloud service. According to a blog post, the oracles will help with data communication between Big Query and other blockchains on the cloud.  

    Chinese Government Blockchain Service Network (BSN)

    In June, the Chinese state backed Blockchain Service Network (BSN) announced its intentions to bring ChainLink in on a consultancy and application basis to help develop the BSN. Reports at the time suggested ChainLink will foster the creation of a “service hub” which would form the bedrock of its “internet of blockchains.” For a full breakdown of the partnership which also involved Cosmos, click here. 

    SWIFT 

    SWIFT is a major financial institution/telecommunications company which connects the banking world. They have brought ChainLink on board and are regularly using their technology. SWIFT began using ChainLink’s technology as now any real-world money transfer can be sent into the blockchain from SWIFT via Chainlink. So ChainLink now allows cohesion between traditional banking and the crypto sphere. 

    Other partnerships

    The partnerships don’t stop there. ChainLink has teamed up with betting company, BetProtocol to provide decentralized Esports and Sports Oracles on their website. DocuSign, an online contract company has also brought them onboard. 

    Overall, it is clear that ChainLink is an important figure within the blockchain and cryptocurrency industry. Quite how important the oracle technology proves to be will be easier to judge as the world understands and develops blockchain technology. Though currently, all signs point towards a more optimistic outlook

    As for the $LINK token, they are clearly a standout which has risen rapidly in the past few months, having gone from $3.72 in early May 2020 to reach a new all-time high of over $14. In fact, as a Forbes report noted in July 2020, the $LINK token has “soared 1,000% in just over 12 months”. One factor in the token’s recent success is the increase in partnerships since 2019. Another reason is definitely the recent DeFi fever, especially since ChainLink and the DeFi space are so interlinked as ChainLink provides oracles for the smart contracts that power various DeFi projects.

    We can also see that people also have positive thoughts on the project, a huge majority of users on Coingecko voting positively.

    Zeus Capital, purportedly an asset management and research firm published a report on 15th July 2020 accusing Chainlink of being a classic “pump and dump”. The Report alleges ChainLink of using techniques such as inside trading, artificial transactions, overhyping the project, and questioning whether ChainLink actually has partnerships with companies like Google and Oracle. According to Zeus Capital, this was to drive up the price of $LINK prior to the team dumping the coin onto innocent investors. They concluded their Report saying that “Based on our findings we have opened a short position in LINK and recommend you doing the same with a target price of USD0.07 and potential upside of nearly 100%.”

    In addition to promoting the Report through advertisements on Twitter, screenshots have also been circulating saying that Zeus Capital was offering Twitter cryptocurrency influencers rewards of up to 5 Bitcoin to post price analysis indicating that LINK prices would fall.

    Twitter user @iceberg trolls Zeus Capital asking for 5 BTC to post bad chart and Zeus Capital actually seems to accept the offer.

    Supporters of ChainLink retaliated, accusing Zeus Capital of spreading fear, uncertainty and doubt (FUD). On the day the Report was published, prices for LINK went up to $8.73. Meanwhile, the real Zeus Capital, a prominent investment banking operation based in London came forward on 20th July 2020 to say it did not produce the Reports.

    Zeus Capital then doubled down on their allegations against ChainLink by publishing a follow-up report on 31st July 2020 titled “Exposing Chainlink’s Pump and Dump Scheme”. They also doubled down on their stance in the Report: “The current tokenomics and lack of commercial applications cannot justify LINK’s price. As a result, we recommend short selling LINK with a target price of 7 US cents”. The Follow-up Report also concludes with a disclosure that they hold a short position on $LINK.

    Despite these damning reports, prices for LINK continued to remain strong. This meant that those who were shorting LINK, i.e. counting on prices to drop, were getting squeezed out of their positions. This all came to a head on the morning of 8th August 2020 when prices for LINK crossed over the USD $11 threshold. During that time, data showed that millions worth of Chainlink short positions were partially or fully liquidated. A notable example of this was a short position worth around USD$20 million which seems to have been entirely liquidated, leaving the wallet pretty dry with only USD $299.66 remaining.

    It is noted that there is no conclusive evidence to say that any of these liquidated accounts belonged to Zeus Capital. However one thing is certain- ChainLink, helped by its supporters i.e. the Link Marines were able to successfully shake off the FUD. And as at the time of this update, LINK prices had peaked at USD$14.34, almost double the prices when the first Report was published.

    2020 has been a favorable year for Chainlink ($LINK). It has been one of the best performing coins and secured its spot in the top10 assets ranking by mcap. It is now sitting at n°9 with a market cap close to $8 billion dollars.

    Chainlink is widely recognized as the most used oracle in crypto and has been a backbone for Defi’s explosion. Many are the collaborations announced, over 300, not only on the Ethereum blockchain. Chainlink is also expanding to other chains such as Polkadot and Tezos. Results have exceeded expectations and the company has also been recognized, among 6 other blockchain companies (Lightning Labs, MakerDAO, Elliptic, Bitmark, Ripio, Veridium Labs) by the World Economic Forum among the 100 most promising Technology Pioneers of 2020.

    The team has allegedly doubled its size and acquired important strategic pieces. Ari Juels, now Chief Scientist at Chainlink Labs, was one of the 2 writers of the first Proof of Work paper. He has also developed Deco, a privacy-preserving technology now acquired by Chainlink, at Cornell University together with other researchers.

    “Deco allows oracles to attest to the validity of information in trusted databases/systems without exposing it to the public or even the oracle itself using … Zero-Knowledge Proofs. Essentially, the oracle can join a user-initiated web session to attest to some requested information— possibly to verify someone’s identity, approve their financial information, or check key government records”.

    The data will never leave the selected database so the info will remain stored in trusted locations, enhancing the privacy and usability of the blockchain. An important possible application could be transactions that can meet KYC (Know Your Customer) or AML (Ant Money Laundering) requirements without exposing sensitive information on-chain.

    2021 looks certainly promising. The company will continue with its focus on security while bringing as much data as possible on-chain, from different sectors. This will provide huge improvements and development to the whole crypto space.


    Sources: Decrypt, Maxbit

    Decentralised Finance (DeFi) series: tutorials, guides and more

    With content for both beginners and more advanced users, check out our YouTube DeFi series containing tutorials on the ESSENTIAL TOOLS you need for trading in the DeFi space e.g. MetaMask and Uniswap. As well as a deep dive into popular DeFi topics such as decentralized exchanges, borrowing-lending platforms and NFT marketplaces

    The DeFi series on this website also covers topics not explored on YouTube. For an introduction on what is DeFi, check out Decentralized Finance (DeFi) Overview: A guide to the HOTTEST trend in cryptocurrency

    Tutorials and guides for the ESSENTIAL DEFI TOOLS:

    More videos and articles are coming soon as part of our DeFi series, so be sure to SUBSCRIBE to our Youtube channel so you can be notified as soon as they come out!

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • Polkastarter ($POLS) – Kickstarter for Cryptocurrencies?

    Polkastarter ($POLS) – Kickstarter for Cryptocurrencies?

    Polkastarter ($POLS) is a cross-chain decentralised protocol, powered by Polkadot, that allows start-ups to raise funds in a decentralised and interoperable environment.

    In 2020, the decentralized finance ecosystem (DeFi) recorded encouraging figures in the number of DeFi protocols, as well as the number of funds locked in these platforms. On the number of protocols, the platforms addressed different spheres such as lending, trading, and insurance.

    Unfortunately, not many protocols touched on revolutionizing conventional fundraising models such as initial coin offerings (ICOs), initial decentralized exchange offerings (IDOs), and initial exchange offerings (IEOs).

    However, projects like Polkastarter are on their way to bring a sigh of relief to startups looking for innovative ways to attract funding. Before we dig deeper into the project and what it brings to startups, let’s take a look at the group behind it.

    Background

    Daniel Stockhaus and Tiago Martins are the top brains behind Polkastarter. As project co-founders, Stockhaus is the CEO, while Martins is the CTO. Notably, the two have vast experience spanning from tech entrepreneurship to software development.

    Other members of the team include Danilo Carlucci and Matthew Dibb. Carlucci is a serial entrepreneur and angel investor, while Dibb is a strategic advisor.

    What is Polkastarter?

    Polkastarter is a decentralized platform enabling startups and other projects to attract capital through token auctions and inter-blockchain token pools. As you would have guessed from its name, the project is built on the Polkadot network that sits on Ethereum.

    Polkadaot Network

    Stockhaus settled on Polkadot because of the network’s major strengths in scalability, speed, interoperability, upgradeability, and governance. To elaborate, Polkadot surpasses Ethereum and Bitcoin transaction speed thanks to its use of parachains, which power horizontal scalability, and Grandpa consensus mechanism, which drives vertical scalability.

    Polkadot’s Proof of Stake consensus, GRANDPA (Source: Polkadot Wiki ‘Polkadot Consensus’)

    Polkastarter taps into these strengths to enable governance through community voting and staking. The network also relies on Polkadot to drive liquidity mining.

    Using these features, the project scores better than existing decentralized exchanges and swap protocols such as Uniswap, Bounce, and Primablock. For instance, these networks don’t support cross-chain pools, while Bounce and Primablock support a limited array of virtual assets.

    Polkastarter’s Use Cases and Major Features

    Polkastarter expands outside the fundraising space to crowdfunding and allows participants to benefit from discounted sales. Additionally, the protocol can increase privacy to over the counter deals by enabling password protection during such trades.

    The network differs from other similar projects since it allows:

    • Inter-chain swaps
    • Fixed and dynamic swaps
    • Community voting on critical governance issues
    • Decentralized and permissionless token listing
    • Comprehensive Know your customer (KYC) procedures
    • Users to spot scams from a distance through a built-in anti-scam feature

    Notably, combining these features brings low-cost transactions, fast cross-chain token swaps, the ability to move virtual assets across decentralized platforms, and a user-friendly design.

    How Polkastarter Handles Fixed Swaps?

    Fixed swaps pools are significant components of the network. Unlike with automated market making, fixed swap counteracts price volatility. Also, fixed swaps provide a greater level of transparency on the amount raised during fundraising.

    Polkastarter employs fixed swap pools instead of AMM swap pools. This approach solves, among other challenges, the risk of private investors artificially inflating the price and dumping their holdings and the cost of token offerings.

    Additionally, fixed swap pools ensure a fair distribution of tokens while eliminating the risk of rug pulls in a liquidity pool.

    Note that instead of using a bonding curve approach to determine token prices in a pool, Polkastarter sets a fixed price when swapping tokens. As such, it’s possible to add other parameters, such as how much a single user can contribute to a project. Additionally, it’s easier to set more parameters to ensure transparency and fairness on new token holders.

    Immediate advantages of using fixed swaps are:

    • The amount raised and tokens sold can easily be calculated.
    • It attracts investors distributed both demographically and geographically.
    • Token holders are given a chance to acquire tokens at a standard price.

    Polkastarter’s Native Token ($POLS)

    Tokenomics

    The network has a native token called $POLS, which it uses for various sections on the platform. POLS’s total supply is 100 million tokens. Exactly 42.5 percent of the tokens were sold during the seed sale, private sale, and Uniswap listing. Other tokens went to the marketing fund, team, advisors, and foundational reserve.

    $POLS Token Distribution & Utility (Source: Polkastarter Docs – What are the Tokenomics?)

    Funds raised during the sales periods went into legal/accountancy (5%), ecosystem growth (20%), liquidity/exchanges (30%), and product development (45%).

    POLS is used on the Polkastarter ecosystem as a utility token. Among its major uses are governance and fees.

    As a governance token, its holders can vote on crucial matters such as protocol features and tokens to be displayed on the network. On fees, transactions on the platform are paid using the native currency.

    Other Utilities

    • Staking – The token can be staked to earn staking rewards on various fronts. For example, it can be staked to receive pool rewards or for pool access. Note that the option to stake POL for pool access is solely upon pool creators. However, the choice is ideal for giving top liquidity providers private access to high-end pools.
    • Liquidity mining – Additionally, Polkastarter’s native currency can be staked to participate in liquidity mining. Rewards are distributed to entities providing liquidity on the secondary markets, among other subsections.

    Two Key Partnerships With Polkastarter

    Although Stockhaus and the team have inked many partnerships with reputable decentralized platforms, two stand out.

    Polkastarter and Covalent

    Covalent is a platform capable of fetching intricate details about a crypto wallet. As such, it allows Polkastarter and its users to check the trustworthiness of a token contract. The users have access to the token contract age, verification, transaction volume, among other details.

    Polkastarter and DIA

    Decentralized Information Asset (DIA) is a platform that provides distributed oracles on Polkastarter. Thanks to the exceptional qualities of its oracles, DIA helps Polkastarter provide warnings against massive price slippage.

    Other partnerships involve Moonbean, Shyft, and Orion Protocol.

    Conclusion

    By using fixed price swaps instead of AMM, Polkastarter sets the bar higher in decentralized funding. It adds the transparency and fairness aspect that has been missing on similar platforms. The projectl’s partnerships with Covalent and DIA gives its users peace of mind knowing that they can pick a suspicious project from the crowd and avoid price slippage.

    Furthermore, Polkastarter’s native token opens the door to distributed governance while giving its holders an extra way to earn rewards through staking.

    Decentralised Finance (DeFi) series: tutorials, guides and more

    With content for both beginners and more advanced users, check out our YouTube DeFi series containing tutorials on the ESSENTIAL TOOLS you need for trading in the DeFi space e.g. MetaMask and Uniswap. As well as a deep dive into popular DeFi topics such as decentralized exchanges, borrowing-lending platforms and NFT marketplaces

    The DeFi series on this website also covers topics not explored on YouTube. For an introduction on what is DeFi, check out Decentralized Finance (DeFi) Overview: A guide to the HOTTEST trend in cryptocurrency

    Tutorials and guides for the ESSENTIAL DEFI TOOLS:

    More videos and articles are coming soon as part of our DeFi series, so be sure to SUBSCRIBE to our Youtube channel so you can be notified as soon as they come out!

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • WAX ($WAXP): The King of NFTs?

    WAX ($WAXP): The King of NFTs?

    WAX Protocol ($WAXP) stands for Worldwide Asset eXchange. They are one of the safest and most convenient ways to create, buy, sell and trade virtual items i.e. non-fungible tokens (NFTs) through an integrated DPoS blockchain platform designed to work hand-in-hand with a microservice layer to improve the digital goods market’s infrastructure. Obtaining WAX knowledge has enabled innovators to develop a highly-connected and sophisticated marketplace that has brought a lot of value in digital goods projects.

    This information here will help you learn how to incorporate the WAX Protocol within the WAX Platform and how the two tools complement each other. It’s worth noting that the WAX Platform is composed of the WAX Protocol and a microservice layer.

    Learn more about WAX with our interview with Evan Vandenberg, Director of Business Development at WAX.

    Profitable digital collectibles and blockchain gaming (with WAX blockchain)

    Background

    The WAX platform was founded by William Quigley and Jonathan Yantis, together they have vast experience in blockchain technology. Quigley is also the Managing Director of Cashel Enterprises, a cryptocurrency-focused investment vehicle which has incubated and invested in over 40 blockchain and cryptocurrency projects. Meanwhile, Yantis also works as WAX’s CEO.

    The global growth of the digital goods marketplace has experienced enormous challenges for the past decade, but WAX technology has helped in finding solutions that spur the development of the sector. Although some users think that the technology has arrived late when challenges are already overwhelming, it’s actually the perfect time since blockchain has matured enough to satisfy the requirements for the WAX system to succeed.

    As the digital goods market continues to expand, it’s essential to acknowledge that tokenized consumer products and virtual items have played an instrumental role in blockchain growth. Virtual items like in video games alone have generated more than USD$140 billion for the market. On the other hand, tokenized consumer products have realized over USD$1.8 trillion.

    Considering that WAX attempts to offer remedies for a marketplace with a combined market value of over USD$2 trillion, it’s easy to realize the magnitude of the problem. The first year of incorporating WAX Protocol operations on major players like VGO and dApps has realized over USD$150 million worth of trading volume.

    What is WAX?

    Wax is a marketplace for digital assets, serving more than 400 million online players that sell, buy, and collect in-game items. Their suite of blockchain-based tools allows people to trade digital or physical items instantly and securely to anyone in the world. WAX’s platform brings together a community of collectors and traders, buyers and sellers, creators and gamers, merchants, creators of dApps and even game developers.

    Examples of what WAX can do include buying and selling gift cards to people across the globe, or building your own online store using the B2B tools created by WAX. WAX also allows people to create NFTs and send them to others.

    WAX Blockchain

    The WAX network works on a consensus model that relies on various WAX Guilds to enhance blockchain production. WAX utilizes Delegated Proof of Stake (DPoS), which depends heavily on WAX Guilds to ensure success in blockchain generation.

    The WAX ecosystem has witnessed considerable growth due to the incorporation of the WAX Token Model, which is designed to ensure success in various aspects such as voting, staking, and rewards. The Wax Staking Reward is a feature that has encouraged community participation because it allows users to vote and access rewards.

    With WAX tokens, users have immense options to explore. For instance, if staked WAX tokens haven’t been placed, a token holder will require platforms such as Scatter and Lynx to automate the process.

    WAX Tokens ($WAXP)

    WAX tokens ($WAXP) power the entire WAX ecosystem. They are used to reward participants in the chain and enable contributors to receive ten times the number of tokens purchased. This strategy makes it easier to calculate all microtransactions on the platform.

    One benefit of owning WAX tokens is that you get to earn even more tokens by voting for WAX guilds. This is called the WAX staking reward. This process is hassle-free and takes just a minute or two to join. Furthermore, you can unstake your tokens at any time.

    WAX and DeFi? WAX’s new tokenomic model explained

    In a recent announcement, WAX mentioned they will have a new tokenomic model hoping to capitalise on the rapid growth and popularity of NFTs and decentralised finance (DeFi). Their plan is to link the value generated from creating, selling and trading NFTs to Ethereum. WAX considers it different from other DeFi platforms because they consider these activities to be able to provide a sustainable source of value to stakers.

    How the new WAX inter-blockchain tokenomic model would work is that the operational functions of NFTs would still be done on the WAX blockchain, whilst Ethereum will become, “…the capital vault of the WAX NFT empire”. There are 4 components to this new tokenomic model, namely:

    • WAXP to Ethereum bridge: this new bridge will enable WAXP token holders to convert their tokens into WAXE.
    • WAXE: WAXE is a new Ethereum ERC20 utility token. Participants of the WAX tokenomics will need to burn their WAXP tokens to get WAXE tokens via the Ethereum bridge. They would then stake the WAXE in the Ethereum Distribution Contract.
    • WAXG: WAXG is a new Ethereum ERC20 governance token which will be distributed to WAXE stakers based on a set timetable and proportionate to their percentage of the WAX Economic Activity Pool. Token holders will be able to govern the allocation and distribution of economic value on the platform.
    • WAX Economic Activity Pool: This is a smart contract which will accumulate a percentage of generated WAX fees to be converted to ETH for distribution to WAXE stakers or given to WAXG token holders that decide to burn their tokens.
    WAX tokenomic process
    WAX tokenomic process (Image credit: Medium)

    For full details of WAX’s new tokenomic model, check out their article on Medium.

    WAX Guilds and Rewards

    A WAX blockchain contains 21 WAX Guilds that qualify to earn a reward. Remember, blocks can only be produced after the chain meets the threshold to earn rewards. The rewards are awarded depending on the number of blocks that every WAX Guild can produce. Standby Guilds are considered as backup operators that help to generate a chain on request.

    WAX Performance Metrics

    WAX has been configured in such a way that it releases two blocks per second. It’s worth noting that each WAX Guild can only produce one block at a time. If a block fails to come out at a specific time, other blocks will jump the queue to ensure a continuous process.

    A block that has been skipped will contend for a space in the memory pool to compete for guilds’ inclusion in the next turn. More than 3000 blockchains are usually transacted each second in the WAX system. The transaction rate is two times swifter than the VISA system can procure in the same period.

    The Future of WAX technology

    WAX Platform doesn’t only work to offer remedy for the current problems but also offers a roadmap for future operations. WAX Developer Hive is tasked with the duty of technical service provision, tutorials, and other simulations. Besides, WAX developers equally provide vital resources that make implementations successful.

    The technology has also incorporated features that will make it convenient to evaluate whether the system passes the transparency test among communities.

    Also, there’s room to allow interoperation with other chains to enhance performance. NFTs are among the candidates that need microservices and can thrive with the WAX Platform.

    Conclusion

    Gamers from across the world can substantially benefit from its secure and decentralized digital items marketplace. As WAX Platform continues to provide more improvements, developers will find several ways to create features that would better serve gamers in terms of digital goods trading.

    The platform is also expected to play an instrumental role with digital media and is set to welcome over three billion users in the coming five years.  

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • Poolz.finance ($POOLZ): boosting the potential of cryptocurrency projects?

    Poolz.finance ($POOLZ): boosting the potential of cryptocurrency projects?

    What is Poolz.finance ($POOLZ)?

    Poolz.finance ($POOLZ) aims to be the bridge between cryptocurrency projects and early investors.

    Poolz.finance has already integrated Ethereum, Polkadot and Tomochain. Projects can simply sign up with a simple Google form on the Poolz official site and they would help launch token sales on the Poolz platform.

    In addition to launching token sales, Poolz can also help projects fundraise flexibly by allowing them to specify lock-in periods whereby only after the specified period expires can investors receive tokens for their swapped amount. On the other hand, pools of tokens camn also be created for a project’s token so investors can get immediate access to the project’s tokens.

    To catch up with the yield-farming craze, Poolz also provides staking-as-a-service, allowing projects to set up staking for their token. And with that of course also brings concerns for security, which Poolz does recognise and therefore can allow projects to request token audits.

    Check out our interview with CEO and Co-founder Guy Oren.

    https://www.youtube.com/watch?v=efMxFtJLTY8&feature=youtu.be

    Poolz decentralized NFT auction house

    Poolz is also capitalizing on the popularity of Non-Fungible Tokens (NFTs) by allowing cryptocurrency projects to auction their NFTs on the Poolz auction house. Poolz has integrated the ERC-721 standard, which allows developers to code the owners’ identity and address into the NFT- making each token unique and ensuring that each NFT only has one owner.

    During this initial phase, projects can sell their NFTs for ETH and DAI. However, it is expected that more payment methods will be accepted in the future, such as the project’s native cryptocurrency or other stablecoins.

    $POOLZ token holders get exclusive benefits on Poolz’ NFT auction house such as price benefits and special access to the “last call” feature. Poolz’ “LastCall” feature comes after the conclusion of the “open” auction phase. Once the “open” auction for the NFTs are closed to the public, the “LastCall” phase opens whereby the NFT pool is exclusively open for POOLZ token holders to make their bids- thus increasing their chances of getting a winning bid before the auction finishes.

    What is the $POOLZ token and its uses?

    $POOLZ is Poolz Finance’s native ERC-20 token. $POOLZ token is mainly used as user incentives, governance, staking, token burns and project development.

    Incentives. include exclusive benefits in the NFT auction house and better swap ratios for pools running on their platform.

    Governance. The Poolz platform will implement the Proof of Stake (PoS) mechanism. This allows POOLZ holders to have voting rights when they stake their tokens in specific wallets.

    Staking. According to the Team, POOLZ token holders can get passive income from staking them in particular ERC-20 wallets. In return, these token holders will get staking rewards.

    Token burn. Poolz will use 16.67% of its daily earnings to buy $POOLZ tokens from the market and burn the same, subject to an upper limit of 20% of the POOLZ supply. This keeps the supply of tokens low.

    Project development. Poolz has reserve tokens that are allocated for future development such as marketing, exchange fees for listings, and long-term liquidity.

    $POOLZ tokenomics

    1/3 of the total $POOLZ token supply is locked and will be released over a period of 10 years. The Poolz team believes this model will ensure a low supply and keep prices high, and to show that they intend to stay with this project for the long haul.

    The allocation of $POOLZ is as follows:

    • 2.2M POOLZ (44%): Public and private sale
    • 800,000 POOLZ (16%): Staking rewards. This will be circulated in the form of average annual yields to those who stake their tokens in a compatible wallet. 80,000 POOLZ will be released each year for 10 years (i.e. 1,539 tokens per week).
    • 800,000 POOLZ (16%): Swapping rewards. These will be rewarded to liquidity providers on the participating pools on the platform. 80,000 POOLZ will be released each year for 10 years (i.e. 1,539 tokens per week). This may be subject to change via governance decisions.
    • 600,000 POOLZ (12%): Reserve. This will be for future initiatives and to support the community.
    • 375,000 POOLZ (7.5%): Team. For incentivizing the Poolz team and will be distributed over 6 months of equal vesting after a lock-in period of 1 year.
    • 125,000 POOLZ (2.5%): Advisors. Given to advisors as incentives over 1 year of monthly vesting.
    • 100,000 POOLZ (2%): Liquidity fund. This is for providing liquidity on Uniswap and other exchanges.

    $POOLZ token sale

    • Total Supply: 5,000,000 POOLZ
    • Initial Market Cap: USD $423,500
    • Fully Diluted Valuation: USD $3.5M
    • Private and public sale: 2.2M POOLZ (44% of total supply) will be allocated for private and public sales.
    • Pre Seed: 100,000 POOLZ at USD $0.35: 3 months initial lockup, then 8.33% released monthly.
    • Strategic Round: 400,000 POOLZ, at USD $0.455: 10% released upon Token Generation Event (TGE), then 9% released monthly over a period of 10 months.
    • Private Sale 1: 700,000 POOLZ, at USD$0.47775: 20% released upon TGE 20%, then 20% released monthly.
    • Private Sale 2: 900,000 POOLZ at USD $0.50050: 25% released on TGE, then 25% released monthly.
    • Auction Pools: 100,000 POOLZ at USD $0.7: no lockup period.

    The USD$1m private sale of POOLZ has already been completed and was oversubscribed by 25x. More details on the private sale.

    POOLZ token release schedule
    POOLZ token release schedule (Image credit: Medium)

    $POOLZ public token sale

    On 15th January 2021, $POOLZ will do a public sale by way of an Initial DEX Offering (IDO) and Uniswap listing.

    The IDO will be held on the Poolz platform itself so that after it goes live, you can directly buy $POOLZ from their own platform. Afterwards, $POOLZ will be available on Uniswap. There is no minimum purchase amount for this IDO.

    Note the IDO has sold out in 18 seconds

    How to buy $POOLZ on Uniswap

    The $POOLZ token will be listed on Uniswap from 15th January 2021 onwards, meaning that users will be able to buy $POOLZ on Uniswap. Buying $POOLZ can be done in 4 easy steps:

    Step 1:On Uniswap, select which cryptocurrency you want to trade $POOLZ with in the “From” row. Note that Ethereum is set as the default.

    Step 2: Set to swap for $POOLZ tokens. In the “To” row, enter the correct Poolz address. Be very sure that the address is correct or else you could risk losing your funds.

    Step 3: Enter the amount of $POOLZ token you want to obtain. Once you’ve entered the amount of $POOLZ token you want to buy, double-check the swap details and click “Confirm swap”.

    Step 4: Confirm purchase on MetaMask. After confirming on Uniswap, you will be taken to MetaMask to confirm the payment. Click “confirm”. Once the payment is processed you will receive $POOLZ tokens in your MetaMask wallet.

    Is Poolz safe?

    Poolz Finance engaged Arcadia for an independent security audit of its smart contracts. Poolz reports that Arcadia did not find any issues with their smart contracts.

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • Enjin (ENJ) Explained: Blockchain Gaming Platform

    Enjin (ENJ) Explained: Blockchain Gaming Platform

    Enjin is a blockchain gaming platform focused on the creation of digital collectible items that are truly owned by the user. The platform offers methods for creating digital assets (known as ERC1155 tokens) for use across multiple Video Games. Their uses include collectible art or even in-shop coupons. Blockchain gaming allows gamers to have true ownership of their in-game items and trade them for value.

    Enjin Platform uses Blockchain technology for these key benefits:

    • True item ownership – with transactions that cannot be censored powered by the Ethereum blockchain.
    • Convenient Exchange of value – digital items can be traded or sold instantly. The Enjin Wallet also allows users to access decentralised exchanges such as Kyber Network and Changelly.
    • Reserve Value – unwanted digital items can be “melted” into the Enjin Coin cryptocurrency.
    • Single Wallet for all items – the Enjin Wallet users to keep all digital assets in one single location.
    • ERC-1155 Token Standard – a superior version of the ERC20 and ERC721 token. Its transaction bundling and multi-send features mean it will save users’ costs.

    What is Enjin Coin (ENJ)?

    Enjin coin’s (ENJ) value comes from its use case as a stored reserve value in every item created on the Enjin Platform. $ENJ is locked up when items are created and released when items are destroyed.

    Items store (lock up) a certain amount of ENJ, with items such as the infamous “Monolith” storing 1,155,777 ENJ. ENJ from items can only be extracted by destroying the item (“via the melting process”). This creates a situation where more and more ENJ is locked up and overall supply is reduced as the platform is used by more games.

    #meltismurder
    Popular meme “Melt is Murder” discourages the destruction of items

    In terms of economics ENJ is a scarce resource and each game acts as a “value trap” for ENJ – locking up ENJ reserve and increasing the scarcity of $ENJ. With a limited supply of 1,000,000,000 $ENJ, this cryptocurrency acts as a form of “Digital Gold” – its value determined by the dynamics of supply and demand within the game’s ecosystem.

    Enjinx showcases all valuable assets and games on the Enjin Plastofrm

    Cross-game items – Enjin Multiverse

    One of the unique advantages of Blockchain gaming is the ability to create items that can be used across different games by different developers. This means players can carry their items between games like it is a single world (also known as the Multiverse).

    Multiverse items are possible because assets are stored on a decentralised blockchain – so independent developers can all access the item. To encourage the development of cross game items, Enjin announced its newest asset the Stormwall. It is an example of what we can expect with its gaming assets. Stormwall is a shield that moves across Enjin’s Multiverse of games.

    In the below video we see Stormwall being as a playable item in 32 different games including 9Lives Arena, Age of Rust, Cats in Mechs and more.

    Why is a Multiverse Beneficial?

    One of the biggest questions asked about cross-game items is – why is it beneficial for game developers and players? For developers, supporting cross-game items mean that they gain the benefits of additional exposure from games participating in the multiverse and increased retention from players who want to test out the item. This is especially important in this age as player attention is extremely valuable and having players “check out” how an items works in a different game drastically improves player interest.

    For players, having cross-game items mean that their items are naturally move valuable, especially long term value. This means that the effort used to earn valuable items are not wasted if they can be used in new upcoming games.

    The Enjin Coin Ecosystem

    Enjin have created an entire ecosystem where you can create, store, trade and use these items.

    • Enjin Wallet – Cryptocurrency wallet to safely store cryptocurrencies, blockchain gaming assets and exchange value. For more information check our EnjinWallet review.
    • EnjinX – Blockchain explorer to view transactions and items
    • Unity Plugin – Allows game developers to directly implement and issue items in games on multiple platforms like iOS, android, PC and MacOS.
    • Marketplace – buy and list items with the safety of smart contracts that independently facilitate the trade.

    Enjin for Mobile Games

    One of the biggest use case for non-fungible tokens is in mobile games. Mobile gaming is currently valued at $63.2 billion USD globally and growing on a year by year basis (Source: newzoo). Enjin has a direct partnership with game engine Unity which hosts the Enjin SDK which allows for easy integration of Blockchain assets directly into the game.

    Enjin Partnerships

    Enjin has a strategic partnerships with increase the rate of adoption of Blockchain Gaming and growth of the ecosystem. On the gaming side there is a partnership is with cross-platform game engine Unity with the introduction of the SDK

    The Enjinwallet has recently become the first wallet to offer full Binance Chain and all BEP-2 (Mithril, ChangeNow) based tokens.

    Enjin and Samsung Partnership

    Samsung’s s10 presentation at MWC Barcelona 2019 that broke the internet

    Enjin has been partnered with smartphone manufacturer Samsung Electronics to as a technology provider. Enjin Wallet directly interacts with the Samsung’s Blockchain Keystore, a trusted zone on new Samsung devices which is specifically designed to key cryptographic private keys safe. Samsung will also support Enjin’s ERC-1155 token standard and increase the adoption of Blockchain based non-fungible tokens.

    Enjin and Microsoft Partnership

    Microsoft Azure Heroes using Enjin ERC 1155
    Microsoft Azure Heroes using Enjin ERC 1155

    Microsoft has chosen Enjin as technology provider with the deployment of Azure Heroes, a program that will directly use ERC-1155 non-fungible tokens as a reward. This Blockchain-based reward will be given to contributors who help produce material for the Microsoft Azure platform, with participants given cute badge(r)s. For example, makers that contribute to the developer community or content heroes will be given rare badgers.

    These collectable badgers are a proof of achievement as an Azure Hero which you can show off on your social media. As these are tokenized assets on the blockchain, they cannot be faked. So no fake achievements or heroes here!

    https://twitter.com/AzureHeroes/status/1310851813164412928

    Enjin has entered the (DeFi) game

    Enjin Coin (ENJ) is now supported by the Aave Protocol. This means users can deposit ENJ in the Aave Protocol and earn interest whilst others borrow your ENJ. The Aave Protocol protects your deposits as it is controlled by immutable and transparent Ethereum smart contracts. Your ENJ is also secured by other cryptocurrencies left on the Protocol as collateral.

    How to connect Enjin Wallet to Aave Protocol

    Now with the Enjin-Aave partnership, you can directly interact with the Aave Protocol with your Enjin Wallet (which in our opinion is the best mobile wallet EVER). Here’s how: On the Enjin wallet, go to “DApp Browser”. On the search bar, go to app.aave.com. Click “Browser wallet” and when asked to choose your market, choose “Aave Market”.

    Connect Enjin Wallet to Aave Protocol
    Connect Enjin Wallet to Aave Protocol

    Enjin and BMW

    After much speculation, Enjin has confirmed they are partnering up with BMW to integrate Enjin Coin token swap into BMW’s Vantage App. The Vantage App is a Korean customer loyalty app for car-owners. Users can use the app to pay for goods/services such as gas, highway tolls and parking fees. There will also be referral rewards for dining and shopping.

    Purchases on the BMW Vantage app are rewarded with BMW Coins which can be used as spending for various activities and be swapped for ENJ.

    Note the token swap feature is not available on the Vantage App yet and according to Enjin, more details will be available once it is live.

    Enjin putting property on NFTs with LABS Group partnership

    Enjin is helping LABS Group put property on NFTs and the blockchain with its partnership.

    LABS Group will be using Enjin’s NFT minting platform to tokenise real estate on the blockchain. LABS Group will be offering fractionalized deeds of real estate for as low as USD$100, allowing retail investors (particularly millennials) to finally enter and invest in the real estate market.

    The range of real estate on offer will include buildings, hotel rooms and apartments. Trades will all take place securely through the regulated LABS Security Exchange.

    This marks the introduction of blockchain into the world’s oldest and largest asset class, valued at approximately USD$228 trillion.

    Enjin enters Japanese cryptocurrency market

    Enjin will be the FIRST gaming cryptocurrency to be listed on Japanese cryptocurrency exchanges. And it is going straight for the top with one of the largest cryptocurrency exchanges- Coincheck.

    Enjin ($ENJ) will be listed on Coincheck from 26th January 2021.

    This is a significant first step for Enjin into the Japanese market. Enjin’s aims are twofold- for ENJ to be approved by Japan’s finance regulators and to promote adoption of the Enjin Platform in the Japanese gaming industry.

    This listing was one and a half years in the making, having to pass the rigorous auditing and monitoring of the Japanese Virtual Currency Exchange Association (JVCEA)- formally recognised by Japanese financial regulators, the Japanese Financial Services Agency (FSA). The approval process for cryptocurrencies in Japan is notoriously difficult, with only 15 cryptocurrencies (including Enjin) being approved for listing on Coincheck.

    Japan also has a fiercely competitive cryptocurrency exchange market with over 20 exchanges in operation. Coincheck is one of the largest cryptocurrency exchanges in Japan based on volume, founded in 2014 with over 1.7m users and counting, and prides itself on being the top downloaded cryptocurrency app in Japan.

    As Enjin now has its foot in the door of the Japanese market, the Enjin team is now in discussions with various domestic companies and projects. With Japan being the pioneers of the gaming world (think Super Mario, Pokemon and Final Fantasy), it will be interesting to see what innovations Enjin can bring to the space.

    See Enjin’s official announcement on the Coincheck listing.

    Frequently Asked Questions

    Does it cost ENJ to transfer tokens on Enjin Chain?

    Enjin isn’t a blockchain, rather it’s a project built on Ethereum. In order to transfer Items (non-fungible tokens), you’ll need to use ethereum (similar to how ERC20 tokens work). In the future Enjin is explorer additional scaling options (Efinity) to allow for free item transfers.

    What is the most EXPENSIVE item on ENJIN

    The Monolith is the most expensive item on ENJIN, with 1,155,777 ENJ locked in the item. At the time of writing, this item is worth $168,000 USD!

    What makes ENJIN valuable

    ENJIN is a scarce resource, used to lock value into ever item created on the ENJIN platform. This means as time progresses and more games create items on ENJIN, more and more $ENJ will be locked up creating scarcity in supply

    Where can I buy Enjin

    $Enj is listed on all major exchanges, such as Binance.

    Other Resources:

    EnjinX – Blockchain explorer that tracks the Ethereum Blockchain, ERC-20 and ERC-1155 items
    Egamers – Enjin Games news website
    Everything Enjin – Great site covering Enjin Related News
    Multiverse Era – Telegram Channel about the Enjin Multiverse
    Castle Crypto – Coverage of Enjin games
    AsiaCryptoToday – cover of Enjin Platform

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • DAO Maker ($DAO): can retail investors become venture capitalists?

    DAO Maker ($DAO): can retail investors become venture capitalists?

    One notable challenge for every startup is finding the required capital to set up businesses. This is where concepts like venture capital help such businesses to meet the required level of capital to help them blossom. However, this has traditionally been a field accessible by funds and institutions with ample resources.

    DAO Maker is here to improve the process for both parties by respectively creating growth technologies and funding frameworks for startups, and reducing risks for investors.

    Background and Team

    The Founder of DAO Maker is Christoph Zaknun who entered the cryptocurrency space in 2017. The idea of private permissionless money and the gains associated with cryptocurrency lured him further into the creation of ICO DOG, a platform that allowed for investing in token presales.

    His Co-founder, Giorgio Marciano, also acts as DAO Maker’s CTO. Marciano has over 16 years of experience in developing software and products.

    Other notable team members include Hatu Sheikh, who has overseen over 35 crypto assets marketing campaigns, and Malte Christensen, who works as the COO and Head of Sales, Dima, who works as the Head of Visual Communication.

    What is DAO Maker?

    DAO Maker is a provider of a participation framework that allows retail investors (small-scale investors) to participate in global retail venture capital. Essentially, the primary goal of DAO Maker is to raise a fundraising platform that would allow for equal participation of crowd equity and tokens.

    The reality is that most of these small-time investors are likely unable to afford to invest large sums of money in venture capital. DAO fills the gap by enabling the average man on the street an opportunity to grow his own capital. This creates a win-win situation, the business is able to effectively provide a new source of funding while at the same time helping to improve the lives of many.

    Achievements of DAO Maker

    The platform has over time proven itself to retail investors. In the last 2 years, over 70,000 unique retail investors were signed up and allowed to participate in the funding of early-stage ventures. Apart from attracting investors, DAO Maker has also been able to attract startups with enormous potential to join the burgeoning ecosystem.

    Advantages of DAO Maker

    One major reason these startups join the DAO Maker ecosystem is simple: it provides them a safe, decentralized, and free environment that allows them to reach their potentials. In addition, the platform also has one of the leading solutions that would allow for the growth of these companies.

    As a result, the ecosystem has seen a marked increase in the demand for its services, which enabled them to begin working on a permission version.

    DAO Maker’s approach to fundraising stands out since not only does it connect startups with funding, it also assiduously works to assist them in facing challenges in the initial stages of their development.

    This is why the track record of the fundraising platform has defied many market cycles.

    DAO Maker’s Venture Bond

    DAO Maker’s new flagship product is Venture Bond. It allows startups to issue bonds that users can access, whilst users benefit from close to zero-risk venture investments.

    Venture Bonds work as follows:

    • startups issue Venture Bonds;
    • users purchase these bonds, giving the startups a principal sum of money;
    • startups then use the principal sum generated by bond purchases to generate interest through insured margin funding activities in decentralised finance (DeFi) or centralised finance (CeFi);
    • the generated interest serves as the funding for the startups;
    • the startup will then deposit tokens/equity to the Venture Bond holders; and
    • when the Venture Bond matures, the principal sum is returned to the buyer, so they are left with both their initial funding and also any newly acquired tokens or equity.
    DAO Maker's Venture Bonds
    DAO Maker’s Venture Bonds (Image credit: DAO Maker)

    Other DAO Maker Services

    Other notable services of DAO Maker are Refundable Strong Holder Offering and Dynamic Coin Offering.

    Strong Holder Offering

    Strong holder offerings are designed to build a community that would actively participate in providing an increased level of awareness for a company, and at the same time, induce confidence by imposing a strict refund policy.

    DAO Maker strong holder offerings
    DAO Maker strong holder offerings (Image credit: DAO Maker)

    Dynamic Coin Offering

    For dynamic coin offerings, 100% of the circulating supply is backed by a notable portion of the funds raised during the sale.

    DAO Maker then escrows this fund through a trusted and insured custodian, allowing the platform users the opportunity to claim a refund within a specified period.

    Social Mining

    One of the earliest offerings of DAO Maker is Social Mining, which has played a pivotal role in the successful launch of some tokens in the space. The software was conceptualized in 2018, and since then, it has seen various upgrades and usage, which made it an essential part of the DAO Maker community.

    What social mining does is simple; it enables any project to create token-based incentives that encourages community members to offer value. In other words, it helps energize a project’s community to participate in its growth and development.

    The first use of this software was with LTO Network, where it served as a core component in the community creation of the project, and subsequently enjoyed tremendous growth despite the bear market of 2018. Despite the notable success of this first project (LTO), there were still some notable lapses like the dependence of the software on centralized involvement, which negated the core idea of building a decentralized and self-organizing community in the first place.

    However, since then, the team of developers have developed the software to allow pluggable DAOs and also allowing for stake-based voting. The voting allowed the community to determine the value each token holder contributed to the project. This voting system became a quite effective distribution network that was decentralized as token holders were the ones in charge.

    As it stands, work has already begun on the two key pathways social mining is being geared to: granting permissionless support for tokenized startups and permissioned access for equity startups.

    DAO Maker Token ($DAO)

    DAO, the protocol’s native token currently allows its holders to stake in the platform and enjoy governance power in submitting proposals, as well as vote on them.

    By participating in governance, stakers would also receive a part of the fee generated from the source. And in order to promote long-term participation, the staked DAO tokens are locked for a period of time.

    As can be seen below, more utilities for the DAO token are in the works.

    Conclusion

    The idea behind DAO Maker is to create a platform where startups can enjoy early stage exposure from retailers. Thus, DAO Maker could be a single platform that elevates the capabilities of ordinary retail investors. The platform would also enable them to be issued with equity, while others are issued with tokens. All in all, the platform will enable varying levels of downside protection as early-stage startups face inevitable risks in their early days.

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • DODOEx ($DODO): A Revolutionary On-Chain Liquidity Provider

    DODOEx ($DODO): A Revolutionary On-Chain Liquidity Provider

    DODO Exchange ($DODO) is a platform that supplies on-chain liquidity in order to support the Proactive Market Maker algorithm (PMM) to provide everyone with pure and contract-fillable liquidity on the blockchain.

    Overview

    The dawn of decentralized exchanges (DEXs) and decentralized finance (DeFi) brought with it automated market-making (AMM). Unlike in centralized exchanges, AMM doesn’t rely on buyers and sellers for a trade to take place. Instead, smart contracts sit at the center of the trade with liquidity pools providing the reserves.

    Unfortunately, in the DeFi scene, the AMM approach has faced challenges as to how to address issues such as slippage and impermanent loss effectively. As a result, platforms such as DODOEx are using a fined-tuned formula known as proactive market maker (PMM) which provides minimum slippage and improved fund utilization. Here, we take a close look at DODOEx, its contribution to the DeFi world, as well as what makes it unique.

    Background

    DODOEx, founded by three veterans in the blockchain industry, who has huge influencing power in China’s DeFi Community – Mingda Lei, Qi Wang and Diane Dai.

    Mingda Lei, he is the architect behind this new market-making algorithm for the protocol. He was a Physics PhD dropout from Peking University. He used to worked for a China-based DeFi project called DDEX as the key developer of the project. The second co-founder is Qi Wang. He is the founder of DOS Network, a China-based layer two oracle project. Before entering into the crypto industry, Wang used to worked as a software developer for firms like Pure Storage and Oracle. The third co-founder, Diane Dai, she started the first subscription-based WeChat channel that focuses on DeFi in China called DeFi Labs.

    Apart from the influencing team, DODOEx is also backed by many prominent investors such as Framework Ventures, DeFiance Capital, Pantera Capital, Binance Labs, Coinbase Ventures, Alameda Research, SevenX Ventures and more.

    What is DODOEx?

    Simply put, DODOEx is a decentralized liquidity provider using a new market making strategy. Notably, the new algorithm differs greatly from the AMM approach common with popular DEXs and/or DeFi platforms such as Uniswap and Curve.Finance.

    For example, instead of spreading funds uniformly over a price range, PMM allocates funds with close respect to market prices. One disadvantage of equally allocating funds is that only those funds with a close connection with the market price get utilized in trades. Therefore, in an AMM scenario, there’s a huge difference between the liquidity provided and the liquidity that is actually in use.

    DODO Exchange
    DODO Exchange (Image credit: DODO Exchange Website)

    How DODOEx Uses PMM to Beat AMM

    Compared to Uniswap’s AMM, DODOEx’s PPM has a better trading amount-vs-price curve. Why? Because, being a proactive formula, it reacts to the changes in the market price to effectively shift the price curve in a similar direction. Consequently, the section around the market price is considerably flat, ensuring sustained liquidity provision and utilization.

    DODOEx-Proactive Market Maker
    DODOEx – Proactive Market Maker (Image credit: “DODO: A Revolution in On-Chain Liquidity” Medium Article)

    Furthermore, apart from shifting the curve, DODOEx unlinks the base currency from the quote currency in a trading pair. Interestingly, this results in less risk and allows liquidity providers (LPs) to use the token at their disposal.

    For instance, if it’s an ETH-DAI trading pair, the LP has to deposit either ETH and DAI. Under these circumstances, DODOEx presents numerous advantages to traders and LPs

    Advantages of DODOEx to Traders

    • Although the protocol is decentralized, DODOEx traders have enough liquidity close to what is offered by centralized platforms.
    • There’s a possibility of having price differences between other exchanges and DODOEx which can be commercialized by arbitrageurs.
    • Liquidations, auctions, and other on-chain activities powered by smart contracts can utilize liquidity from DODOEx.

    Advantages of Using DODOEx as an LP

    • By unlinking the base and quote tokens, LPs can use any asset type at their disposal.
    • No minimum restrictions on deposits.
    • LPs share the network’s transaction fees.
    • LPs don’t incur price risks when depositing their own tokens.
    • They can use their coins to create trading pairs.

    DODOEx’s Native Token ($DODO)

    DODO is an ERC-20 token and forms DODOEx’s native currency. DODO is the platform’s governance token. DODOEx’s governance structure consists of three decentralized autonomous organizations (DAO); admin, risk control, and earn.

    The admin DAO is responsible for overseeing all the decisions made on the DODOEx ecosystem. Being the administrator, it has a considerable influence on the other DAOs.

    The risk control DAO, as the name suggests, deals with the system’s risk features. Earn, on the other hand, governs how incentives are shared on the platform.

    DODO token distribution
    DODO Token Distribution (Image credit: “Announcing the DODO Token and Initial DODO Offering” Medium Article)

    DODO’s total supply is 1,000,000,000 tokens which are allocated to the core team (15%), investors (16%), initial liquidity provision (1%), operations/marketing (8%), and lastly, the DODOEx community takes 60%.

    DODO’s Initial DODO Offering (IDO)

    The IDO was held on 29 September 2020 on DODO Exchange platform. DODO Exchange has listed the DODO-USDT trading pair. 1% of the total DODO supply is locked in the DODO liquidity pool and the initial offering price is $0.10 per token.

    Earning DODO: Staking and Mining

    The DODOEx system provides two ways to earn DODO tokens; staking and mining.

    Staking

    This involves locking your present DODO token holding and acquiring more tokens in the process. This can be done by:

    • Accessing the exchange through app.dodex.io.
    • Connecting your wallet through MetaMask.
    • Click “mining” on the upper far right corner.
    • Select DODO.
    • Click stake (note that there’s no way to edit the stake or unstake amount. Therefore, you can either stake or unstake your entire DODO balance).
    • Confirm your option on the exchange and on the wallet.

    Mining DODO 

    It involves providing liquidity in any supported trading pair using the pool tab. To access the pool option,

    • Visit app.dodoex.io.
    • Connect your wallet through MetaMask.
    • Select “Exchange” from the top right.
    • Click on “pool” and select your preferred pair. Note that you can deposit any coin on the trading pair. For example, if it’s the ETH-UDSC pair, you can deposit either ETH or USDC.
    • Click “Deposit,” define the token amount you wish to deposit, and select “Confirm.”
    • Access your wallet to confirm the transaction after which you click the “mining” button on the top right corner.
    • Approve the transaction and confirm it in the popup window that appears. In effect, another approval is required since you are now dealing with DLP tokens allocated from depositing your cryptocurrency on the above steps.
    • In the last step, confirm and stake.

    Core Components of the DODO Contract Framework

    A set of smart contracts powers the DODOEx protocol. However, for optimal interaction, these smart contracts are divided into three core components. They include:

    The Core – This holds all the ecosystem’s data and logic. It consists of the transparent proxy contract and the logic implementation contract.

    DODO contract framework
    DODO Contract Framework (Image credit: DODOEx ‘Smart Contract Framework’ Github)

    The Entrance – The entrance contract helps in streamlining activities on the transparent proxy contract, which is associated with oracles and fine-tuning parameters. Consequently, it helps mitigate the losses for users.

    The Helper – This section of the DODOEx ecosystem holds contracts that are meant to help remove the complexity of the platform away from its users.

    Conclusion

    The network’s next-generation liquidity provision algorithm ensures high fund utilization and ensures LPs don’t lose value between depositing and withdrawing, commonly known as impermanent loss.

    In addition, DODOEx is beneficial to both traders and liquidity providers. For example, it provides enough liquidity for traders and LPs share a section of the system’s transaction. Also, DODO mining and staking enable investors to increase their token holdings.

    Decentralised Finance (DeFi) series: tutorials, guides and more

    With content for both beginners and more advanced users, check out our YouTube DeFi series containing tutorials on the ESSENTIAL TOOLS you need for trading in the DeFi space e.g. MetaMask and Uniswap. As well as a deep dive into popular DeFi topics such as decentralized exchanges, borrowing-lending platforms and NFT marketplaces

    The DeFi series on this website also covers topics not explored on YouTube. For an introduction on what is DeFi, check out Decentralized Finance (DeFi) Overview: A guide to the HOTTEST trend in cryptocurrency

    Tutorials and guides for the ESSENTIAL DEFI TOOLS:

    More videos and articles are coming soon as part of our DeFi series, so be sure to SUBSCRIBE to our Youtube channel so you can be notified as soon as they come out!

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.

  • Coin DeFi($COIN): Cross-chain P2P DEX powered by AI?

    Coin DeFi($COIN): Cross-chain P2P DEX powered by AI?

    Coin DeFi ($COIN) aims to disrupt finance services by democratizing the industry, returning financial sovereignty to the people via decentralized Finance (DeFi). Through Coin Protocol, anyone can make cross-border and peer-to-peer transactions with ease and convenience, without incurring expensive fees. It also offers greater profit-generating opportunities through its stake-based incentive program.


    Background

    Coin DeFi is a project founded by Damon Nam (also the project’s CEO), who worked with Microsoft for 16 years, and has more than 20 years of experience in the tech industry. The team’s CTO, Byron Levels, also worked with Microsoft for 8 years.

    A group of advisors coming from different fields of expertise is supporting the development of the platform. These are professionals who have been known to work on blockchain, artificial intelligence (AI), and marketing initiatives, such as Christina Apatow, founder of FetchyFox, Pete Cashmore, founder of Mashable, Alex Mashinsky, founder of the Celsius Network, and Jeremy Gardener, founder of Augur.

    What is Coin DeFi?

    Coin DeFi is an Ethereum-based DeFi platform designed to facilitate a peer-to-peer transaction system that implements a community-based governance model. Through the platform, users can conveniently conduct cross-border money transfers, purchase cryptocurrencies, and earn additional profit from their assets through staking.

    There are two main components to the Coin ecosystem, namely, the COIN protocol and COIN token.

    COIN Protocol

    The COIN protocol is the project’s blockchain platform powered by smart contracts. The deployment of smart contracts enables the network to achieve greater performance and scalability while facilitating peer-to-peer transactions without the need for any third-party oversight.

    The COIN token is the backbone of the protocol’s economy. It is the platform’s native cryptocurrency asset that primarily functions as a medium of exchange as well as a staking token. It is also required for the execution of smart contracts on the platform and in backing the incentive scheme for the protocol’s liquidity providers. More details on this later.

    COIN Exchange

    The platform also features a non-custodial, peer-to-peer crypto-assets exchange. COIN Exchange is a cross-chain, decentralized wallet and exchange supported by smart contracts that enable atomic swaps complemented with AI technology.

    Some of the digital assets that can be traded in the protocol are Bitcoin (BTC), Ethereum (ETH), and a selection of ERC-20-compliant tokens. Since the platform features cross-chain atomic swaps, a user can trade any token with another digital asset through the platform, even if they belong to different chains.

    To facilitate these peer-to-peer trustless, and cross-chain swaps on the exchange, it utilizes Hashed Timelock Contracts (HTLC). Basically, this is a system that requires transaction recipients to first acknowledge payments by way of a cryptographic proof within a defined time period, which is also the same technical framework implemented in Bitcoin’s Lightning Network.

    Liquidity

    Liquidity is a common concern amongst many decentralized exchanges (DEXs). To address this, COIN partnered with Coinbase to leverage their order books. This is facilitated by a matching algorithm that combines the liquidity in COIN and Coinbase order books.

    What the platform earns from transaction fees, they use for their COIN buyback programs and pool deposits. Here, half of what they earn is redistributed to liquidity providers and market makers as a reward. The rest is allocated to buy COIN tokens back to support its supply of liquidity and staking reserves.

    Governance Model

    The governance of the platform follows the Decentralized Autonomous Organization (DAO) model, one that is community-driven.

    In this framework, COIN holders are considered the protocol’s stakeholders. Developers on the platform can propose protocol amendments, upgrades, features, and other changes, which stakeholders have to vote on before they are deployed. If the community doesn’t agree with any proposed modification on the protocol, it can be rejected by the community if it doesn’t garner enough votes.

    Coin DeFi’s Native Token ($COIN)

    COIN is the platform’s native utility token. Apart from functioning as a medium of exchange, the token can be used to pay for the platform’s transaction fees, staking, and voting. The incentive system of the platform also utilizes COIN tokens as its rewards.

    COIN is also a network access token, which means that the token is required to execute smart contracts, represent their voting rights, and compensate liquidity providers.

    $COIN Buybacks (Source: CoinDefi Pitch Deck)

    Staking

    $COIN can be used to supply liquidity to the platform. Furthermore, there are smart contracts designed to enable staking functions on the protocol. COIN holders only need to deposit their tokens and lock them in smart contracts. In return, they can earn additional COIN tokens as a reward.

    The reward for stakers is in proportion with the amount that they staked, prevailing interest rates, and the duration of their stake.

    A portion of the COIN tokens deposited on staking smart contracts goes to the platform’s staking reserve. This is used to supply funds that are redistributed to long-term COIN stakers. Around 25% of all COIN tokens in circulation fills the supply of this pool.

    $COIN Distribution (Source: CoinDefi Pitch Deck)

    Coin DAO

    The protocol also enables the implementation of a DAO, through a stakeholder model represented by COIN tokens, which enables the community to gain better control over the direction of the platform, including the introduction of new products, amendments to the existing protocol, and other forms of protocol modification, through a stake-based voting system.

    COIN holders can deposit tokens in the governance smart contract within the platform. The amount of tokens that holders lock in these contracts guarantee them an equivalent voting power on the platform. For example, a user who has locked 100 COIN tokens gains an equivalent of 100 votes as a consequence.

    Conclusion

    There are a lot of DeFi projects in the cryptocurrency space today. While Coin DeFi’s objective is a promising alternative away from the traditional financial system, it certainly comes with a lot of other competitors in DeFi offering the same financial products and services as well.

    From where the project stands today, it still has a lot to prove when compared with the more prominent DeFi platforms and exchanges. Perhaps its biggest strength is its AI assistant implementation to support platform users, but we have yet to see how that will be developed for the benefit of its user base. As a relatively young DeFi project, how it will grow its own community in the months ahead is going to be a significant factor in assessing how successful the project can be.

    Decentralised Finance (DeFi) series: tutorials, guides and more

    With content for both beginners and more advanced users, check out our YouTube DeFi series containing tutorials on the ESSENTIAL TOOLS you need for trading in the DeFi space e.g. MetaMask and Uniswap. As well as a deep dive into popular DeFi topics such as decentralized exchanges, borrowing-lending platforms and NFT marketplaces

    The DeFi series on this website also covers topics not explored on YouTube. For an introduction on what is DeFi, check out Decentralized Finance (DeFi) Overview: A guide to the HOTTEST trend in cryptocurrency

    Tutorials and guides for the ESSENTIAL DEFI TOOLS:

    More videos and articles are coming soon as part of our DeFi series, so be sure to SUBSCRIBE to our Youtube channel so you can be notified as soon as they come out!

    Disclaimer: Cryptocurrency trading involves significant risks and may result in the loss of your capital. You should carefully consider whether trading cryptocurrencies is right for you in light of your financial condition and ability to bear financial risks. Cryptocurrency prices are highly volatile and can fluctuate widely in a short period of time. As such, trading cryptocurrencies may not be suitable for everyone. Additionally, storing cryptocurrencies on a centralized exchange carries inherent risks, including the potential for loss due to hacking, exchange collapse, or other security breaches. We strongly advise that you seek independent professional advice before engaging in any cryptocurrency trading activities and carefully consider the security measures in place when choosing or storing your cryptocurrencies on a cryptocurrency exchange.