├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── example.mp4 ├── example.ts ├── package.json └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilix-software/solana-program-idl-fetcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilix-software/solana-program-idl-fetcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilix-software/solana-program-idl-fetcher/HEAD/README.md -------------------------------------------------------------------------------- /example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilix-software/solana-program-idl-fetcher/HEAD/example.mp4 -------------------------------------------------------------------------------- /example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilix-software/solana-program-idl-fetcher/HEAD/example.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilix-software/solana-program-idl-fetcher/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilix-software/solana-program-idl-fetcher/HEAD/tsconfig.json --------------------------------------------------------------------------------