{"id":13407841,"url":"https://github.com/multiversx/mx-sdk-js-core","last_synced_at":"2025-10-06T14:04:36.092Z","repository":{"id":39339806,"uuid":"371399014","full_name":"multiversx/mx-sdk-js-core","owner":"multiversx","description":" MultiversX SDK for interacting with the MultiversX blockchain (in general) and Smart Contracts (in particular). ","archived":false,"fork":false,"pushed_at":"2025-09-22T15:33:16.000Z","size":11650,"stargazers_count":64,"open_issues_count":8,"forks_count":44,"subscribers_count":24,"default_branch":"main","last_synced_at":"2025-09-22T17:42:25.628Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://multiversx.github.io/mx-sdk-js-core/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/multiversx.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-05-27T14:18:46.000Z","updated_at":"2025-09-22T11:03:20.000Z","dependencies_parsed_at":"2023-02-17T05:15:56.107Z","dependency_job_id":"1f620db9-52a6-43d4-835f-282cf8841a69","html_url":"https://github.com/multiversx/mx-sdk-js-core","commit_stats":null,"previous_names":[],"tags_count":176,"template":false,"template_full_name":null,"purl":"pkg:github/multiversx/mx-sdk-js-core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiversx%2Fmx-sdk-js-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiversx%2Fmx-sdk-js-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiversx%2Fmx-sdk-js-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiversx%2Fmx-sdk-js-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/multiversx","download_url":"https://codeload.github.com/multiversx/mx-sdk-js-core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiversx%2Fmx-sdk-js-core/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278621844,"owners_count":26017253,"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","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-07-30T20:00:48.945Z","updated_at":"2025-10-06T14:04:36.050Z","avatar_url":"https://github.com/multiversx.png","language":"TypeScript","readme":"# MultiversX SDK for JavaScript and TypeScript\n\nMultiversX SDK for JavaScript and TypeScript (written in TypeScript).\n\n## Documentation\n\n- [Cookbook](https://docs.multiversx.com/sdk-and-tools/sdk-js/sdk-js-cookbook/)\n- [Auto-generated documentation](https://multiversx.github.io/mx-sdk-js-core/)\n\n## Distribution\n\n[npm](https://www.npmjs.com/package/@multiversx/sdk-core)\n\n## Installation\n\n`sdk-core` is delivered via **npm** and it can be installed as follows:\n\n```\nnpm install @multiversx/sdk-core\n```\n\n## Development\n\nFeel free to skip this section if you are not a contributor.\n\n### Prerequisites\n\n`browserify` and `esmify` are required to compile the browser-friendly versions of `sdk-core`. They can be installed as follows:\n\n```\nnpm install --global browserify\nnpm install esmify --no-save\n```\n\n## Optional Dependencies\n\n### axios\n\nThis package can make HTTP requests using `axios`, which is not bundled by default. If you plan to use the API network provider or Proxy network provider, make sure to install `axios`:\n\n```bash\nnpm install axios\n```\n\n### @multiversx/sdk-bls-wasm\n\nThis package requires `@multiversx/sdk-bls-wasm` for BLS (Boneh-Lynn-Shacham) cryptographic functions, which is not bundled by default. If you plan to use BLS functionality, make sure to install this optional dependency:\n\n```bash\nnpm install @multiversx/sdk-bls-wasm\n```\n\n### bip39\n\nThis package provides mnemonic and seed generation functionality using `bip39`, but it is not bundled by default. If you plan to use mnemonic-related features, make sure to install this optional dependency:\n\n```bash\nnpm install bip39\n```\n\n### Building the library\n\nIn order to compile the library, run the following:\n\n```\nnpm install\nnpm run compile\nnpm run compile-browser\n```\n\n### Running the tests\n\nIn order to run the tests **on NodeJS**, do as follows:\n\n```\nnpm run tests-unit\nnpm run tests-localnet\nnpm run tests-devnet\nnpm run tests-testnet\n```\n\nBefore running the tests **in the browser**, make sure you have the package `http-server` installed globally.\n\n```\nnpm install --global http-server\n```\n\nIn order to run the tests **in the browser**, do as follows:\n\n```\nmake clean \u0026\u0026 npm run browser-tests\n```\n\nFor the `localnet` tests, make sure you have a _local testnet_ up \u0026 running. In order to start a _local testnet_, follow [this](https://docs.multiversx.com/developers/setup-local-testnet/).\n","funding_links":[],"categories":["TypeScript","MultiversX official"],"sub_categories":["SDKs and dev tools"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiversx%2Fmx-sdk-js-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmultiversx%2Fmx-sdk-js-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiversx%2Fmx-sdk-js-core/lists"}