Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
ZumoKit is a state of the art wallet architecture underpinning our flagship product Zumo that provides secure transfer and exchange of fiat and cryptocurrency funds.
Refer to ZumoKit SDK developer documentation and reference for usage details.
Include the ZumoKit script on each page of your site — it should always be loaded directly from https://js.zumo.money, rather than included in a bundle or hosted yourself.
Additionally, ZumoKit is dependent on decimal.js, which has to be added separately.
<script src="https://js.zumo.money/4.1.0-alpha.2/decimal.js"></script>
<script src="https://js.zumo.money/4.1.0-alpha.2/zumokit.js"></script>
ZumoKit is distributed through NPM repository and it has a peer dependency on decimal.js, which also has to be installed:
npm install decimal.js@^10.2.0 zumokit
Entry point to ZumoKit SDK is loadZumoKit
function. This function returns a Promise that resolves with a newly created ZumoKit object once ZumoKit SDK has loaded. Behind the scenes, it will load ZumoKit WebAssebly module for you by inserting the zumocore.js script tag. ZumoKit requires browser environment to work as expected and it will not work in in a server environment.
Refer to ZumoKit SDK developer documentation and reference for usage details.
Replace API_KEY, API_ROOT, TX_SERVICE_URL, CARD_SERVICE_URL and NOTIFICATION_SERVICE_URL in the examples below with credentials provided to you by your account manager.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>ZumoKit Example</title>
<script>
window.addEventListener("load", async (event) => {
const zumokit = await loadZumoKit(
API_KEY,
API_URL,
TRANSACTION_SERVICE_URL,
CARD_SERVICE_URL,
NOTIFICATION_SERVICE_URL
);
console.log(zumokit.version);
});
</script>
</head>
<body>
<p>Check console output!</p>
<script src="https://js.zumo.money/4.1.0-alpha.2/decimal.js"></script>
<script src="https://js.zumo.money/4.1.0-alpha.2/zumokit.js"></script>
</body>
</html>
import { loadZumoKit } from "zumokit";
const zumokit = await loadZumoKit(
API_KEY,
API_URL,
TRANSACTION_SERVICE_URL,
CARD_SERVICE_URL,
NOTIFICATION_SERVICE_URL
);
console.log(zumoKit.version);
This package exports TypeScript declarations for ZumoKit type aliases and interfaces via named exports. For example:
import { CurrencyCode, AccountType, Network } from "zumokit";
The webpack example project demonstrates the expected user flow, including authentication process, wallet creation and transaction submission.
FAQs
ZumoKit is a Wallet as a Service SDK
The npm package zumokit receives a total of 179 weekly downloads. As such, zumokit popularity was classified as not popular.
We found that zumokit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.