
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@mysten/graphql-transport
Advanced tools
@mysten/graphql-transportThis package provides a SuiTransport that enables SuiClient to make requests using the RPC 2.0
(GraphQL) API instead of the JSON RPC API.
npm install --save @mysten/graphql-transport
import { SuiClientGraphQLTransport } from '@mysten/graphql-transport';
import { getFullnodeUrl, SuiClient } from '@mysten/sui/client';
const client = new SuiClient({
transport: new SuiClientGraphQLTransport({
url: 'https://sui-testnet.mystenlabs.com/graphql',
// When specified, the transport will fallback to JSON RPC for unsupported method and parameters
fallbackFullNodeUrl: getFullnodeUrl('testnet'),
}),
});
The following methods are currently unsupported in SuiClientGraphQLTransport, and will either error,
or fallback to the JSON RPC API if a fallbackFullNodeUrl is provided:
subscribeTransactionsubscribeEventscallgetNetworkMetricsgetMoveCallMetricsgetAddressMetricsgetEpochsdryRunTransactionBlockdevInspectTransactionBlockexecuteTransactionBlockSome supported methods in SuiClientGraphQLTransport do not support the full set of parameters
available in the JSON RPC API.
If an unsupported parameter is used, the request will error, or fallback to JSON RPC API if a
fallbackFullNodeUrl is provided.
getOwnedObjects:
MatchAll, MatchAny, MatchNone, and Version filtersqueryEvents:
MoveEventField, Module, TimeRange, All, Any, And, and Or filtersqueryTransactionBlocks, getTransactionBlock, and multiGetTransactionBlocks
messageVersion, eventsDigest, sharedObjects, unwrapped, wrapped, and
unwrappedThenDeleted in effectsid for eventsgetStakes and getStakesByIds
validatorAddressgetLatestSuiSystemState
stakingPoolMappingsId, inactivePoolsId, pendingActiveValidatorsId,
validatorCandidatesIdreportRecords on validatorsgetCurrentEpoch
reportRecords on validatorsqueryEvents
id for eventsgetCheckpoint and getCheckpoints
checkpointCommitmentsgetCurrentEpoch
epochTotalTransactionsgetDynamicFields
objectId, digest and version available for DynamicObject but not DynamicFieldSome may require multiple requests to properly resolve:
getDynamicFieldObject requires 2 requestsqueryTransactionBlocks, getTransactionBlock, and multiGetTransactionBlocks
objectChanges, balanceChanges, dependencies
and eventsgetNormalizedMoveModule and getNormalizedMoveModulesByPage
friends, functions, and structsgetCheckpoint and getCheckpoints,
transactionBlocks and validatorsgetLatestSuiSystemState, getCurrentEpoch, getValidatorsApy and getCommitteeInfo:
validatorsPage sizes and limits for paginated methods are based on the defaults and limits of the GraphQL API, so page sizes and limits may be different than those returned by the JSON RPC API
FAQs
A GraphQL transport to allow SuiClient to work with RPC 2.0
The npm package @mysten/graphql-transport receives a total of 247 weekly downloads. As such, @mysten/graphql-transport popularity was classified as not popular.
We found that @mysten/graphql-transport demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.