@gpugrid/sdk
v0.4.74
Published
A client package for running GPU Grid jobs on the GPUGrid network.
Readme
GPUGrid Typescript SDK
A client package for running GPU Grid jobs on the GPUGrid network.
What is the GPUGrid Typescript SDK?
The GPUGrid Typescript SDK contains everything you need to run GPU-accelerated jobs on the GPUGrid Network.
Install
npm install --save @gpugrid/sdk
# or install with yarn
yarn add @gpugrid/sdkUsage in Node / Client application
import { Client } from "@gpugrid/sdk";
const grid = new Client({
solana: {
network: 'devnet',
},
});
// ipfs service
grid.ipfs...
// solana service
grid.solana...Installing via tag
<script src="https://unpkg.com/@gpugrid/sdk"></script>
<script>
const grid = new Grid.Client({
solana: {
network: 'devnet',
},
});
</script>Documentation
Please visit our documentation for a full list of commands and examples.
