Gnosis Safe – The most trusted platform to store digital assets on Ethereum https://gnosis-safe.io
Go to file
Mikhail Mikheev 0dd2ad5f5d Fix gas calculation error when confirming tx because of the modal premount, improve cancelled tx detection 2019-10-15 18:03:22 +04:00
.github/ISSUE_TEMPLATE Create issue template for Lukas 2019-06-20 15:20:29 +02:00
.storybook add averta font 2019-08-29 12:35:52 +04:00
config Add Prepare production deployment to travis 2019-09-25 19:06:41 +02:00
contracts Add test case for sending token with 6 decimals, wrap moveFunds helper fireEvent in act() 2019-10-14 17:13:15 +04:00
flow-typed/npm [WA-229] Feature - Create safe (#10) 2018-03-29 11:05:42 +02:00
migrations send funds test refacotring wip 2019-05-31 19:22:05 +04:00
public change website title 2019-09-05 17:56:57 +04:00
scripts Refactor getEtherscanLink 2019-09-24 17:20:48 +04:00
src Fix gas calculation error when confirming tx because of the modal premount, improve cancelled tx detection 2019-10-15 18:03:22 +04:00
.eslintignore WA-521 Added .eslintignore file 2018-08-20 16:47:03 +02:00
.eslintrc Fix funds test, fix create safe test 2019-09-20 16:04:35 +04:00
.flowconfig WA-238 Added contracts after migrated to Kovan and Rinkeby 2018-05-04 12:50:24 +02:00
.gitignore remove yarn-error.log and add it to gitignore 2019-06-20 13:13:34 +04:00
.travis.yml Add travis condition `NOT type = pull_request` for mainnet build 2019-09-30 13:03:37 +02:00
LICENSE.md Adding README and LICENSE (#7) 2018-03-12 11:26:53 +01:00
babel.config.js safe creation test wip 2019-05-29 18:11:44 +04:00
jest.config.js remove cleanup-after-each 2019-08-15 18:50:15 +04:00
jsconfig.json WA-238 Added contracts after migrated to Kovan and Rinkeby 2018-05-04 12:50:24 +02:00
package.json Dep bump 2019-10-14 16:13:21 +04:00
precommit.sh [WA-229] Feature - Create safe (#10) 2018-03-29 11:05:42 +02:00
readme.md Update readme 2019-10-02 14:19:41 +02:00
truffle.js add token contracts for testing purposes and refactor TokenMovements utils 2019-05-31 17:58:35 +04:00
yarn.lock Dep bump 2019-10-14 16:13:21 +04:00

readme.md

Gnosis Team Safe

Allowing crypto users manage funds in a safer way

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

What things you need to install the software and how to install them

yarn add truffle // recommended usage of -g flag
yarn add ganache-cli // recommended usage of -g flag
yarn add flow-type // recommended usage of -g flag

We use yarn in our infrastacture, so we decided to go with yarn in the README

Installing and running

A step by step series of examples that tell you have to get a development env running

Install dependencies for the project:

yarn install

For using the Rinkeby services:

yarn start

If you prefer using Mainnet ones:

yarn start-mainnet

Building

For Rinkeby:

yarn build

For Mainnet:

yarn build-mainnet

Running the tests

  1. Run transaction-history-service
git clone https://github.com/gnosis/safe-transaction-service.git
cd safe-transaction-history
git checkout develop
docker-compose build
docker-compose up -d

Check that the service is running at https://localhost:8000

  1. Migrate Safe Contracts:
git clone https://github.com/gnosis/safe-contracts.git
cd safe-contracts
yarn
npx truffle migrate
  1. Migrate Token Contracts for the tests: Inside safe-react directory
npx truffle migrate
  1. Run the tests:
yarn test

Break down into end to end tests

Explain what these tests test and why

Give an example

And coding style tests

Explain what these tests test and why

Give an example

Deployment

Add additional notes about how to deploy this on a live system

Built With

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See the full list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Thanks for Gnosis Team for providing the Safe contracts.