{"id":22930647,"url":"https://github.com/blockchainasset/inherichain","last_synced_at":"2025-08-12T15:31:33.188Z","repository":{"id":37825350,"uuid":"303350246","full_name":"BlockchainAsset/Inherichain","owner":"BlockchainAsset","description":"A wallet which has inheritance built in on the Ethereum Blockchain.","archived":false,"fork":false,"pushed_at":"2024-03-20T07:29:51.000Z","size":528,"stargazers_count":6,"open_issues_count":9,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-15T03:30:56.669Z","etag":null,"topics":["solidity","wallet"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BlockchainAsset.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-10-12T10:00:35.000Z","updated_at":"2024-02-04T15:12:15.000Z","dependencies_parsed_at":"2024-10-15T03:40:31.873Z","dependency_job_id":null,"html_url":"https://github.com/BlockchainAsset/Inherichain","commit_stats":{"total_commits":49,"total_committers":3,"mean_commits":"16.333333333333332","dds":0.5102040816326531,"last_synced_commit":"785fadee28ad35d0e78db2297a6439cfed30d8ea"},"previous_names":["remedcu/inherichain"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlockchainAsset%2FInherichain","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlockchainAsset%2FInherichain/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlockchainAsset%2FInherichain/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlockchainAsset%2FInherichain/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BlockchainAsset","download_url":"https://codeload.github.com/BlockchainAsset/Inherichain/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229694587,"owners_count":18108930,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["solidity","wallet"],"created_at":"2024-12-14T10:29:10.986Z","updated_at":"2024-12-14T10:30:43.580Z","avatar_url":"https://github.com/BlockchainAsset.png","language":"JavaScript","readme":"# Inherichain [![Build Status](https://travis-ci.org/remedcu/Inherichain.svg?branch=main)](https://travis-ci.org/remedcu/Inherichain) [![Coverage Status](https://coveralls.io/repos/github/remedcu/Inherichain/badge.svg?branch=main)](https://coveralls.io/github/remedcu/Inherichain?branch=main) ![](https://www.code-inspector.com/project/15933/score/svg)\n\n![Inherichain](media/default.svg)\n\nA wallet that has inheritance built-in on the Ethereum Blockchain.\n\n[**Explainer Video**](https://youtu.be/-pQ-zvpdEos)\n\n## Description\n\nEthereum wallets are created using a Seed or Private Key and can send and receive almost any ethereum assets and create contracts. But it lacks a significant feature, which is to retrieve the assets in case of the wallet owner's demise.\n\nInherichain is a Wallet Contract with almost all the features of a normal EOA (Externally Owned Account). Along with that, it also can transfer the ownership of the contract wallet to the specified Heir.\n\n## Function List \u0026 Specification\n\nA basic description of all the functions, modifiers, and events are specified in the doc folder [**here**](docs/Inherichain.md).\n\n## User Specification\n\n**Admin** can :\n- Update the Backup Owner.\n- Update the Heir (Resets the Claim Process).\n- Update the Deadlines.\n- Add new Approvers.\n- Delete old Approvers.\n- Interact with Other Contracts (ERC20 Transfers, etc.).\n- Withdraw some or all ETH.\n- Transfer some or all ETH.\n- Deploy Contracts.\n\n**Backup Owner** can :\n- Update the Owner.\n\n**Heir** can :\n- Start the Claim.\n- Access Ownership using Approver Votes or Complete Deadline.\n\n**Approver** can :\n- Approve or Reject Heir.\n- Initiate Charity Process.\n\n**Charity** can :\n- Access Ownership after approver Initiation.\n\n**Every User** can :\n- Deposit ETH and other assets.\n\n## Enhancement to do:\n- Involve Kleros if heir \u0026 owner demise at the same time to choose what to do with the funds.\n- Introduce Vote weightage for approvers.\n- Mechanism to divide the contract asset into parts based on multiple heirs. Expanding on the same, giving different % for different Heir.\n\n## How to Run the Project\n\n1. Create a new folder.\n\n2. Copy the Git Clone URL from GitHub: https://github.com/remedcu/Inherichain.git\n\n3. Clone the Repository.\n\n`git clone https://github.com/remedcu/Inherichain.git`\n\n4. In a command line, inside the Inherichain folder, write `npm i` or `npm install`\n\n5. Now run `ganache-cli` and copy the mnemonic, address, and private key part for later use. (Make sure it runs on port 8545 if you intend to run the `truffle test` command).\n\n6. In a command line, run `truffle migrate --reset`.\n\n7. (Optional) If you want, you can run the `truffle test` to see if it passes all tests or not.\n\n8. To run the frontend part, just use `npm start` and it will start a server in localhost.\n\n## How to Test the Contract\n\n1. Please follow the step 1 - 6 of *How to Run the Project*.\n\n2. Now start the test using:\n\n`npm run test`\n\n**Note**: You can also use the `truffle test` to test the smart contract if you already have `ganache-cli` or Ganache GUI running in the background for testing in the local network.\n\n## Documentation\n\nUsing solidity-docgen: [Inherichain.md](docs/Inherichain.md)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblockchainasset%2Finherichain","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblockchainasset%2Finherichain","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblockchainasset%2Finherichain/lists"}