Friday, June 26, 2015

WSO2 API Manager - Modify token API to return with Access-Control-Allow-Origin Response Header

By default API Manager is not returning Access-Control-Allow-Origin response header in token API.

You can easily do this by modifying the _TokenAPI_.xml at
<AM_HOME>/repository/deployment/server/synapse-configs/default/api/
by including the above property to the out sequence just before the send mediator.

I have tested this with AM 1.7.0 and please find the modified _TokenAPI_.xml as follows.

<api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMTokenAPI_" context="/token">
    <resource methods="POST" url-mapping="/*" faultSequence="_token_fault_">
        <inSequence>
            <send>
                <endpoint>
                    <address uri="https://localhost:9443/oauth2/token"/>
                </endpoint>
            </send>
        </inSequence>
        <outSequence>
                <property name="Access-Control-Allow-Origin"
value="http://192.168.1.5:80,http://192.168.10.200:80,https://dev.wso2.com,https://sup.wso2.com"
scope="transport"
type="STRING"/>
            <send/>
        </outSequence>
    </resource>
    <handlers>
        <handler class="org.wso2.carbon.apimgt.gateway.handlers.ext.APIManagerCacheExtensionHandler"/>
    </handlers>
</api>

I have tested by sending a cURL request to this token API as follows.

curl -vk -d "grant_type=password&username=admin&password=admin" -H "Authorization: Basic Vnc5cXhhWHE5WGo1Wl8xdWVvc3FEbFN0d1RBYTpJTVNsV0ZOQ01KN1JmRmtPT1RpZF9iTWpWZlFh, Content-Type: application/x-www-form-urlencoded" https://localhost:8243/token

cURL command console output is as follows.

Suhans-MacBook-Pro:bin suhanr$ curl -vk -d "grant_type=password&username=admin&password=admin" -H "Authorization: Basic Vnc5cXhhWHE5WGo1Wl8xdWVvc3FEbFN0d1RBYTpJTVNsV0ZOQ01KN1JmRmtPT1RpZF9iTWpWZlFh, Content-Type: application/x-www-form-urlencoded" https://localhost:8243/token
* Hostname was NOT found in DNS cache
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 8243 (#0)
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
* Server certificate: localhost
> POST /token HTTP/1.1
> User-Agent: curl/7.37.1
> Host: localhost:8243
> Accept: */*
> Authorization: Basic Vnc5cXhhWHE5WGo1Wl8xdWVvc3FEbFN0d1RBYTpJTVNsV0ZOQ01KN1JmRmtPT1RpZF9iTWpWZlFh, Content-Type: application/x-www-form-urlencoded
> Content-Length: 49
> Content-Type: application/x-www-form-urlencoded
>
* upload completely sent off: 49 out of 49 bytes
< HTTP/1.1 200 OK
< Access-Control-Allow-Origin: http://192.168.1.5:80,http://192.168.10.200:80,https://dev.wso2.com,https://sup.wso2.com
< Content-Type: application/json
< Pragma: no-cache
< Cache-Control: no-store
< Date: Fri, 26 Jun 2015 06:08:36 GMT
* Server WSO2-PassThrough-HTTP is not blacklisted
< Server: WSO2-PassThrough-HTTP
< Transfer-Encoding: chunked
<
* Connection #0 to host localhost left intact
{"scope":"default","token_type":"bearer","expires_in":3299,"refresh_token":"e8a1c130b372a0021f46bf9933a6a20","access_token":"e4fcf0346a647f10455b871630cba0fc"}
API Manager carbon log is as follows. To enable wirelogs on API Manager you can follow [1]. It is a similar process as ESB.
[2015-06-26 11:38:36,238] DEBUG - wire >> "POST /token HTTP/1.1[\r][\n]"
[2015-06-26 11:38:36,238] DEBUG - wire >> "User-Agent: curl/7.37.1[\r][\n]"
[2015-06-26 11:38:36,238] DEBUG - wire >> "Host: localhost:8243[\r][\n]"
[2015-06-26 11:38:36,238] DEBUG - wire >> "Accept: */*[\r][\n]"
[2015-06-26 11:38:36,238] DEBUG - wire >> "Authorization: Basic Vnc5cXhhWHE5WGo1Wl8xdWVvc3FEbFN0d1RBYTpJTVNsV0ZOQ01KN1JmRmtPT1RpZF9iTWpWZlFh, Content-Type: application/x-www-form-urlencoded[\r][\n]"
[2015-06-26 11:38:36,238] DEBUG - wire >> "Content-Length: 49[\r][\n]"
[2015-06-26 11:38:36,238] DEBUG - wire >> "Content-Type: application/x-www-form-urlencoded[\r][\n]"
[2015-06-26 11:38:36,238] DEBUG - wire >> "[\r][\n]"
[2015-06-26 11:38:36,239] DEBUG - wire >> "grant_type=password&username=admin&password=admin"
[2015-06-26 11:38:36,252] DEBUG - wire << "POST /oauth2/token HTTP/1.1[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "Authorization: Basic Vnc5cXhhWHE5WGo1Wl8xdWVvc3FEbFN0d1RBYTpJTVNsV0ZOQ01KN1JmRmtPT1RpZF9iTWpWZlFh, Content-Type: application/x-www-form-urlencoded[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "Content-Type: application/x-www-form-urlencoded[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "Accept: */*[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "Transfer-Encoding: chunked[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "Host: localhost:9443[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "Connection: Keep-Alive[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "User-Agent: Synapse-PT-HttpComponents-NIO[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "[\r][\n]"
[2015-06-26 11:38:36,253] DEBUG - wire << "31[\r][\n]"
[2015-06-26 11:38:36,254] DEBUG - wire << "grant_type=password&username=admin&password=admin[\r][\n]"
[2015-06-26 11:38:36,254] DEBUG - wire << "0[\r][\n]"
[2015-06-26 11:38:36,254] DEBUG - wire << "[\r][\n]"
[2015-06-26 11:38:36,349] DEBUG - wire >> "HTTP/1.1 200 OK[\r][\n]"
[2015-06-26 11:38:36,349] DEBUG - wire >> "Cache-Control: no-store[\r][\n]"
[2015-06-26 11:38:36,349] DEBUG - wire >> "Date: Fri, 26 Jun 2015 06:08:36 GMT[\r][\n]"
[2015-06-26 11:38:36,349] DEBUG - wire >> "Pragma: no-cache[\r][\n]"
[2015-06-26 11:38:36,350] DEBUG - wire >> "Content-Type: application/json[\r][\n]"
[2015-06-26 11:38:36,350] DEBUG - wire >> "Content-Length: 159[\r][\n]"
[2015-06-26 11:38:36,350] DEBUG - wire >> "Server: WSO2 Carbon Server[\r][\n]"
[2015-06-26 11:38:36,350] DEBUG - wire >> "[\r][\n]"
[2015-06-26 11:38:36,350] DEBUG - wire >> "{"scope":"default","token_type":"bearer","expires_in":3299,"refresh_token":"e8a1c130b372a0021f46bf9933a6a20","access_token":"e4fcf0346a647f10455b871630cba0fc"}"
[2015-06-26 11:38:36,352] DEBUG - wire << "HTTP/1.1 200 OK[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "Access-Control-Allow-Origin: http://192.168.1.5:80,http://192.168.10.200:80,https://dev.wso2.com,https://sup.wso2.com[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "Content-Type: application/json[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "Pragma: no-cache[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "Cache-Control: no-store[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "Date: Fri, 26 Jun 2015 06:08:36 GMT[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "Server: WSO2-PassThrough-HTTP[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "Transfer-Encoding: chunked[\r][\n]"
[2015-06-26 11:38:36,352] DEBUG - wire << "[\r][\n]"
[2015-06-26 11:38:36,353] DEBUG - wire << "9f[\r][\n]"
[2015-06-26 11:38:36,353] DEBUG - wire << "{"scope":"default","token_type":"bearer","expires_in":3299,"refresh_token":"e8a1c130b372a0021f46bf9933a6a20","access_token":"e4fcf0346a647f10455b871630cba0fc"}[\r][\n]"
[2015-06-26 11:38:36,353] DEBUG - wire << "0[\r][\n]"
[2015-06-26 11:38:36,353] DEBUG - wire << "[\r][\n]"

[1] http://suhan-opensource.blogspot.com/2015/03/how-to-get-wire-logs-from-wso2-esb.html

49 comments:

  1. CSDEX - THE ONLY DEX WORKS FOR YOU!
    #CSDEX Pre-launch #Token Sale on #CSDEX Asset Token (CAT) started via https://buycats.csdex.site/ until CSDEX goes live or earlier. Purchase is instant and automatic via Smart Contract. On-line purchase accepts #Ethereum Ether (#ETH) only. Please use Chrome browser with Metamask plugin enabled.
    Website : https://csdex.site/
    Buy the token instantly at : https://buycats.csdex.site/
    Facebook : https://web.facebook.com/csdexsite/
    Twitter: https://twitter.com/CSDEXsite
    Telegram : https://t.me/csdexsite

    ReplyDelete
  2. WorldWide Mining Distributor CLOSING SALE! 50% OFF! Innosilicon G32 500, Obelisk SC1 Immersion, StrongU STU-U6, Antminer S17 Pro 53TH and much more!
    http://shopminersonline.com/

    ReplyDelete
  3. Next-Generation
    Cryptocurrency Exchange
    Buy, Sell, and Spend at https://www.coinzoom.com/
    Join telegram : https://t.me/coinzoomcommunity
    Twitter : https://twitter.com/GetCoinZoom
    Get Early Access: https://www.coinzoom.com/early-access/

    #crypto #ico #bitcoin #btc #investment #makemoney #coin

    ReplyDelete
  4. Fast crypto to crypto, wallet to wallet, non custodial swap exhange service, with a unique "social good" business model.
    Try us today at : https://changeangel.io/

    #crypto #ico #bitcoin #btc #investment #makemoney #coin

    ReplyDelete
  5. Coenx is a hybrid #Advertising and Reward platform with a discounted #Crypto #Exchange at a lowest fee of 0.03 percent. Join Coenx to View ads and Earn #Crypto.
    https://www.coenx.com/

    And Earn Crypto in 1 2 3 Steps..
    at : https://bitcoin.dotcompal.co/Coenx-AB

    ReplyDelete
  6. Fydcoin is a cryptocurrency for the gig economy. With staking and masternodes and a decentralized marketplace for freelancers.
    Website: https://fydcoin.com
    Facebook: https://m.facebook.com/FYDcoin

    ReplyDelete
  7. Goldenugget is the combination of #decentralized #blockchain technology and the most antique, reliable, value increasing and stable asset: GOLD! BUY TOKENS now at : https://www.goldenugget.ch/

    ReplyDelete
  8. Manufacturing Execution System (MES), manufacturing automation systems and optimization of manufacturing activities initiate, monitor, optimize, and documents manufacturing processes from the eginning of the assignment to the manufacturing of end products in real-time.

    Performance analysis (statistical and mathematical analysis, monitoring process performance, calculation of TEC, calculation of operation time and equipment downtime, generation of reports);
    • Programming of manufacturing schedules;
    • Controls of documents (electronic document circulation);
    • Human resource management (employee management);
    • Coordination of technological processes and end product tracking.
    Read more on website meschain.io

    Coin Information:
    Coin Name: MES
    Coin Type: ERC20 - Ethereum
    Total Supply: 7,000,000,000 MES
    Total Circulation: 1,000,000,000 MES

    MesChain is currently listed on the Vindax and Cointiger exchanges. Users wishing to purchase MesChain must open an account on the Cointiger exchainge website.

    https://www.cointiger.com/en-us/#/trade_center?coin=mes_eth

    The details of the ICO are as follows:

    Sale Start Date: 22/09/2019 00:00 (GMT+3)
    Sale Finish Date: 04/10/2019 24:00 (GMT+3)
    Sale Price: 70 Gwei
    Total Sale: 631,400,000 MES

    MesChain is a registered company
    Company Registration number: KZ07UWQ01487171
    Email: info@meschain.io

    Website: https://meschain.io/
    Facebook: https://web.facebook.com/MesChainproject?_rdc=1&_rdr
    Vk: http://vk.com/meschain
    Twitter: https://twitter.com/MeschainMES
    Instagram: https://www.instagram.com/meschainmes/
    Reddit: https://reddit.com/user/MesChain
    Telegram: https://t.me/MesChain_English
    Medium — https://medium.com/@PERHALIC

    ReplyDelete
  9. "The Money Project" by OkGlobal Coin & SWITCH is the first registered, regulated and compliant blockchain project of its kind. We are the first and only project that is aimed at the complete takeover of banking, finance, exchange and payment processing via a living reactive decentralized autonomous organization, DAO. A living DAO that operates globally aimed to replace faith based problematic fiat currency and bring back the use of "money" that will rise in value to beat inflation rates and can be used globally without threat of loss, theft or unfair confiscation.

    Okglobal Coin security token offering and initial exchange offering launched! Available directly from our website or at LAtoken exchange. More exchanges to come!! https://exchange.latoken.com/ieo/OKGS?_ga=2.113327559.159130170.1573647574-1345690785.1569984803

    website:
    https://www.okglobalcoin.com/
    https://okglobalcoinsg.com/

    ReplyDelete
  10. Decentralized Exchange with super low fee: Maker 0.025% and Taker 0.075%
    The Community Stakes Decentralized Exchange, or CSDEX is available now to serve the crypto community. If you are crypto traders, CSDEX brings you a more convenient experience in buying and selling ERC20 tokens. like other Decentralized Exchanges, no registration is required. In addition, CSDEX offers a super low fee: only 0.025% for makers and 0.075% for takers.
    There is also a starting video that may help: https://youtu.be/0xdRb3PCY_g
    If you are ICO/IEO/ERC20 token owner and looking for simple and transparent way to list your token, CSDEX is your choice.
    CSDEX official website is https://csdex.site or enter you could directly trade at https://trade.csdex.site

    ReplyDelete
  11. Win up to 25 Free Bither Tokens every two hours. Bither Airdrop/Spin-the-Wheel/Faucet. 25% Referral commissions. 100 Bither = 1 ETH. To get started Sign-Up/Register Here: https://panel.bither.one/?ref=Bitherian99186 Bither: New Eco-Friendly and Layered Decentralized Economy Three-layer solution Multi-mining capability Optimizing energy consumption https://panel.bither.one/?ref=Bitherian99186

    ReplyDelete
  12. #LocalBitcoins Auto #Bot gives you the chance to boost your Localbitcoins earnings and increase #trading volumes by using smart algorithms.
    https://localautobot.com/

    ReplyDelete
  13. BITCOIN STILL GOES UP TO $75,000 OR EVEN $350,000′, SAYS INVESTMENT FUND BOSS.
    https://www.binancewiki.io/bitcoin-price-2019/

    #crypto #ico #bitcoin #btc #investment #makemoney #coin

    ReplyDelete
  14. Diagon is a global eSports ecosystem for competitive gaming with three exclusive & innovative features: DiaArena, DiaBet and DiaExchange all for everything related to eSports; DiaArena will enable users from all around the globe to contest in different eSports tournaments; DiaBet for lovers of eSports, which will enable users to stake at eSports tournaments ongoing across the globe through Diagon’s ecosystem; DiaExchange for collecting and trading digital collectible card games and sending Diagon Gift Cards.
    To know more visit :
    https://www.diagon.io
    https://www.probit.com/en-us/ieo/dgn-round1/0

    ReplyDelete
  15. BIG PROJECT WILL COMING !!!

    Spectacular Project
    Will shake the world of networks
    Get a profit of up to 48% per month, Get an Affiliate Bonus of up to 10%, Get a Development bonus of up to 5%
    Create your income up to $ 150,000 per month
    Get multiple benefits from RBTC price increases of up to thousands percent

    Rebitcoin
    The newest Innovation of lending system
    https://bit.ly/2Rhe4Xv

    ReplyDelete
  16. Rebate Portal For ICO Community
    BUY, SELL AND INVEST
    DIGITAL CURRENCY
    Cryptocurrency investments and trading has had its mark made in the world wide market,
    be a part of this great movement as we unlock the next phase of crpto investments.
    to know more : https://cryptoinvestment.imfonlinegroup.com/

    ReplyDelete
  17. HEIDI is a Swiss crypto-token which tokenises the sustained delivery of trans-generational social impact.

    We are witnessing the devastating effects that modern day capitalism has brought to our everyday lives. Climate crisis, income disparity, consumer plastification, deforestation and endangered biodiversity ring a call to immediate action. A radical paradigm shift is required to disrupt today’s status quo. This paradigm shift begins with transforming education and entrepreneurship in a way that delivers new disruptive products and services to market and promotes the wellbeing of the planet.

    The Answer Lies in Tokenisation of Sustainable Innovation

    HEIDI is a Swiss crypto payment and utility token which delivers sustainable social impact through the creation of an unprecedented circular economy and innovation pipeline of Education, Research, and Social Entrepreneurship.

    HEIDI is a Swiss investment grade cryptocurrency because it is a stable storage of value based on its fungibility and ever increasing utility within the sustainable circular economy that is created by the model.

    To know more visit : https://www.heidicoin.io/
    And Follow us on Telegram: https://t.me/HEIDIICO

    ReplyDelete
  18. #Bitcoin Address Generator is the ultimate tool for generating single and bulk bitcoin addresses, generate mnemonic seed phrase, check private keys with corresponding bitcoin addresses, view details and derived addresses from bip39 mnemonic seeds, create printable paper wallets, etc
    https://bitaddressgen.co/

    ReplyDelete
  19. Liquid Bit is the first asset on the Liquid Network with a large user base that is completely independent and not pegged to any other assets or currencies. The digital asset utilizes all the benefits of the Liquid Network, so L-BIT transactions are secure, fast, privacy oriented and cheap. These properties combined with its scarcity and the fair distribution scheme makes L-BIT to be an outstanding utility asset.

    Liquid Bit Project Website - Liquid Bit Telegram Channel - Liquid Bit Telegram Group - Liquid Bit On CoinMarketCap

    ReplyDelete
  20. #ChainLink is a decentralized oracle network that provides real-world data to smart contracts on the blockchain. LINK is the digital asset token used to pay for services on the network.

    In the #Ethereum Scheme of Things, Chainlink is very important. With ChainLink, smart contract users can use the network’s oracles to retrieve data from off-chain application program interfaces (APIs), data pools, and other resources and integrate them into the #blockchain. Basically, ChainLink takes information that is external to blockchain applications and puts it on-chain.

    To know more:
    https://www.reddit.com/user/CypheriumCommunity/comments/ilez1o/can_cypherium_be_my_next_moon_bag_after_chainlink/

    Official Token Sale Website
    https://saleinfo.cypherium.io

    Official Website
    https://www.cypherium.io

    watch the video: https://youtu.be/3o1xRpO3n4E

    ReplyDelete
  21. Receive up to $400 in Yearn Tokens
    Yearn #token is not just another Yearn clone. We do things different. No 3dapps no nonense. No long stories here or promises we can't keep. We are not a cheap exit scam we will really do our best to help te community!
    http://eepurl.com/hd1yFr

    ReplyDelete
  22. A modern-age Defi protocol enabling decentralized p2p lending for the health care industry. Medfin Veda Defi allows anyone (be a patient needing funds for a medical procedure or a medical practitioner who requires capital for his business expansion) providing them with immediate access to funds.
    To know more visit: https://medicalveda.com/

    ReplyDelete
  23. Hoy quería darte mi opinión sobre Mind Capital, una empresa de arbitraje de Criptomonedas dirigida por Gonzalo García Pelayo (Si, el de los Casinos).
    Antes de explicarte un poco más te diré que he invertido $1.000 en BTC, más abajo te explico el motivo
    Por favor, después de leer mi opinión.. mi única recomendación es que no inviertas aquí si no asumes un riesgo del 100%. Click Here

    ReplyDelete
  24. Rich through this software!
    In the last 90 days, the lives of several of our members have turned upside down. And that's just because they #invested in Bitcoin! More than €13,428 landed in the bank accounts after they signed up for our software.
    With only 250€ in a month to financial freedom. Guaranteed!
    http://www.bitcoinformel.com/

    ReplyDelete
  25. Tree Holdings is #decentralized finance platform.
    It use a multi-token self balance pool. Mint SEEDs to plant trees now!
    https://tree.holdings/

    ReplyDelete
  26. Why should we care and learn about Blockchain and recommended BINT Protocol

    It is predicted in the next few years, much of our digital consumption will be run through a blockchain based system without us even realizing it. the core question that keeps coming up is what exactly it is and why should we care. Well, if the blockchain technology is predicted to go the way of the Internet and becomes ubiquitous in our lives and in our business, why don’t you care about blockchain?

    Blockchain is, as the name implies, a chain of blocks that contain information or data. This technique was originally described in 1991 by a group of researchers and was intended to timestamp digital documents so that no one can backdate or tamper with them. However, it went by unused until it was adapted in 2009 to create digital Cryptocurrency Bitcoin.

    Blockchain was used as a record-keeping system for bitcoin because of its inherent security benefits. Information on a blockchain cannot be manipulated. Blockchains are not centralized. Information is shared across users so there is not a vulnerable place for hackers to attack.

    One of the biggest challenges for Blockchain industry is to create many users and participants who want to use the blockchain and expand the network indefinitely by upgrading the network. To make it happen, whether professional programmers or not, they all actually get to permeate into it and need to understand the blockchain system.

    So where can you find the information and specialized materials about Blockchain? Is there a network or a community that anyone can deeply learn regarding blockchain? To the people who are interested in this, YES there is. BINT Protocol, Blockchain Internet Network Terminal Protocol. it was established to create an environment that enables users to develop blockchain in all operating systems and build a community for all the participants. You can get specialized materials and blockchain information here.

    BINT Protocol offers an web-development environment for quick and easy blockchain development. Through API based on distributed computing environment and virtual machine, all the users are able to use independent blocks regardless of time and place with easier development tool.
    http://bintprotocol.com/

    ReplyDelete
  27. Safe, secure and fast access to #cryptocurrency through #ValorEx #Crypto #Exchange
    https://valorex.io/

    ReplyDelete
  28. How is digital currency transforming our world?

    Have you ever thought about what would be the future of money? There is nothing inherently valuable about a dollar or a coin that we are using now. The only reason these things have any value is because we have all decided they should have value. we can say that they do have value by a collective fiction. All about money is the exchanges and the transactions that we do with each other and it is not anything objective.

    Using digital money has begun in the past two decades. now we all get paid via direct deposit, pay taxes online and pay rent fee via bank transfer. These interactions are changing 1’s and 0’s on computers. anything physical does not exist like a dollar or a coin in this process. And in these interactions, there are large and powerful institutions such as banks.

    Overall they have done pretty good work but there are some problems need to be fixed. And even though it is up to them to fix, at many times they just do not do. Therefore, there are many frictions in the system, for instance, most of our credit cards don’t work in abroad and transferring money across borders and across currencies is really expensive. It is all because big institutions are holding our digital money and controlling. These frictions obviously take away our ability to freely transact and slow down the work.

    But the good news is that, we are about to enter a new step of money, programmable future money. It is that we combine software and currency so that money will safely and securely flow directed by software. And when this happens we will be able to remove institutions, our transactions will not be controlled by any governments or banks. We will work without intermediaries and no need to ask permission, or do a conversion or worry about money getting stuck.

    If you would like to join or feel interested in transforming our world, you can try BINT Protocol, it is where you can get and understand underlying technology of blockchain development, or get the specialized materials to learn more about it. go check it out: http://bintprotocol.com/

    ReplyDelete
  29. Trade Stocks, Cryptos and Predict.
    Wyretrade a simple way to trade

    Wyretrade, a global trading and no limit prediction platform
    Buy and Sell Stocks & ETFs using digital currency of Bitcoin, Litecoin, Ethereum, USD Coin and more

    More info here: https://wyretrade.com/

    ReplyDelete
  30. MedicalVeda trading competition LIVE now, WIN 3900 MVEDA ($6000) Every Day!
    Exciting competitions to win easy prizes every day! Running till End Dec 2020! Participate in any of these Easy Competitions
    Competition No 1 |10 Days Balance Growth Competition:
    Winning chance: Moderately Easy!
    Total Winning Prize: 2000 MVEDA Every 10 Days!

    Competition No 2 | Daily Growth Competition Run for 2 Hours
    Winning chance: Very Easy!
    Total Winning Prize: 600 MVEDA Everyday!

    Competition No 3 | Daily Trading Competition - run every 30 minutes
    Winning chance: Super Easy!
    Total Winning Prize: 250 MVEDA Everyday!

    Uniswap💎Medicalveda(MVEDA)💎 is live now!

    MedicalVeda trading competition LIVE now, WIN 3900 MVEDA ($6000) Every Day! 💰🏆

    🔥Exciting competitions to win easy prizes every day! Running till End Dec 2020! Participate in any of these Easy Competitions.

    Listed now in these exchanges:
    EXMARKETS (MVEDA-ETH)
    WhiteBit (MVEDA-ETH)
    DCOIN (MVEDA-USDT)
    Also, Deposit MVEDA & Earn up to 25% interest in just a few weeks!
    More info Click Here

    ReplyDelete
  31. QUBIT ExchangeTM Quantum Secure
    Future QAST Blockchain Satellite Quantum Secure Cryptocurrency Exchange
    THE FUTURE OF JURISDICTIONAL TRADING & SOVEREIGNTY

    • Send Tokens
    • free your money
    • Buy and sell cryptocurrencies and store them all in one place.
    • Your gateway to the Space-Based global economy

    - Operate within seconds around the world
    - Send and receive cryptocurrencies between friends from all over the globe.
    - Buy, sell, and send currencies with ease
    - All available anytime and all in one account.
    - Make deposits
    - Fund your account.

    Qexchange Transfer
    Send and receive between friends. Fast and easy, without any fees.
    We make crypto easy. Sign up and get started in minutes.
    1. Create your account
    Sign up on our website
    2. Fund your account
    https://www.qexchange.ai/

    ReplyDelete
  32. ICO-Real-Estate
    You can contribute IRE token go through Buy Token page. You can get a quick response to any questions, and chat with the project in our Telegram: https://t.me/icorealestate Don’t hesitate to invite your friends!
    Watch the video here: https://ico-real-estate.com/

    ReplyDelete
  33. The $YFEED #Token is a #deflationary token carefully forged for staking and betting. Although the #cryptocurrency arena has seen a bunch of similar projects, #YFEED is different as the dapps will be designed to function similar to the conventional betting portals.
    Our audit is ready!
    Visit https://yfeed.network/audit.pdf and have a look!
    Audit of Staking Pool : https://yfeed.network/StakingAudit.pdf
    We are totally ready to start our amazing staking and gaming powerhouse.
    Join https://t.me/yfeedfinance for more info!

    ReplyDelete
  34. #ICH It is a digital #currency to support #inventors and preserve their rights with smart and innovative solutions. https://ideachaincoin.com

    ReplyDelete
  35. A long term investment is one where everyone expects a digital currency to perform best over a longer time. Simple!
    Normally, the minimum period for long-term investment is six months to one year. Though, some people plan to hold onto their investments for longer than this period. It is up to you how to pick to invest, you can either make your complete investment in a single go, or you can invest multiple times.

    Long-term #Investment Strategies:

    Before, #investing any amount in crypto, you have to clear idea of what your investment targets are:
    Will you sell your crypto assets after a certain amount of period or will you sell it when it reaches a certain value?

    Will you sell off your investment amount at once or will you sell in parts of it multiple times?

    At what time would you sell your long-term investment in the short run? For instance, if new rules into place that’d affect the long period value of your investment, you might wish to consider selling it earlier.

    Next, you’d do some research to decide which #crypto #coins are best as long term investments.
    We recommend that you check for the following:

    Do they’ve a solid team of developers and founders?
    How great is their roadmap?
    Is their tech superior to their competitors?

    If you truly believe in the crypto currency you invest in, you’d learn to hold on to your investment money even when the value drops. If you panic, then you’d lose money as well as regret selling. Keep in mind that whatever your plan or strategy, it is always vital to use a reliable and trustworthy investment platform like BEX Investments. We have a team of professionals to guide you in the right way when you invest with us.

    ReplyDelete
  36. Are you looking for an #altcoin to #invest in for 10-100x return with 500% return within 14 days?
    Buy Band Protocol, The Graph and #Uniswap before it takes off!
    See: https://youtu.be/cT1pSSkEa_Y

    ReplyDelete
  37. Altrady best crypto trading platform helps you trade on multiple exchanges!
    Boost your trading with the all-in-one cryptocurrency trading software. Trade on multiple exchanges, track your performance, improve and get less emotional.
    Bitcoin trading platform for beginners and expert traders.

    ReplyDelete
  38. Bitcoin E-Currency (BTCE), When Technology Meets Crypto @ https://btc-e.eu
    BTCE | Bitcoin E-Currency. When Technology Meets Crypto
    the BTCE Bockchain is
    | Safe | Fast | Simple |

    ICO Pre-Sale is live
    Buy BTCE Here: https://btc-e.eu/public

    ReplyDelete
  39. YPro.Finance is an automated protocol for ERC-20 tokens swap with DeFi features like Farming and Staking.

    YPro.Farm officially started on 03.03.2021!

    Most important information about launch:
    YPro Token (YPRO) contract: 0x067085aA0FF4e97A3C61BF06DE618E0aAe11DBc2
    YPro Farm (YPF) contract: 0xAc9C0F1bFD12cf5c4daDbeAb943473c4C45263A0

    How to farm - short guide:
    1. Go to farming page and choose pool you want to stake LP tokens.
    2. Connect your metamask wallet.
    3. Get Uniswap Uni-V2 LP tokens to stake:

    YPRO/ETH pool
    YPRO/USDT pool
    USDT/ETH pool
    DAI/ETH pool

    4. When you've LP's in your wallet balance, then choose how many you want to stake and click button "Approve & Stake".
    That's all ! Now you'll be automaticly rewarded with YPro Farm Tokens (YPF).
    Currently you can earn with 4000% APY on each pool ! Join our farms now !

    Farming site: http://www.ypro.finance/farm
    ------------

    ReplyDelete
  40. The Next Generation of #Yield #Farming on BSC.
    We have reviewed just about every AMM/Farm on the Ethereum Mainnet & Binance Smart Chain. All of them are plagued by the same thing that seems to be the key problem for the traditional finance sector currently, INFLATION!

    Inflation, inflation, inflation! Nearly every AMM/Farm inflation rate is the primary reason the project is suffering. We have combatted this problem with a unique formula that is sure to offset inflation and secure the underlying asset from mass sell pressure.

    DUMP PREVENTION….
    On Reese Finance, users are the winners!
    Farms and Pools are designed to increase the value of (RES) and rewards users for staking simultaneously. A 3% deposit/withdrawal fee is applied to every pool. Share your referral link & earn 1% of deposit fees, when users who joined via your link, harvest their yields. All other fees are used to buyback and burn (yRes) the yield token of Reese Finance.

    RES Max Supply = 10,000 [9,000 Pre-Sale] [1,000 Locked Liquidity for 3 yr]
    yRES Max Supply = 40,000 [Phase 1 = 3 years]
    Emission Rate = New RES/block [0.00012684]
    More info here: https://reesefinance.tech/

    ReplyDelete
  41. #CaliCoin is the first and only #cryptocurrency devoted to helping Animals of Determination around the world. CaliCoin is a #charity token which facilitates animal lovers to donate seamlessly to qualified charities dedicated to serving AODs (Animals of Determination--homeless and/or disabled) across the globe, through virtual currency.
    100% of CaliCoin donations go directly to serving the animals. There are NO overheads or commissions. CaliCoin is a group of animal advocates who simply wish to serve AODs and to demonstrate the best of humanity---helping the most disadvantaged on our planet.
    To know more visit: https://www.calicoin.me/

    ReplyDelete
  42. What is EVDC?
    EVDC is a decentralized token that is used as a digital currency to pay for electric cars supercharging.
    Mobile app development release: 01-09-2021

    How to buy with BNB
    Visit https://evdc.network for full instructions on how to Buy.

    ReplyDelete
  43. IDO: Initial #Dex Offering
    Buy new #tokens with a brand new token sale model.
    1% of the raised amount is used to buyback and burn SALT or contribute to a new Ocean
    Buy Now: https://www.saltswap.finance/ido

    #Ozone #Finance, The best Yield Farms for all earthlings on Binance Smart Chain.
    Upgrading Ozone Finance to Polygon Network with No-Loss Lottery, #NFT, and Layered Farming.
    Defi Url : https://Ozone.Finance
    Twitter: https://twitter.com/OzoneFinance
    Medium:https://Ozonefinance.medium.com
    Telegram Group Chat: https://t.me/OzoneFinanceChat
    Telegram Channel: https://t.me/OzoneFinanceAnnouncements

    ReplyDelete
  44. Welcome to Mooni DeFi, we are on a journey to build spectacular products for the community, where the we want to reward the community by being one of the lego box of DeFi on Binance Smart Chain.
    Mooni DeFi is the incubator based on Binance Smart chain with innovative product launches, where community gets rewarded in ecosystem tokens.

    Our focus is to build innovative DeFi products for BSC and support fair launches for the community. The ecosystem consists of four main offerings initially, here are the products with launch dates.

    Mooni Token : Mooni token of Mooni deFi ecosystem, holding Mooni will give users voting rights for the development of ecosystem, also when you trade, each transaction has a 5% fee applied, which will be redistributed instantly to all holders of the Mooni token.​ The great thing about this mechanism is that holders will be earning rewards without staking or any interaction with smart contract. Mooni is also a governance plus utility token, using which the community can exercise rights on development of projects from our ecosystem.
    To Know More visit : https://moonidefi.xyz/

    ReplyDelete
  45. "Mona Lisa Landscape Nft"
    To Place A Bid on Opensea Click Here

    We have designed digital art based on unique pieces of great historical and artistic value to create something exceptional. The paintings themselves could be a beautiful work of art that incorporates years of research, manual reconstruction procedures, and the latest technology.

    ReplyDelete
  46. GAPT – ��CLEAN THE OCEANS? ��SAVE THE RAIN FOREST? COMMUNITY DECIDES!
    ��DOXXED DEV https://twitter.com/Christo50366544/status/1383300879722242052?s=20��

    ��TWITTER GIVEAWAY https://twitter.com/GaptToken/status/1383647842925907971?s=20��


    ��Community has a vote! GAPT will be donating the contents of the charity wallet to an organization chosen by the community! Future Dapp development includes a lottery!��

    ��Tokenomics:��
    ��Name: GAPTT $GAPT��
    ��Token Blockchain: BSC BEP-20��
    ��Total Supply: 500,000,000,000,000��

    ��Already Burned at DXSale Launch: 78,125,000,000,000��

    -10% transaction fee

    -3.4% redistributed to token holders
    -2.5% sold by the contract into BNB
    -2.5% of the GAPT tokens are automatically paired with the BNB and added as liquidity on Pancakeswap
    -0.5% is placed into a charity wallet
    -0.1% is placed into the community wallet
    -1% total supply burn for every transaction

    Liquidity locked for 10 years
    Buy on Pancakeswap: https://gapt.io/how-to-buy

    ��Token Contract: 0x63a4644142CA6dc83CfE0E2bdba8d62174491fD8��

    Website: https://gapt.io/

    ReplyDelete
  47. #Airdrop:🔥Solacit Airdrop🔥
    Estimated value:💰 $5 💰
    Rate: ⭐️⭐️⭐️⭐️(4/5)

    🔹Go to Airdrop page
    🔹Complete social tasks
    🔹Submit your details

    🛠 Telegram, Twitter and Others.

    🌐 Claim your Airdrop:
    https://freecoins24.io/solacit-airdrop/

    #Airdrop

    ReplyDelete
  48. CIND token is being actively traded after being listed to the global crypto exchange, Bibox and Bittrex. CIND token is a cryptocurrency of ‘Cindrum’, a platform where players can become creators to construct, design, own, and trade their assets within the platform.

    By combining the main components of Cindrum, users can have their avatars put on their assets, trade or bargain at Cindrum Bazaar, attract other users to the LAND they’ve created, and immerse themselves in a virtual social networking environment to mine the CIND token.

    The cultivated CIND token can be used as an asset within the Cindrum metaverse and other platforms that support the CIND token. Cindrum metaverse is a virtual world where users can enjoy various entertainment and monetizing elements such as creating UGC, conducting secured and verified NFT transactions, shopping, staking, mining and etc.

    It is explained that users can collect and display their NFTs and become an art collector within the platform, and furthermore, users will be open to infinite possibilities with the combination of LAND and ASSET of the virtual world. In particular, more CIND tokens can be mined as the users spend more time in the metaverse, utilize LAND and ASSET, or conduct more shopping in the Cindrum bazaar.

    An official from the Cindrum said, “Cindrum, a paradigm that can overcome the physical distance and limitation in reality, will be the leader in creating a new wave and trend using metaverse technology. We will be working at our best to bring the virtual world to reality.’

    Official Website: https://www.cindrum.com/
    Telergam: https://t.me/cindrumglobal

    ReplyDelete
  49. MPANDO Browser has been officially registered at the App Store, completing another step to becoming a global browser.

    MPANDO Browser is a blockchain-based mobile browser application that encrypts and protects users’ personal data. Data storage and management are ensured to be safer and more efficient when compared to existing browsers. Another big advantage is that it empowers users to block any advertisements in the app to protect their data even further.

    Based on the Web 3.0, the fast browsing speeds includes a free VPN as well as a chance for users to mine for mPANDO tokens while using the application. As a big differentiator when comparing to existing browsers is the IPFS technology that gives users the opportunity to earn mPANDO tokens based on their advertisements watch time as well as on the application usage time.

    The mPANDO coin will also be used in different applications of the PANDO ecosystem including the PANTALK app, a messenger designed to protect anonymity and personal information, as well as in the PandoVPN app, a VPN application that encrypts all personal data and search records.

    The mPANDO Browser team is also planning to release the Android version in the near future.

    Website: https://pandosoftware.co/
    Twitter: @SoftwarePando
    Medium: https://pandotech.medium.com/

    ReplyDelete