
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
@nosplatform/api-functions
Advanced tools
nOS API bindings and types
npm i --save @nosplatform/api-functions
yarn add @nosplatform/api-functions
Wrap your component with the higher-order components to provide fallbacks when running outside the
context of the nOS client. Specify propTypes
provided by this
package.
import React from 'react';
import { compose } from 'recompose';
import { injectNOS, injectAssets, nosProps, assetProps } from "@nosplatform/api-functions/lib/react";
class ShowBalance extends React.Component {
static propTypes = {
nos: nosProps.isRequired,
assets: assetProps.isRequired
}
render() {
return (
<button type="button" onClick={this.handleClick}>
Show NEO Balance
</button>
);
}
async handleClick = () => {
const { nos, assets } = this.props;
const balance = await nos.getBalance({ asset: assets.NEO });
console.log('NEO Balance:', balance);
}
};
export default compose(
injectNOS,
injectAssets
)(ShowBalance);
import React from 'react';
import { NosAssets, NosFunctions } from "@nosplatform/api-functions/lib/react";
const ShowBalance = () => {
render() {
const handleClick = async (nos, assets) => {
const balance = await nos.getBalance({ asset: assets.NEO });
console.log('NEO Balance:', balance);
}
return (
<NosFunctions>
{({ nos }) => (
<NosAssets>
{({ assets }) => (
<button type="button" onClick={() => handleClick(nos, assets)}>
Show NEO Balance
</button>
)}
</NosAssets>
)}
</NosFunctions>
);
}
};
export default ShowBalance;
import React from 'react';
import { compose } from 'recompose';
import { useNOS, useAssets } from "@nosplatform/api-functions/lib/react";
const ShowBalance = () => {
render() {
const nos = useNOS();
const assets = useAssets();
const handleClick = async () => {
const balance = await nos.getBalance({ asset: assets.NEO });
console.log('NEO Balance:', balance);
}
return (
<button type="button" onClick={handleClick}>
Show NEO Balance
</button>
);
}
};
export default ShowBalance;
In addition to automatically providing the NOS API function as a prop to your React component, the api-functions package also provides the opportunity to specify a fallback implementation. This is especially useful for building in the context of another browser if not wanting to use the nOS client for any reason.
const previousBalance = "23"; // Calculated previous balance
const balance = await nos.getBalance({ asset: assets.NEO }, () => Promise.resolve(previousBalance));
console.log("NEO Balance:", balance); // NEO Balance: 23
FAQs
nOS API bindings and types
The npm package @nosplatform/api-functions receives a total of 6 weekly downloads. As such, @nosplatform/api-functions popularity was classified as not popular.
We found that @nosplatform/api-functions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.