https://github.com/jjgonecrypto/eos-contracts
Some example eos contracts
https://github.com/jjgonecrypto/eos-contracts
eos eos-contracts escrow
Last synced: 4 months ago
JSON representation
Some example eos contracts
- Host: GitHub
- URL: https://github.com/jjgonecrypto/eos-contracts
- Owner: jjgonecrypto
- License: mit
- Created: 2018-11-28T01:18:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-12T16:44:46.000Z (over 6 years ago)
- Last Synced: 2024-04-14T09:18:46.634Z (about 1 year ago)
- Topics: eos, eos-contracts, escrow
- Language: C++
- Size: 304 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EOS Contracts
[](https://circleci.com/gh/justinjmoses/eos-contracts)
A collection of EOS smart contracts that interact with each other. This is meant purely as a proof of concept for contract interaction on EOS.
## Preparation
- Make sure you have `eosio-cpp` available on your path (by installing eosio.cdt), and you have `cleos` on your path (that is either using a local `nodeos` and `keods` or remote ones.)
## Examples
- [Compiled-Read](./contracts/compiled-read) is an example of a contract where it can read the table state of a another already-deployed contract by being compiled with the same source file.
- [Escrow](./contracts/escrowed-token) is an example of an escrow contract with vesting schedule. Any given tokens can be transferred in, and the contract will hold them until vesting is invoked, distributing the percentage back that is owed to the user.