{"id":18708426,"url":"https://github.com/marigold-dev/tzsafe","last_synced_at":"2026-01-25T16:32:06.447Z","repository":{"id":65032888,"uuid":"569995899","full_name":"marigold-dev/tzsafe","owner":"marigold-dev","description":"TzSafe's multisig wallet LIGO Contracts","archived":false,"fork":false,"pushed_at":"2024-04-03T15:59:06.000Z","size":261,"stargazers_count":9,"open_issues_count":1,"forks_count":2,"subscribers_count":7,"default_branch":"release-0.3","last_synced_at":"2025-05-19T07:34:59.871Z","etag":null,"topics":["dapp","mligo","multisig-wallets","tezos"],"latest_commit_sha":null,"homepage":"https://www.marigold.dev/tzsafe","language":"LigoLANG","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marigold-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-24T05:06:17.000Z","updated_at":"2024-10-28T13:10:32.000Z","dependencies_parsed_at":"2023-02-19T07:00:48.925Z","dependency_job_id":"361a278d-de84-4ec3-84e3-76769276dffa","html_url":"https://github.com/marigold-dev/tzsafe","commit_stats":null,"previous_names":["marigold-dev/tzsafe"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/marigold-dev/tzsafe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marigold-dev%2Ftzsafe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marigold-dev%2Ftzsafe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marigold-dev%2Ftzsafe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marigold-dev%2Ftzsafe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marigold-dev","download_url":"https://codeload.github.com/marigold-dev/tzsafe/tar.gz/refs/heads/release-0.3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marigold-dev%2Ftzsafe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28755542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T13:59:49.818Z","status":"ssl_error","status_checked_at":"2026-01-25T13:59:33.728Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dapp","mligo","multisig-wallets","tezos"],"created_at":"2024-11-07T12:23:21.986Z","updated_at":"2026-01-25T16:32:06.419Z","avatar_url":"https://github.com/marigold-dev.png","language":"LigoLANG","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TzSafe\nTzSafe is a multisig wallet aiming at providing better assurance of security and management of ownership than a traditional single-signed wallet. TzSafe adheres to the [TZIP27](https://gitlab.com/tezos/tzip/-/blob/master/drafts/current/draft-proof-of-event/proof_of_event.md) standard, which is the way of signing message for account abstraction.\n\nMulti-signature (also multisig) wallet allows to share the ownership of an account by a smart contract. Each owner can create a proposal to propose transferring Tez or executing other contracts. Signer provides approval stored on-chain by performing Tezos transaction. Once gathering the minimal approvals, the multisig will perform the proposal.\n\n# Requirements\nThe contract is written in cameligo. Please follow [the instructions of installation in LIGO](https://ligolang.org/docs/intro/introduction?lang=cameligo).\n\nThe minimal required version can be found by performing `make ligo-version`.\n\n# Usage\n## Entrypoints of multisig\n### default\nThis entrypoint can receive Tez from any source.\n\n### create_proposal\nEach owner can create proposal through this entrypoint. The entrypoint supports creating a batch of transactions. The batch is atomic and execution by order. If modifing settings are proposed, the modified setting will NOT apply in this batch immediately. The setting will effect on a next batch/transaction. Once a proposal is created, its ID can be located in the corresponding emitted event and can be used for both the signing and resolution of the created proposal.\n\n### sign_proposal\nSigners can provide an approval or a disapproval through this entrypoint.\n\n### resolve_proposal\nThrough this entrypoint, owners have the capability to resolve a proposal. Whether the proposal is executed, rejected, or expires, the allocated storage space will consequently be freed.\n\n### proof_of_event_challenge\nIf TzSafe requires signing message, the contract owner can process the proof-of-event challenge by initiating a proof-of-event proposal through this entrypoint. This proposal, once created, necessitates signing and resolution as the other regular proposals. Following the resolution of the proposal, an event with tag \"%proof_of_event\" will be emitted, serving as the equivalent of the signature.\n\n# Deploy\nWe provide several steps for quick deploying contracts in `app/` to ghostnet.\n\n1. build contracts by performing `make build`\n1. run `make get-tezos-binary` to get tezos-client binary\n1. run `make gen-wallet` to generate an implicit account. The account information will show up.\n1. go [faucet](https://faucet.marigold.dev/) to request some XTZ.\n1. run `make deploy` to deploy contracts\n\n# Changelog\n- 0.1.x: (release-1.0)\n- 0.2.x: base on 0.1.x and support the ticket (release-2.0)\n- 0.3.x: base on 0.1.x, better storage space management and support TZIP-27 (release-3.0)\n\n# References\n- Frontend Web-UI repository can be found [here](https://github.com/marigold-dev/tzsafe-ui).\n- Frontend Web-UI documentation can be found [here](https://docs.tzsafe.marigold.dev/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarigold-dev%2Ftzsafe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarigold-dev%2Ftzsafe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarigold-dev%2Ftzsafe/lists"}