{"id":14968445,"url":"https://github.com/nfteyez/sol-rayz","last_synced_at":"2025-04-04T13:09:28.338Z","repository":{"id":37025771,"uuid":"426356192","full_name":"NftEyez/sol-rayz","owner":"NftEyez","description":"💫   Package to simplify parsing NFTs on Solana and build NFT galleries","archived":false,"fork":false,"pushed_at":"2023-12-23T20:15:10.000Z","size":1918,"stargazers_count":222,"open_issues_count":0,"forks_count":70,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-04T12:23:37.914Z","etag":null,"topics":["nft","solana","web3"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/NftEyez.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}},"created_at":"2021-11-09T19:15:49.000Z","updated_at":"2025-03-12T11:14:00.000Z","dependencies_parsed_at":"2024-01-13T17:48:11.174Z","dependency_job_id":"73e1ee12-bdf1-474e-b769-83c580b52796","html_url":"https://github.com/NftEyez/sol-rayz","commit_stats":{"total_commits":70,"total_committers":5,"mean_commits":14.0,"dds":"0.12857142857142856","last_synced_commit":"2d2a22b036f5f467fee9fc8f5729178134d32d7d"},"previous_names":[],"tags_count":40,"template":false,"template_full_name":"NiGhTTraX/ts-monorepo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NftEyez%2Fsol-rayz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NftEyez%2Fsol-rayz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NftEyez%2Fsol-rayz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NftEyez%2Fsol-rayz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NftEyez","download_url":"https://codeload.github.com/NftEyez/sol-rayz/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247182394,"owners_count":20897381,"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":["nft","solana","web3"],"created_at":"2024-09-24T13:39:55.846Z","updated_at":"2025-04-04T13:09:28.317Z","avatar_url":"https://github.com/NftEyez.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @nfteyez/sol-rayz\n\nThese packages created to simplify the process of parsing NFTs on Solana. The project written in TypeScript and is used/battle-tested by [NftEyez.Global](https://nfteyez.global/) with thousands of daily users.\n\nDEMO: [Galley Demo](https://create-dapp-solana-nextjs.vercel.app/gallery)\n\n## How to use\n\nThe simplest way to use it in your app is install package, also you need install `@solana/web3.js` in your project, since it is used as peer dependency.\n\n```bash\nnpm i @solana/web3.js\nnpm i @nfteyez/sol-rayz\n```\n\nthen use it this way:\n\n```javascript\nimport {\n  resolveToWalletAddress,\n  getParsedNftAccountsByOwner,\n} from \"@nfteyez/sol-rayz\";\n\n// const address = \"3EqUrFrjgABCWAnqMYjZ36GcktiwDtFdkNYwY6C6cDzy;\n// or use Solana Domain\nconst address = \"NftEyez.sol\";\n\nconst publicAddress = await resolveToWalletAddress({\n  text: address\n});\n\nconst nftArray = await getParsedNftAccountsByOwner({\n  publicAddress,\n});\n```\n\n## Details\n\nThis project consists of 2 packages. Please refer to specific README file for in-depth details:\n\n- [`@nfteyez/sol-rayz`](https://github.com/NftEyez/sol-rayz/tree/main/packages/sol-rayz) - basic functionality, like fetch all NFTs for specific wallet or by Authority. Designed to be used in browser or Node.JS env. Read [Details](https://github.com/NftEyez/sol-rayz/tree/main/packages/sol-rayz).\n- [`@nfteyez/sol-rayz-react`](https://github.com/NftEyez/sol-rayz/tree/main/packages/sol-rayz-react) - bunch of hooks and utils to be used within React app. You can think of it as highlevel construction upon `@nfteyez/sol-rayz` package to simplify its use in UI. Read [Details](https://github.com/NftEyez/sol-rayz/tree/main/packages/sol-rayz-react).\n\n\u003chr /\u003e\n\n## Development\n\n### This section related only for the people who wants contribute to this project.\n\n\u003c!-- TBA --\u003e\n\nInstructions for starting project for the contributors.\nClone repo, run in root of the project:\n\n```\nyarn\nyarn run build\n```\n\n### Development process\n\nYou might want to test package while you do changes. For this purpose you can use react app in `packages/sol-rayz-dev` and start package you are working on in watch mode, for example `sol-rayz`:\n\n```bash\n# go to sol-rayz\ncd packages/sol-rayz\nyarn run watch\n\n# in new tab go to react app\ncd packages/sol-rayz-dev\nyarn run start\n```\n\nNow when you changes something `sol-rayz` package it will be automatically updated in `sol-rayz-dev` app.\n\n### Add New new dependency to some package\n\nHere is example how to add new dependency module `@solana/spl-name-service` to `@nfteyez/sol-rayz` package:\n\n```\n lerna add @solana/spl-name-service --scope=@nfteyez/sol-rayz\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnfteyez%2Fsol-rayz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnfteyez%2Fsol-rayz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnfteyez%2Fsol-rayz/lists"}