{"id":23039142,"url":"https://github.com/shop3/strapi-plugin-eth","last_synced_at":"2026-05-17T19:04:39.285Z","repository":{"id":47702299,"uuid":"508044973","full_name":"shop3/strapi-plugin-eth","owner":"shop3","description":"Integrate Ethereum in your Strapi application.","archived":false,"fork":false,"pushed_at":"2023-02-04T13:47:42.000Z","size":5362,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-06T03:29:31.174Z","etag":null,"topics":["ethereum","ethers","strapi","strapi-plugin"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/shop3.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-27T19:58:37.000Z","updated_at":"2022-10-30T13:55:47.000Z","dependencies_parsed_at":"2023-02-18T16:45:41.108Z","dependency_job_id":null,"html_url":"https://github.com/shop3/strapi-plugin-eth","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/shop3/strapi-plugin-eth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shop3%2Fstrapi-plugin-eth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shop3%2Fstrapi-plugin-eth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shop3%2Fstrapi-plugin-eth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shop3%2Fstrapi-plugin-eth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shop3","download_url":"https://codeload.github.com/shop3/strapi-plugin-eth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shop3%2Fstrapi-plugin-eth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33151625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["ethereum","ethers","strapi","strapi-plugin"],"created_at":"2024-12-15T18:28:17.373Z","updated_at":"2026-05-17T19:04:39.266Z","avatar_url":"https://github.com/shop3.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Strapi Plugin Eth\n\nIntegrate Ethereum in your Strapi application.\n\n## Table Of Content\n\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Plugin Configuration](#plugin-configuration)\n- [Usage](#usage)\n\n## Requirements\n\nStrapi v4 is required.\n\n## Installation\n\n```bash\nnpm install --save strapi-plugin-eth\n```\n\n## Plugin Configuration\n\nAdd the plugin configuration to `./config/plugins.js`:\n\n```js\nmodule.exports = ({ env }) =\u003e ({\n  eth: {\n    enabled: true,\n    config: {\n      chains: [\n        // this enables ethereum network\n        {\n          network: {\n            name: 'ethereum',\n            chainId: 1,\n            ensAddress: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',\n          },\n          providers: [\n            {\n              url: `https://mainnet.infura.io/v3/${env('INFURA_PROJECT_ID')}`,\n            },\n          ],\n        },\n        // this enables matic network\n        {\n          network: {\n            name: 'matic',\n            chainId: 137,\n          },\n          providers: [\n            {\n              url: `https://polygon-mainnet.infura.io/v3/${env('INFURA_PROJECT_ID')}`,\n            },\n            {\n              url: 'https://polygon-rpc.com',\n            },\n          ],\n        },\n      ],\n    },\n  },\n})\n```\n\n## Usage\n\nThis plugin exposes a service with the various blockchain providers:\n\n```js\nconst ethProviderService = strapi.service('plugin::eth.provider');\nconst ethereumProvider = ethProviderService.getProvider(1 /* or 'ethereum' */);\nconst maticProvider = ethProviderService.getProvider(137 /* or 'matic' */);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshop3%2Fstrapi-plugin-eth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshop3%2Fstrapi-plugin-eth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshop3%2Fstrapi-plugin-eth/lists"}