An open API service indexing awesome lists of open source software.

https://github.com/cfelde/using-akap

Various examples on how to use the AKA protocol
https://github.com/cfelde/using-akap

akap ethereum ethereum-contract solidity solidity-contracts

Last synced: about 1 month ago
JSON representation

Various examples on how to use the AKA protocol

Awesome Lists containing this project

README

          

# Using AKAP, examples

The [AKA protocol](https://akap.me) (AKAP) is an idea, a specification, and a set of smart contracts written for the Ethereum blockchain. It tackles a challenge seen on blockchains related to immutability and how you write code to handle such an environment.

In short the challenge facing blockchain developers is that when they deploy code others depend on, there's no easy upgrade path. The location of the code is tied in with the location of storage, and if you want to upgrade your code you can't easily take this storage with you. Deploying a new version would force everyone who depend on it to change their references, not to mention the pain of repopulating existing data.

Eternal storage is a pattern that AKAP can help you leverage, where the idea is to keep your storage separate from your code.

Please see the [documentation](https://akap.me/docs) for more in depth material.

## Repositories

This repository contains example usage of the AKA protocol. Other related repositories:

[AKAP](https://github.com/cfelde/AKAP)

[AKAP utils](https://github.com/cfelde/AKAP-utils)

[AKAP docs](https://github.com/cfelde/AKAP-docs)

[AKAP browser](https://github.com/cfelde/AKAP-browser)