Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@settlemint/sdk-thegraph
Advanced tools
TheGraph integration module for SettleMint SDK, enabling querying and indexing of blockchain data through subgraphs
✨ https://settlemint.com ✨
Integrate SettleMint into your application with ease.
The SettleMint TheGraph SDK provides a seamless way to interact with TheGraph APIs for blockchain data indexing and querying. It enables you to easily create and manage subgraphs, define schemas, and query indexed blockchain data using GraphQL from your SettleMint-powered blockchain networks.
The SDK offers a type-safe interface for all TheGraph operations, with comprehensive error handling and validation. It integrates smoothly with modern TypeScript applications while providing a simple and intuitive developer experience.
For detailed information about using TheGraph with the SettleMint platform, check out our official documentation.
createTheGraphClient<
Setup
>(options
,clientOptions
?):object
Defined in: sdk/thegraph/src/thegraph.ts:121
Creates a TheGraph GraphQL client with proper type safety using gql.tada
Type Parameter |
---|
Setup extends AbstractSetupSchema |
Parameter | Type | Description |
---|---|---|
options | Omit <{ accessToken : string ; instances : string []; runtime : "server" ; subgraphName : string ; } | { runtime : "browser" ; subgraphName : string ; }, "runtime" > & Record <string , unknown > | Configuration options for the client: - For server-side: instance URLs, access token and subgraph name - For browser-side: just subgraph name |
clientOptions ? | RequestConfig | Optional GraphQL client configuration options |
object
An object containing: - client: The configured GraphQL client instance - graphql: The initialized gql.tada function for type-safe queries
Name | Type | Defined in |
---|---|---|
client | GraphQLClient | sdk/thegraph/src/thegraph.ts:125 |
graphql | initGraphQLTada <Setup > | sdk/thegraph/src/thegraph.ts:126 |
Will throw an error if the options fail validation against ClientOptionsSchema
import { createTheGraphClient } from '@settlemint/sdk-thegraph';
import type { introspection } from '@schemas/the-graph-env-starterkits';
// Server-side usage
const { client, graphql } = createTheGraphClient<{
introspection: introspection;
disableMasking: true;
scalars: {
DateTime: Date;
JSON: Record<string, unknown>;
Bytes: string;
Int8: string;
BigInt: string;
BigDecimal: string;
Timestamp: string;
};
}>({
instances: JSON.parse(process.env.SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS || '[]'),
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN!,
subgraphName: 'starterkits'
});
// Browser-side usage
const { client, graphql } = createTheGraphClient<{
introspection: introspection;
disableMasking: true;
scalars: {
DateTime: Date;
JSON: Record<string, unknown>;
Bytes: string;
Int8: string;
BigInt: string;
BigDecimal: string;
Timestamp: string;
};
}>({
subgraphName: 'starterkits'
});
// Making GraphQL queries
const query = graphql(`
query SearchAssets {
assets {
id
name
symbol
}
}
`);
const result = await client.request(query);
ClientOptions: {
accessToken
:string
;instances
:string
[];runtime
:"server"
;subgraphName
:string
; } | {runtime
:"browser"
;subgraphName
:string
; }
Defined in: sdk/thegraph/src/thegraph.ts:34
Type definition for client options derived from the ClientOptionsSchema
RequestConfig:
ConstructorParameters
<typeofGraphQLClient
>[1
]
Defined in: sdk/thegraph/src/thegraph.ts:10
Type definition for GraphQL client configuration options
const
ClientOptionsSchema:ZodDiscriminatedUnion
<ClientOptions
>
Defined in: sdk/thegraph/src/thegraph.ts:18
Schema for validating client options for the TheGraph client. Defines two possible runtime configurations:
We welcome contributions from the community! Please check out our Contributing guide to learn how you can help improve the SettleMint SDK through bug reports, feature requests, documentation updates, or code contributions.
The SettleMint SDK is released under the FSL Software License. See the LICENSE file for more details.
FAQs
TheGraph integration module for SettleMint SDK, enabling querying and indexing of blockchain data through subgraphs
The npm package @settlemint/sdk-thegraph receives a total of 286 weekly downloads. As such, @settlemint/sdk-thegraph popularity was classified as not popular.
We found that @settlemint/sdk-thegraph demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.