Smart Contract Wallet — Part 1: Introduction

Smart contract wallets are wallets with unique abilities due to the power of smart contract functionality. They enable additional security and recovery features for users. These wallets enable different types of activities such as buying or selling tokens, token exchange, dapp interaction, trade, borrow or lend, etc.

hsrwala
Tezsure
4 min readDec 16, 2020

--

Glossary

  • EOA — Externally Owned Accounts (Starts with tz1/2/3…)
  • Warden — Persons who can help in recovering lost account by signing a multi-sig
  • Tezos domains — A project on Tezos which provides a customizable human-readable address.
  • SCA- Smart contract account, a smart contract created by EOA which works as the wallet.

Problems With Current Solutions

  • Most Tezos wallets use EOAs to identify the parties involved.
  • An EOA is not consumer friendly.
  • It is difficult to remember a mnemonic phrase and complicated to store it which would help in recovering an account.

What is the solution?

  • We can use Tezos domains which are human-readable and can be resolved to a tz1 or kt1 address to interact with the blockchain.
  • We use the concepts of wardens to help with wallet recovery. An owner can add as many wardens they trust and can help him to restore a wallet based on multi-sig implemented in the smart contract.

Note — We will discuss the wallet restore functionality in the upcoming sections.

Types of users of SCW and their roles

Owner

  • Can delegate its funds to a baker.
  • Can transfer XTZ to another smart contract account.
  • Can send XTZ to any EOA.
  • Can add a warden.
  • Can remove a warden.
  • Can destroy a false claim of account take over within 36 hours.

Warden

  • Can sign the change of ownership request.

Owner (Who has lost access to EOA)

  • Can make an ownership transfer claim on the contract.
  • After 36 hours of making such a claim and once all wardens sign it, the new owner can certify the claim and let his new EOA get marked as admin’s EOA and become the new owner.

Implementation

Account creation and domain registration

  1. The user first needs to select the EOA which he wants to use as admin and further interaction will be done through that EOA.
  2. First we invoke the Factory smart contracts which deploy a new Smart contract.
  3. Once the smart contract is deployed we receive the contract address (KT1 address) which is then used to create a domain name.
  4. The domain registration happens through the same EOA and the newly created domain resolves to the KT1 address.

The transfer flow

  1. On the main screen, the user is supposed to choose which wallet he wants to use.
  2. When he/she selects one, the particular domain address gets resolved to the contract address and gets stored in Redux.
  3. When the user goes to the pay screen he can enter the domain address of the payee and proceed with the transaction by entering the amount and message the user wants to send along with the transaction.
  4. The app behind the scenes resolves the payee’s domain address to his contract address.
  5. Then the payer’s contract address from Redux is fetched and an entry point called “transfer” is invoked with the payee’s contract address, amount of XTZ, and message as parameters.
  6. The payer’s smart contract after owner verification performs an inter contract call to the payee’s contract with the message as parameter and XTZs are simultaneously passed.
  7. The payee’s smart contract is only designed to store the last message it received.

Showing transactions on the app with message

  1. The app will query block explorer and will filter out transactions done on the smart contract.
  2. The block explorer will show the transactions along with all the parameters passed (message, amount, op hash, etc).

The change of ownership

  1. The owner in case of loss of EOA can use the app to stake a claim of ownership using a new EOA.
  2. To make such a claim there should be at least one warden added in the smart contract.
  3. The owner just needs to enter the domain and that will be resolved to a contract address for invocation.
  4. On such a stake claim a multi-sig gets created which needs to be signed by the warden(s) unanimously.
  5. The owner with the new EOA will need to certify (entry point invocation) to be the new owner after 36 hours of the claim and all wardens unanimously agree to change ownership, simultaneously the admin address will also get changed.

What if wardens go rogue?

  1. There is a high possibility that the warden(s) can fraudulently try to transfer ownership to someone else, and ask someone to claim the ownership of the smart contract account.
  2. In this situation the actual owner can destroy the stake claim within 36 hours of such a claim being made, even if all warden(s) have signed the ownership transfer the claim can be destroyed, and fraudulent account takeover can be prevented.

Behind the scenes:

Factory Contract: https://delphinet.tzkt.io/KT1So3A8w4H9oxkfQbDTd7DBpGJ8AuSEibkQ/operations/
SCA-1: https://delphinet.tzkt.io/KT1CxdvvtVkTRnqooToBx8zhuDg13PCmmDvR/operations/
SCA-2: https://delphinet.tzkt.io/KT1BqgzUBoUSbGmBGpx9p6AjcP6oWy95mko1/operations/

The first smart contracts have been deployed, Tezos domains and Tezsure subdomain integration have been done and a basic web app version is being worked on.

We would love some feedback, any suggestions regarding features or anything which comes to your mind. Here’s a link to the Agora post, feel free to drop the comments there:

--

--

hsrwala
Tezsure
Editor for

CPO & Cofounder @ Tezsure & Director @ Tezos India Foundation