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
f28b0d60
Commit
f28b0d60
authored
Jun 25, 2019
by
Jakob Botsch Nielsen
Browse files
Fix file links
parent
795517a7
Pipeline
#12857
passed with stage
in 5 minutes and 39 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
f28b0d60
...
...
@@ -3,36 +3,36 @@ 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
[
Blockchain.v
](
theories/
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
](
LocalB
L
ockchain.v
)
: one with depth-first execution
order of
smart contracts, and one with breadth-first execution order.
We also define a typeclass that captures what it means to satisfy
our semantics.
We exhibit two instances of this typeclass in
[
LocalBlockchain.v
](
theories/
LocalB
l
ockchain.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
In
[
Circulation.v
](
theories/
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
In
[
Congress.v
](
theories/
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
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
[
Congress_Buggy.v
](
theories/
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.
In
[
LocalBlockchainTests.v
](
theories/
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
...
...
Write
Preview
Supports
Markdown
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