Simple password manager smart contract built on Ontology
- Store data (overwrites previous)
put(address, website, username, password)
Stores the username
and password
for website
for the user with the wallet address
.
- Get data
get(address, website)
Gets the username
and password
for website
for the user with the wallet address
.
- Delete data
delete(address, website)
Deletes the username
and password
for website
for the user with the wallet address
.