Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
concordium
smart-contract-interactions
Commits
795517a7
Commit
795517a7
authored
Jun 25, 2019
by
Jakob Botsch Nielsen
Browse files
Describe structure of the project
parent
f3f661fa
Pipeline
#12856
passed with stage
in 5 minutes and 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
795517a7
# Smart Contracts
This repo is a formalization of execution layers of modern blockchains in Coq.
## Structure of the project
The best place to start exploring the project is in
[
Blockchain.v
](
Blockchain.v
)
. Here we define the basic types describing
blockchains, smart contracts and the semantics of the execution layer of
blockchains. We give proofs of some interesting general lemmata here as well,
for instances that undeployed contracts cannot have sent out any transactions.
We also define a typeclass that captures what it means to satisfy
our semantics. We exhibit two instances of this typeclass in
[
LocalBlockchain.v
](
LocalBLockchain.v
)
: one with depth-first execution order of
smart contracts, and one with breadth-first execution order.
In
[
Circulation.v
](
Circulation.v
)
we prove a small sanity check for our
semantics. Specifically we prove that the total sum of the money in the system
is equal to the sum of the rewards handed out in blocks.
In
[
Congress.v
](
Congress.v
)
we implement the _Congress_ contract, a
simplified version of the DAO, which does complex dynamic interactions with the
blockchain and other contracts deployed on the blockchain. We specify
and prove a property about this contract at the end of this file. This property
is somewhat related to reentrancy in that it caps the number of transactions the
Congress will make.
In
[
Congress_Buggy.v
](
Congress_Buggy.v
)
we try something different: we take the
same contract as above, but introduce a reentrancy issue into it. We then
formally prove that this version of the Congress does _not_ satisfy the property
proven for the other version. This is proven by using one of our implementations
of our semantics and just asking Coq to compute.
In
[
LocalBlockchainTests.v
](
LocalBlockchainTests.v
)
we test that Coq is able to
compute with the Congress by deploying it and interacting with it using one of
our implementations of blockchains.
## Building/Developing
This repo uses the std++ library. This must be installed first and can be
installed via Opam, after adding the dev repo of Iris:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment