visit
They often portrait themselves as open to innovation. Yet, in reality, very little happens. It’s business as usual. But, there is hope.New engaging solutions attract new ways of thinking. A healthy dose of new fitting technology comes to the rescue to speed up the paradigm shift.
Hardware like GPS and great cameras changed the playing field. Apps like Instagram, Snapchat, and Uber/Lyft all leveraged from these unique capabilities. These are apps that would never have taken off on desktop computers. The unique capabilities of a new platform created, over time, a foundation for change.When such a change happens, a completely new infrastructure for new opportunities opens up. Blockchain is such a new paradigm-shifting technology. It has a set of unique abilities that don’t exist elsewhere. For the real estate industry, the Blockchain technology works as an accelerator. It could be the shake up the industry needs to push it forward. Let’s have a look at why.
Real estate agents stress over closing deals to reach KPIs connected to compensation. Banks stress over compliance, risk, and credit scoring. House inspectors can get stressed about discovering and presenting deal-breaking issues. CO-OPs can get stressed about just finding a pen to sign the right paper with.It’s not unusual that stress factors and misaligned incentives turn into a drama exercise. A conflict with edgy attitudes, suspicion, and anxiety. People of today don't have time to follow up on a manual process with the same rigor as 50 years ago. They expect a system to be in place to assist them with the right information at the right time.The figure below depicts the typical scenario of today. In it, the agent is in the center coordinating all events. In this model, the agent acts as the trusted transaction facilitator. All involved parties need to rely on the agent throughout all stages of the process.
For what?
Besides, high stakes and many stakeholders give a lengthy bureaucratic process. Intermediaries work as gatekeepers for the sake of the system. They’re there for the system rather than for buyers and sellers. Introducing automation removes friction, which makes a lot of sense. It would give the end-users a much more pleasant experience. Still, these middlemen have a critical role to fill.Somebody has to set up contracts, verify, and enforce them. Using a technical solution to transfer trust like the Blockchain dramatically changes things.
In such a system, the real estate agent no longer sits in the middle. The change relieves the real estate agent of the burden of orchestrating the whole transfer.Instead, the agent can now have a more passive, overseeing role. This hybrid approach can help restore trust in the process, as you can reduce the individual broker's influence over the transaction. In it, the agent becomes an unbiased part.
With smart contracts, there is a neutral central coordinator. This is a system that people cannot manipulate. In it, all interactions and conditions are transparently shared.
For instance, all parties would know the instant the buyer completes the down-payment. The smart contract furthermore regulates what happens if things fall through. Should something down the line go wrong, e.g., an inspection, the system returns the money. In the future, as this system evolves, we might not even need the real estate agent. At least not for the transaction. Below is a possible future scenario where sellers and buyers can facilitate the home transfer on their own.Transferring a home will go from weeks to minutes. In the best case, even seconds, if everybody has already fulfilled their parts and are ready to sign. Due to the trust protocol, parties need not meet face to face to sign documents.The stakeholders can effectively be anywhere and sign at any time. Whatever time they find convenient. They don’t need to meet in person at all. Looking at the biggest challenges in the real estate business, this is a match made in heaven.
Initially, banks will be able to switch over to Blockchain transactions to support smart contracts. Over time, when the technology is more widely adopted, buyers and sellers can perform transactions without the banks as facilitators.Loans and mortgages can be programmed into the smart contracts with many distributed loan providers that don’t need to be coordinated. The Blockchain does not only work as a trust protocol, but it also has a networking effect. The system of smart contracts can easily be expanded to include other services and kinds of stakeholders.The figure below shows a possible transition to using smart contracts. As a first step, banks start supporting smart contracts by switching over to crypto transactions. Once the banks are comfortable using smart contracts, the process can be opened up to buyers and sellers.
”A lack of transparency results in distrust and a deep sense of insecurity.” - Dalai lamaTransparency is at the core of Norban’s vision. We try, as much as possible, to incorporate it in everything we do. To us, the old, obscured way of buying and selling homes is a thing of the past. Blockchain is, of course, not the answer to all the problems in the Real Estate business. But, with the Blockchain, we now have a system that:
▶ Increases trust - Reduces real estate broker dependency
▶ Improves efficiency - Speeds up transfers of homes
▶ Reduces cost - Reduces cost for buyers and sellers
▶ Opens up for networking - creates a digital platform other services can tie into
The app speaks with, instead of one main centralized backend, many distributed servers. In this family of apps, we also find the apps that run on the Blockchain. Another popular term is web 3.0, which is a broader term for the decentralized internet.
These together, with its reliable test networks, for instance, Rinkeby or Ropsten, make testing easy. One can quickly test transactions in these sandboxed environments without transferring real funds. Perfect for prototyping.
function sellerSignContract() public payable {
require(seller == msg.sender, "Only seller can sign contract");
require(contractState == ContractState.WaitingSellerSignature, "Wrong contract state");
contractState = ContractState.WaitingBuyerSignature;
}
It’s a so-called digital wallet that runs as a Chrome extension. It stores Ethereum assets and shows transactions.Metamask allowed us to track the steps while roleplaying the whole process. In the roleplay, we all took on different roles. One acted as the seller, another as the buyer, and so on.
As always, you want the platform with the broadest reach. The web is that platform. Building the dapp as a web app makes it virtually available to everybody. With the JavaScript bindings in web3.js, one can connect Solidity with any Frontend. We built the dapp prototype, using React as a UI framework.