Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add audit and update disclaimer #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ Following events are emitted if users perform certain actions on the contract of
- `address` the signer that disabled the fee protection

## Disclaimer
This smart contract has not been security audited yet.
Although this contract has been [audited](./contracts/Audit_GAMultiSig_20220419.pdf) there always is a
possibility of human error in the review process or a contextual change in the area in which the contract operates.
We recommend always seeking multiple opinions and audits.

Under no circumstances Aeternity Anstalt can be liable for any direct or indirect
consequences arising out of the deployment or use of this smart contract.

Use it at your own risk!
Binary file added contracts/Audit_GAMultiSig_20220419.pdf
Binary file not shown.
11 changes: 9 additions & 2 deletions contracts/SimpleGAMultiSig.aes
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,15 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.

// THIS IS NOT SECURITY AUDITED
// DO NEVER USE THIS WITHOUT SECURITY AUDIT FIRST
// DISCLAIMER:
// Although this contract has been audited there always is a
// possibility of human error in the review process or a contextual change in the area in
// which the contract operates. We recommend always seeking multiple opinions and
// audits.
// Under no circumstances Aeternity Anstalt can be liable for any direct or indirect
// consequences arising out of the deployment or use of this smart contract.
//
// Use it at your own risk!

@compiler >= 6

Expand Down