Making a URL shortener on Ethereum Blockchain ⛓

Store links on the blockchain forever

Saurav Kumar
Coinmonks
Published in
3 min readDec 2, 2018

--

The Product

How it works

The web app deployed at 0x.now.sh, interacts with a smart contract deployed on Ethereum Ropsten testnet. Being on testnet means you can interact with it using free ethers. Get your free ethers here.

The Process

  • Users make a transaction requesting the blockchain to store a URL string.
  • Since it is a transaction that modifies the state of the blockchain, it needs to have some amount of ethers attached to it so that it can be mined to the blockchain by miners.
  • The amount of fee (also called gas) is determined by the Metamask chrome extension and displayed in the prompt box.
  • There is some waiting time for the transaction to be confirmed (5–10sec) depending on how busy the blockchain is.
  • The shortened URL is generated. eg https://0x.now.sh/s?id=23
  • When the users clicks on the shortened URL another transaction is made requesting the blockchain which URL string is located at the provided reference (in this case 23)
  • Since this transaction is not changing the state of the blockchain, we do not need to pay any ETH this time, the user is seamlessly redirected to the long URL.

dApp

Being a Decentralized application means that this web app does not require any centralized database to function. It only interacts with the smart contract deployed on the blockchain.

The SmartContract 📃

pragma solidity ^0.4.24;contract e0x {
event Log(string message);
event LinkAdded(uint linkId, string url);

struct LinkTemplate {
address userAddress;
string url;
}

uint lastLinkId;
mapping (uint => LinkTemplate) public linkMapping;

constructor() public {
lastLinkId = 0;
}


function createNewLink(string url) public returns (uint) {
lastLinkId++;
linkMapping[lastLinkId] = LinkTemplate(msg.sender, url);
emit LinkAdded(lastLinkId, url);
return lastLinkId;
}

modifier linkExists(uint linkId) {
//link with the given hash does not exist
if(linkMapping[linkId].userAddress == 0x0000000000000000000000000000000000000000) {
revert();
}
_;
}

function getLink(uint linkId) linkExists(linkId) public constant
returns(
address,
string
) {
LinkTemplate memory link = linkMapping[linkId];
return(
link.userAddress,
link.url
);
}
}

Technical Challenges

Interacting with the smart contract

EthersJS library is used to talk to the blockchain

// provider picks up the Metamask injected web3 object from browser 
let provider = new ethers.providers.Web3Provider(web3.currentProvider);
let address = "ADDRESS_OF_DEPLOYED_SMART_CONTRACT";
let abi = [...] //defines JSON interface for the smart contract

Storing data on the blockchain

// calling the createNewLink function defined in the smart contract
tx = await contract.createNewLink(url);
console.log(tx.hash);

Listening to blockchain events

contract.on("LinkAdded", (linkId, linkUrl) => {

var shortUrl = '{0}/s?id={1}'.f(window.location.origin, linkId.toNumber())
$("#info").prepend( "Short URL: <a href='{0}'>{0}</a><br>".f(shortUrl) );

});

Generating the list of recently shortened URLs

EthersJS doe not support batch listening of events so I had to use web3js’s allEvents() function call

MyContract = web3.eth.contract(abi);
myContractInstance = MyContract.at(address);
events = myContractInstance.allEvents({event: 'LinkAdded', fromBlock: 0, toBlock: 'latest'});
events.watch(function(error, result){
console.log(result.args.url, result.args.linkId.toNumber());
...
});

Making the shortened URLs accessible in all Browsers

This was quite tricky because interacting with blockchain required the browser to be web3 enabled, and have some wallet installed (metamask or similar). Currently web3 and wallet support is only for Chrome and Firefox on Desktop only.

To solve this, I had to create a wallet on the fly as follows

provider = ethers.getDefaultProvider('ropsten');
wallet = ethers.Wallet.createRandom();
wallet = wallet.connect(provider);

Shout out to the awesome ethersJS library for having support for this.

Counting URL visits

The flexibility for using this one all browsers comes at a cost. Each time user clicks on the shortened URL no change is made to the blockchain state, hence it is not possible to determine how many times each link was clicked. This issues remains unsolved.

The complete source code for this project is on Github.

Pull Requests welcome 😁

Click to read today’s top story

--

--