Giter Site home page Giter Site logo

aepp-sophia-examples's Introduction

aepp-sophia-examples Open in Gitpod

AEproject

AEproject is the testing framework for Sophia Smart Contract development and allows developers to easily run a local dev environment & test their Smart Contracts.

The structure of this repository follows the default structure that AEproject provides if you initialize a new project.

Note

  • This repository doesn't provide any deployment scripts as it is only intended to showcase Sophia Smart Contracts & how to test those.
  • All Sophia examples are provided with corresponding tests written in JavaScript which can be found under ./test.

Standards (Aeternity Expansions) & Implementations

The Aeternity Expansions (AEX) are standards on aeternity proposed by the community. If you have a good idea or face common requirements you can also submit a new AEX proposal for which a reference implementation can be developed.

Smart Contract Examples

Disclaimer

The provided Sophia examples are only tested to the extend represented. None of the code was security audited by aeternity or is provided to be used in production, without thorough checks.

Library Usage

The LibraryUsage.aes contract shows how to include default and custom libraries in a Smart Contract. The example currently includes following custom libraries:

Delegation signatures

It is possible to delegate the right to perform certain AENS or Oracle related actions to a contract. Check out the following examples and corresponding tests to see how you can use it:

Oracles

ExchangeOracles

  • ExchangeOracle.aes registers an oracle and allows to respond to oracle queries.
  • ExchangeMarket.aes showcases how to query prices from an oracle and how to get the answers of an oracle.

SmartDataProvider

There also exists another repository ae-oracle-pricefeed which includes a complete example that runs a server for the oracle which automatically extends the TTL of the oracle and responds to queries.

An even more complex example which aggregates answers of multiple oracles is included in tipping-oracle-service. The contracts in this repository are being used by https://superhero.com.

Smart Shop

This is a good example to see how to deal with contract interfaces to call remote contracts. All contracts can be found under contracts/SmartShop.

Workflow

  1. The Seller deploys the SellerContract by passing the buyer public address and item price as arguments.
  2. The Transport Courier deploys the TransportContract passing location as an argument.
  3. The Buyer passes SellerContract address and TransportContract address as arguments when deploying BuyerContract.
  4. The Buyer deposits the needed amount by calling deposit_to_seller_contract(), which takes the price of the item as Call.value.
  5. The Seller now sends the item, which will be redirected to Transport Courier. The function is send_item(). It checks if Buyer has deposited the price of the item to the SellerContract.
  6. Buyer can track the status of the item:
    • check_courier_status() - returns current delivery status
    • check_courier_location() - returns current location status
  7. Once the item is delivered, the Transport Courier calls delivered_item(city : string) function, with current location.
  8. To finalize the order, Buyer calls received_item() function, with SellerContract address.
  9. The amount of tokens, payed by Buyer, will be sent to seller's account.

Others (no specific explanation provided/required)

Problems / Questions

If you face a problem or have other questions please pick one of the following places:

We are happy to help!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.