Smart contract to transfer an authority of assets to other User.

+2 votes
Basically I just want to implement a smart contract which has some set of rules between two user.Assets can be issued to the other user by digitally signing the contract by both end user (user1: currently owner of asset, user2: Next owner of the Asset).
related to an answer for: how do we implement smart contracts
asked Oct 9, 2019 by Ubaid Ur Rehman

1 Answer

0 votes

You could use a transaction filter and follow the pattern in this example:

https://github.com/MultiChain/smart-filter-examples/blob/master/transaction-filters/approve-asset-transfer.js

But instead of pre-approvals being created by users with a custom low1 permission, you want to ensure that the pre-approval must be created by the user who is meant to received the assets.

answered Oct 10, 2019 by MultiChain
...