├── .env.sample ├── .gitattributes ├── .gitignore ├── .husky └── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── examples ├── add_owner.json ├── double_transfer.json ├── eth_transfer.json └── wrap_and_unwrap_eth.json ├── hardhat.config.ts ├── package.json ├── src ├── contracts.ts ├── creation.ts ├── execution │ ├── index.ts │ ├── proposing.ts │ ├── signing.ts │ ├── simple.ts │ ├── submitting.ts │ └── utils.ts ├── history │ ├── index.ts │ ├── loading.ts │ └── types.ts ├── information.ts └── tasks.ts ├── tsconfig.json ├── tx_input.sample.json └── yarn.lock /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v15.6.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/README.md -------------------------------------------------------------------------------- /examples/add_owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/examples/add_owner.json -------------------------------------------------------------------------------- /examples/double_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/examples/double_transfer.json -------------------------------------------------------------------------------- /examples/eth_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/examples/eth_transfer.json -------------------------------------------------------------------------------- /examples/wrap_and_unwrap_eth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/examples/wrap_and_unwrap_eth.json -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/package.json -------------------------------------------------------------------------------- /src/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/contracts.ts -------------------------------------------------------------------------------- /src/creation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/creation.ts -------------------------------------------------------------------------------- /src/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/execution/index.ts -------------------------------------------------------------------------------- /src/execution/proposing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/execution/proposing.ts -------------------------------------------------------------------------------- /src/execution/signing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/execution/signing.ts -------------------------------------------------------------------------------- /src/execution/simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/execution/simple.ts -------------------------------------------------------------------------------- /src/execution/submitting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/execution/submitting.ts -------------------------------------------------------------------------------- /src/execution/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/execution/utils.ts -------------------------------------------------------------------------------- /src/history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/history/index.ts -------------------------------------------------------------------------------- /src/history/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/history/loading.ts -------------------------------------------------------------------------------- /src/history/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/history/types.ts -------------------------------------------------------------------------------- /src/information.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/information.ts -------------------------------------------------------------------------------- /src/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/src/tasks.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tx_input.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/tx_input.sample.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-tasks/HEAD/yarn.lock --------------------------------------------------------------------------------