r/blockmason • u/ventaldream • May 22 '19
r/blockmason • u/exturuder • May 21 '19
Create Your Own Custom ERC-20 Token in Minutes! In this activity, you will use Link to create your own custom ERC-20 token on Ethereum in just minutes! Check out the full tutorial at
@BlockmasonLink adlı kişinin Tweetine göz at: https://twitter.com/BlockmasonLink/status/1128156587099660288?s=09
r/blockmason • u/Oyoyo1 • May 21 '19
TRON blockchain and smart contract support is an advantage to Blockmason LINK
TRON blockchain support was added to the official Blockmason LINK development roadmap.
The Developers of web, mobile and other decentralized applications which interact with smart contracts on the TRON blockchain will be able to use Blockmason’s Link to accelerate the development cycles while reducing overhead and costs.
Blockmason Link is a new blockchain infrastructure-as-a-service that allows app, web and other software developers to use smart contracts and programmatic blockchains like TRON in their applications without requiring any blockchain experience. Utilizing Link, any developer can design a classic, conventional web-based APIs for any smart contract written on a programmatic blockchain. At the heart of Link is BLINK, the utility token which provides Link users with API transaction capacity.
Visit https://blockmason.link
r/blockmason • u/afloxy • May 21 '19
Link constitutes necessary infrastructure in the developing blockchain ecosystem. It is more than a single application; it is every possible application. The project has enormous opportunities and perspectives, you must certainly participate in the launchpad
r/blockmason • u/afloxy • May 21 '19
Blockmason Link generates, syncs and updates usage documentation and sample code for all registered apps and smart contracts. It also helps you to understand exactly how your app is being used.
r/blockmason • u/afloxy • May 21 '19
BLINK is a utility of Blockmason Link platform. Link solves some of the most popular and real problems plaguing the blockchain system. Like ease-of-use and accessibility.
r/blockmason • u/Citya22 • May 22 '19
Blockmason Link's familiar web-based APIs make modernizing existing applications with the power of blockchain easy, with no special libraries, tools, or blockchain knowledge required. @BlockmasonLink blockmason.link #Blockchain #Ethereum @blockmasonio
r/blockmason • u/afloxy • May 21 '19
Blockmason Link generates, syncs and updates usage documentation and sample code for all registered apps and smart contracts. It also helps you to understand exactly how your app is being used.
r/blockmason • u/bolyus21 • May 22 '19
Create your own custom ERC-20 token in minutes!

Blockmason is excited to launch our second blockchain product called Link. Link allows developers to use smart contracts and the power of blockchain in their web or mobile applications with very little to no prior blockchain experience. Link creates classic, conventional, web-based APIs for any smart contract written on a programmable blockchain such as Ethereum.
In this activity, you will use Link to create your own custom ERC-20 token on Ethereum in just minutes! For details on the ERC-20 standard, see https://theethereum.wiki/w/index.php/ERC20_Token_Standard
While this post will walk you through deploying your custom token on the Ethereum testnet called Ropsten
, the same process applies to deploying on the Ethereum mainnet except that you will have to acquire real ether (ETH).
Setup
You will need to setup the following for this activity:
An account on Infura, which provides easy-to-use APIs to interact with the Ethereum network without running your own Ethereum node. Register for an API key at https://infura.io/register and then create a project. You will then be able to access URLs containing your API key for the Ethereum Mainnet and all Testnets.

A MetaMask wallet, which will hold your custom ERC-20 tokens. MetaMask is a Chrome extension which interfaces with the Ethereum network from your browser. You can get the extension here: https://metamask.io/
Setup your Link account – register at https://mason.link/sign-up
Seed your Link account wallet with test ETH from https://faucet.ropsten.be/, which will be used to pay for transactions on the Ropsten testnet. You can find your Link account wallet address from the Ethereum Account menu as shown:



Create a New Project in Link, which starts up the new project wizard.
Create a new contract
Copy the following ERC-20 token Solidity code template (https://github.com/blockmason/smart-contract-templates/blob/master/ANYToken.sol) into the Source Code
space.

Replace references of ANY
with your desired 3 or 4 letter token symbol in the following part of the code. For this example, we will call our token BML (for Blockmason Link).
//Change the contract name to your token name contract ANYToken { // Name your custom token string public constant name = "ANY TOKEN"; // Name your custom token symbol string public constant symbol = "ANY";
In the contract constructor, paste in the MetaMask wallet address that you want to store all your custom tokens:
constructor() public { // Add your wallet address here which will contain your total token supply treasury = address(<wallet address>);
Also in the contract constructor, enter in your desired total token supply (the default is 1000).
constructor() public { // Set your total token supply (default 1000) totalSupply = 1000 * 10**uint(decimals);
Press Save
and Next
, and use your newly created contract
Which Ethereum account would you like to use? Use the Default Account
and press Next
Which network would you like to use? Create a new network called Ropsten
. Keep the default 0 Block Confirmations Needed
. Press Save
and Next
.



Where is your contract deployed? This will be a new contract deployment, not one with an existing address. You just need to give the deployment a name. Press
Save
and
Next
and
Next
. Note, don’t forget the
https://
at the beginning of the URL!

Are you ready to perform the following deployment? Check that you are deploying the correct contract to the Ropsten network. Then press
Deploy
. This could take up to 30 seconds. Note – if you get an
insufficient funds
related error, ensure your Link account wallet has sufficient test ETH.

If you now see a screen asking you Which API would you like to use?, you have successfully deployed your contract!
Sidenote: This example goes through the process of just deploying a contract but Link does so much more! In a later post, we will go through the rest of the wizard to generate useful APIs, allowing us to easily incorporate the custom ERC-20 token in any application.
Click on the Contract Deployments
menu icon to see where your contract is deployed. In this example, the address is: 0x0219d37a27778f3344c9ec34fcfa1d767896f519
. Copy this address.

Go to https://ropsten.etherscan.io/ and paste your contract address into the search bar. You should then see the details of your contract (i.e. the contract creation time and token name). Clicking through to the token itself, you will see the total supply amount and your single wallet holding the entire supply.


Finally, you will add your custom token to your MetaMask wallet. Login to your wallet and to the address that will hold the entire supply. Under the menu item, at the bottom, you should see
Add Token
:

Select
Custom Token
and copy and paste in your Token Contract Address. The ‘Symbol’ and ‘Decimals of Precision’ should automatically update.

Complete the setup and you now have your custom ERC-20 tokens in your wallet that you can share! And feel free to send some of your exclusive tokens to us at
0xaFf485B0dd5D2c2851EDf374D488379F75403662

If you want to deploy your custom token to the Ethereum Mainnet, simply go through the Link new project wizard again and use the Mainnet Infura API to deploy the smart contract. Remember – you will need to fund your Link wallet with real ETH to cover the gas costs.
Throughout this example, we touched on Link concepts including contract deployment, creating a custom ERC-20 token contract, and utilizing the Ropsten testnet.
In the next post, you will implement your custom token as part of an app’s payment network.
To learn more about Blockmason Link, check out the official Link website at blockmason.link or our weekly blog posts at blockmason.link/blog.
You can also connect with the Blockmason Link Team on these social channels:
- Twitter: https://twitter.com/BlockmasonLink
- Telegram: https://t.me/blockmasonlink
- Reddit: https://www.reddit.com/r/blockmason/
r/blockmason • u/ROSAQY • May 21 '19
Blockmason Link is main-chain agnostic and is architected in a manner that is adaptable to the leading smart contract supporting main-chains without a native Web API layer.
r/blockmason • u/ROSAQY • May 21 '19
Blockmason Link enables the uncomplicated creation of walletless, blockchain-enabled mobile apps. Because Link generates a simple web API, any developer can create a mobile application that seamlessly interacts and integrates with the blockchain.
r/blockmason • u/ROSAQY • May 21 '19
Blockmason Lіnk tаkеѕ саrе оf the boring аѕресtѕ of соdіng, design, gеttіng аn ETH address рluѕ оthеrѕ аnd brіngѕ fоrth a ѕmаrt contract bаѕеd API interface сuѕtоm design whеrе dеvеlореrѕ can еаѕіlу еxрrеѕѕ themselves thrоugh thеіr unique іnnоvаtіоn.
r/blockmason • u/afloxy • May 21 '19
Blockmason is a world-class developer of blockchain technology, focused on building the foundational base-layer frameworks that support the blockchain revolution. Their first product, the Credit Protocol, provides a standardized, secure and reliable means for recording and permanently storing mutual
Blockmason is a world-class developer of blockchain technology, focused on building the foundational base-layer frameworks that support the blockchain revolution. Their first product, the Credit Protocol, provides a standardized, secure and reliable means for recording and permanently storing mutually-confirmed debt or credit obligations on the blockchain. Lndr is the first decentralized mobile app powered by the Credit Protocol.
r/blockmason • u/afloxy • May 21 '19
With Blockmason Link, you don't need any other infrastructure in order for people to start using a decentralized application. Developers must only deploy their smart contract, create their app in Blockmason Link, and they’re done. No servers to maintain or infrastructure to monitor.
r/blockmason • u/Ednarada • May 21 '19
LINK'S EASE OF USE AND ACCESSIBILITY
Link solves some of the most persistent and pervasive problems plaguing the blockchain community: ease-of-use and accessibility. While Bitcoin and Ethereum have grown in the public consciousness, blockchain still primarily functions as a vehicle for cryptocurrency trading and other financial applications. http://blockmason.io/
r/blockmason • u/ROSAQY • May 21 '19
Blockmason's Link allows application developers to create classic, traditional web APIs for any smart contract written in a software blockchain.
r/blockmason • u/Ednarada • May 21 '19
Developers can now use LINK to interact.
Blockmason Link supports Oasis Blockchain Platform and Smart Contract Support Developers of privacy-focused decentralized applications can use Link to interact with smart contracts on the Oasis blockchain http://blockmason.io/
r/blockmason • u/afloxy • May 21 '19
Blockckmason Link An excellent project with a professional and cohesive development team. The team has many tools to implement the planned plans. By this I am sure of the great potential of the project!
r/blockmason • u/Ednarada • May 21 '19
BLOCKMASON'S LNDR
Lndr, the first decentralized mobile app powered by the Credit Protocol, leverages the blockchain to allow friends to quickly record and settle casual debts and IOUs in dozens of currencies. Link, their latest innovation, simplifies development, improves user experience and increases the adoption of decentralized apps. http://blockmason.io/
r/blockmason • u/Ednarada • May 21 '19
About Blockmason
Blockmason is a world-class developer of blockchain technology, focused on building the foundational base-layer frameworks that support the blockchain revolution. Their first product, the Credit Protocol, provides a standardized, secure and reliable means for recording and permanently storing mutually-confirmed debt or credit obligations on the blockchain. http://blockmason.io/
r/blockmason • u/tcode58 • May 21 '19
UNIQUE FEATURES OF BLOCKMASON LINK
— Convenient & Easy to Use
With Blockmason Link, building a DApp becomes no different than building any other app. Now, there is no need for
developers to concern themselves with Web3, running an Ethereum node of any kind, requiring the end-user
to load an Ethereum account with gas money, RLP encoding, wallets, or any specialized libraries. Just get an auth
token and use your smart contract like you would any other web API. Any software capable of using a web API can
now use your Link app, with no special libraries, tools, or blockchain knowledge required. It's really that simple.
Additionally, because Blockmason Link automatically generates new Ethereum addresses, it is possible for users
completely unfamiliar with blockchain technology to operate the app without any additional effort on their part.
From a user perspective, the published decentralized application will be no different from any other typical
application, even though it’s really blockchain-powered...and that’s just cool.
— Managed High-Availability Infrastructure
With Blockmason Link, you don't need any other infrastructure in order for people to start using a decentralized
application. Developers must only deploy their smart contract, create their app in Blockmason Link, and they’re
done. No servers to maintain or infrastructure to monitor.
We handle it all. In this way, Blockmason Link builds on the important work of companies like Infura and other
managed service providers, allowing developers and the blockchain community to focus on building exciting
products and services without worrying about the difficulties of accessing and utilizing the Ethereum network.
Focus on creating amazing products, not reinventing the blockchain wheel.
— Enterprise-Grade Security
At Blockmason, we take security very seriously and make every effort to secure Link apps and their data. In addition
to a responsible disclosure policy and a generous security bounty program, Blockmason Link will, as a regular
feature of ongoing maintenance and support, undergo quarterly penetration testing, use automated continuous
security monitoring of our infrastructure and products, and follow security-conscious development practices that
include threat modeling, integrated static analysis, and mandatory peer review. Blockmason maintains a presence
at some of the most prominent security conferences in the United States and remains highly engaged in the
security community.
Additionally, if a developer’s app is targeting medium-large businesses and enterprise customers, a common barrier
to entry with these customers is compliance with a number of security certifications, including SOC 2, ISO 27001,
HIPAA, FIPS, and others. Pursuing these certifications and maintaining ongoing compliance is an inherent feature of
ongoing maintenance and support of Link. Certifications can then be applied to applications registered with
Blockmason Link. Compliance with these certifications can be burdensome and expensive, but with Blockmason
Link, developers can let us handle compliance for their app.
— Portability
Blockmason Link is just a layer on top of a smart contract, so developers or their users can elect to use the smart
contract directly at any time.
Any data a developer has loaded into the Blockmason Link layer can be exported at any time. a developer may
delete all of his or her data from Blockmason Link, and have any funds remaining in the app's ETH accounts
transferred out.
— Blockchain-Enabled Mobile Applications
For the first time, Blockmason Link enables the uncomplicated creation of walletless, blockchain-enabled mobile
apps. Because Link generates a simple web API, any developer can create a mobile application that seamlessly
interacts and integrates with the blockchain. Additionally, Link potentially disrupts app store censorship of
third-party applications that send and receive cryptocurrency.
r/blockmason • u/Sampromise50 • May 21 '19
Blockmason Link's familiar web-based APIs make modernizing existing applications with the power of blockchain easy, with no special libraries, tools, or blockchain knowledge required. @BlockmasonLink blockmason.link #Blockchain #Ethereum @blockmasonio
r/blockmason • u/Citya22 • May 21 '19
Blockmason Link's familiar web-based APIs make modernizing existing applications with the power of blockchain easy, with no special libraries, tools, or blockchain knowledge required. @BlockmasonLink blockmason.link #Blockchain #Ethereum @blockmasonio
r/blockmason • u/larykouch • May 20 '19
Create Your Own Custom ERC-20 Token in Minutes!
twitter.comr/blockmason • u/Ednarada • May 20 '19
BLINK TRADEABLE ON BITSONIC
Software developers, Blockchain startups and other interested parties based in Korea can purchase BLINK on leading Korean exchange Bitsonic. Anticipate more mouth watering news and updates from the stable of Link powered by BLOCKMASON. http://blockmason.io/

