@solana/rpc-graphql 2.0.0-experimental.f46b34c → 2.0.0-experimental.f5d64e6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.cjs +814 -1200
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +809 -1200
- package/dist/index.browser.js.map +1 -1
- package/dist/index.native.js +809 -1196
- package/dist/index.native.js.map +1 -1
- package/dist/index.node.cjs +814 -1196
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +809 -1196
- package/dist/index.node.js.map +1 -1
- package/dist/types/context.d.ts +17 -15
- package/dist/types/context.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/loaders/account.d.ts +4 -11
- package/dist/types/loaders/account.d.ts.map +1 -1
- package/dist/types/loaders/block.d.ts +5 -4
- package/dist/types/loaders/block.d.ts.map +1 -1
- package/dist/types/loaders/common/resolve-info.d.ts +3 -0
- package/dist/types/loaders/common/resolve-info.d.ts.map +1 -0
- package/dist/types/loaders/program-accounts.d.ts +7 -4
- package/dist/types/loaders/program-accounts.d.ts.map +1 -1
- package/dist/types/loaders/transaction.d.ts +4 -13
- package/dist/types/loaders/transaction.d.ts.map +1 -1
- package/dist/types/loaders/transformers/account.d.ts +8 -0
- package/dist/types/loaders/transformers/account.d.ts.map +1 -0
- package/dist/types/loaders/transformers/block.d.ts +6 -0
- package/dist/types/loaders/transformers/block.d.ts.map +1 -0
- package/dist/types/loaders/transformers/transaction.d.ts +5 -0
- package/dist/types/loaders/transformers/transaction.d.ts.map +1 -0
- package/dist/types/resolvers/account.d.ts +3 -3
- package/dist/types/resolvers/account.d.ts.map +1 -1
- package/dist/types/rpc.d.ts +3 -6
- package/dist/types/rpc.d.ts.map +1 -1
- package/dist/types/schema/account.d.ts +40 -52
- package/dist/types/schema/account.d.ts.map +1 -1
- package/dist/types/schema/block.d.ts +2 -2
- package/dist/types/schema/block.d.ts.map +1 -1
- package/dist/types/schema/common/inputs.d.ts +2 -9
- package/dist/types/schema/common/inputs.d.ts.map +1 -1
- package/dist/types/schema/common/scalars.d.ts +33 -1
- package/dist/types/schema/common/scalars.d.ts.map +1 -1
- package/dist/types/schema/common/types.d.ts +18 -3
- package/dist/types/schema/common/types.d.ts.map +1 -1
- package/dist/types/schema/instruction.d.ts +342 -347
- package/dist/types/schema/instruction.d.ts.map +1 -1
- package/dist/types/schema/program-accounts.d.ts +1 -1
- package/dist/types/schema/program-accounts.d.ts.map +1 -1
- package/dist/types/schema/transaction.d.ts +1 -1
- package/dist/types/schema/transaction.d.ts.map +1 -1
- package/package.json +14 -12
- package/dist/types/cache.d.ts +0 -7
- package/dist/types/cache.d.ts.map +0 -1
package/dist/types/context.d.ts
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import { GraphQLResolveInfo } from 'graphql';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { createRpcGraphQL } from './rpc';
|
|
8
|
-
import { AccountQueryArgs } from './schema/account';
|
|
9
|
-
import { BlockQueryArgs } from './schema/block';
|
|
10
|
-
import { ProgramAccountsQueryArgs } from './schema/program-accounts';
|
|
11
|
-
import { TransactionQueryArgs } from './schema/transaction';
|
|
2
|
+
import { createRpcGraphQL } from './rpc.js';
|
|
3
|
+
import { AccountQueryArgs } from './schema/account.js';
|
|
4
|
+
import { BlockQueryArgs } from './schema/block.js';
|
|
5
|
+
import { ProgramAccountsQueryArgs } from './schema/program-accounts.js';
|
|
6
|
+
import { TransactionQueryArgs } from './schema/transaction.js';
|
|
12
7
|
export type Rpc = Parameters<typeof createRpcGraphQL>[0];
|
|
8
|
+
type LoadFn<TArgs> = (args: TArgs, info?: GraphQLResolveInfo | undefined) => Promise<unknown>;
|
|
9
|
+
type Loader<TArgs> = {
|
|
10
|
+
load: LoadFn<TArgs>;
|
|
11
|
+
};
|
|
12
|
+
type RpcGraphQLLoaders = {
|
|
13
|
+
account: Loader<AccountQueryArgs>;
|
|
14
|
+
block: Loader<BlockQueryArgs>;
|
|
15
|
+
programAccounts: Loader<ProgramAccountsQueryArgs>;
|
|
16
|
+
transaction: Loader<TransactionQueryArgs>;
|
|
17
|
+
};
|
|
13
18
|
export interface RpcGraphQLContext {
|
|
14
|
-
|
|
15
|
-
loadAccount(args: AccountQueryArgs, info?: GraphQLResolveInfo): ReturnType<typeof loadAccount>;
|
|
16
|
-
loadBlock(args: BlockQueryArgs, info?: GraphQLResolveInfo): ReturnType<typeof loadBlock>;
|
|
17
|
-
loadProgramAccounts(args: ProgramAccountsQueryArgs, info?: GraphQLResolveInfo): ReturnType<typeof loadProgramAccounts>;
|
|
18
|
-
loadTransaction(args: TransactionQueryArgs, info?: GraphQLResolveInfo): ReturnType<typeof loadTransaction>;
|
|
19
|
+
loaders: RpcGraphQLLoaders;
|
|
19
20
|
rpc: Rpc;
|
|
20
21
|
}
|
|
21
22
|
export declare function createSolanaGraphQLContext(rpc: Rpc): RpcGraphQLContext;
|
|
23
|
+
export {};
|
|
22
24
|
//# sourceMappingURL=context.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAM7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAE5D,MAAM,MAAM,GAAG,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC;AAEzD,KAAK,MAAM,CAAC,KAAK,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,EAAE,kBAAkB,GAAG,SAAS,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;AAC9F,KAAK,MAAM,CAAC,KAAK,IAAI;IAAE,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;CAAE,CAAC;AAC7C,KAAK,iBAAiB,GAAG;IACrB,OAAO,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC;IAClC,KAAK,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC;IAC9B,eAAe,EAAE,MAAM,CAAC,wBAAwB,CAAC,CAAC;IAClD,WAAW,EAAE,MAAM,CAAC,oBAAoB,CAAC,CAAC;CAC7C,CAAC;AAEF,MAAM,WAAW,iBAAiB;IAC9B,OAAO,EAAE,iBAAiB,CAAC;IAC3B,GAAG,EAAE,GAAG,CAAC;CACZ;AAED,wBAAgB,0BAA0B,CAAC,GAAG,EAAE,GAAG,GAAG,iBAAiB,CAUtE"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './rpc';
|
|
1
|
+
export * from './rpc.js';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
import { GraphQLResolveInfo } from 'graphql';
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
data: any;
|
|
7
|
-
meta: {
|
|
8
|
-
program: any;
|
|
9
|
-
space: any;
|
|
10
|
-
type: any;
|
|
11
|
-
};
|
|
2
|
+
import type { Rpc } from '../context.js';
|
|
3
|
+
import { AccountQueryArgs } from '../schema/account.js';
|
|
4
|
+
export declare function createAccountLoader(rpc: Rpc): {
|
|
5
|
+
load: (args: AccountQueryArgs, info?: GraphQLResolveInfo) => Promise<any>;
|
|
12
6
|
};
|
|
13
|
-
export declare function loadAccount({ address, ...config }: AccountQueryArgs, cache: GraphQLCache, rpc: Rpc, info?: GraphQLResolveInfo): Promise<any>;
|
|
14
7
|
//# sourceMappingURL=account.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../src/loaders/account.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../src/loaders/account.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAkCrD,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,GAAG;iBAGjB,gBAAgB,SAAS,kBAAkB;EASrE"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { GraphQLResolveInfo } from 'graphql';
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
import type { Rpc } from '../context.js';
|
|
3
|
+
import { BlockQueryArgs } from '../schema/block.js';
|
|
4
|
+
export declare function createBlockLoader(rpc: Rpc): {
|
|
5
|
+
load: (args: BlockQueryArgs, info?: GraphQLResolveInfo) => Promise<any>;
|
|
6
|
+
};
|
|
6
7
|
//# sourceMappingURL=block.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block.d.ts","sourceRoot":"","sources":["../../../src/loaders/block.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"block.d.ts","sourceRoot":"","sources":["../../../src/loaders/block.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AA0CjD,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,GAAG;iBAGf,cAAc,SAAS,kBAAkB;EASnE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolve-info.d.ts","sourceRoot":"","sources":["../../../../src/loaders/common/resolve-info.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAc/F"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { GraphQLResolveInfo } from 'graphql';
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
import type { Rpc } from '../context.js';
|
|
3
|
+
import { ProgramAccountsQueryArgs } from '../schema/program-accounts.js';
|
|
4
|
+
export declare function createProgramAccountsLoader(rpc: Rpc): {
|
|
5
|
+
load: (args: ProgramAccountsQueryArgs, info?: GraphQLResolveInfo) => Promise<any[] | {
|
|
6
|
+
programAddress: import("@solana/addresses").Address;
|
|
7
|
+
}>;
|
|
8
|
+
};
|
|
6
9
|
//# sourceMappingURL=program-accounts.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program-accounts.d.ts","sourceRoot":"","sources":["../../../src/loaders/program-accounts.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"program-accounts.d.ts","sourceRoot":"","sources":["../../../src/loaders/program-accounts.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAiDtE,wBAAgB,2BAA2B,CAAC,GAAG,EAAE,GAAG;iBAGzB,wBAAwB,SAAS,kBAAkB;;;EAS7E"}
|
|
@@ -1,16 +1,7 @@
|
|
|
1
1
|
import { GraphQLResolveInfo } from 'graphql';
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
encoding: string;
|
|
7
|
-
transaction: any;
|
|
8
|
-
}): {
|
|
9
|
-
data: any;
|
|
10
|
-
encoding: string;
|
|
11
|
-
meta: any;
|
|
12
|
-
slot: any;
|
|
13
|
-
version: any;
|
|
2
|
+
import type { Rpc } from '../context.js';
|
|
3
|
+
import { TransactionQueryArgs } from '../schema/transaction.js';
|
|
4
|
+
export declare function createTransactionLoader(rpc: Rpc): {
|
|
5
|
+
load: (args: TransactionQueryArgs, info?: GraphQLResolveInfo) => Promise<any>;
|
|
14
6
|
};
|
|
15
|
-
export declare function loadTransaction({ signature, ...config }: TransactionQueryArgs, cache: GraphQLCache, rpc: Rpc, _info?: GraphQLResolveInfo): Promise<{} | null | undefined>;
|
|
16
7
|
//# sourceMappingURL=transaction.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transaction.d.ts","sourceRoot":"","sources":["../../../src/loaders/transaction.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"transaction.d.ts","sourceRoot":"","sources":["../../../src/loaders/transaction.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAyD7D,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,GAAG;iBAGrB,oBAAoB,SAAS,kBAAkB;EASzE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Address } from '@solana/addresses';
|
|
2
|
+
import { AccountQueryArgs } from '../../schema/account.js';
|
|
3
|
+
export declare function transformLoadedAccount({ account, address, encoding, }: {
|
|
4
|
+
account: any;
|
|
5
|
+
address: Address;
|
|
6
|
+
encoding: AccountQueryArgs['encoding'];
|
|
7
|
+
}): any;
|
|
8
|
+
//# sourceMappingURL=account.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../src/loaders/transformers/account.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAE5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAkBxD,wBAAgB,sBAAsB,CAAC,EACnC,OAAO,EACP,OAAO,EACP,QAAQ,GACX,EAAE;IACC,OAAO,EAAE,GAAG,CAAC;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,gBAAgB,CAAC,UAAU,CAAC,CAAC;CAC1C,OA0BA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"block.d.ts","sourceRoot":"","sources":["../../../../src/loaders/transformers/block.ts"],"names":[],"mappings":"AAGA,wBAAgB,oBAAoB,CAAC,EACjC,QAAQ,EACR,KAAK,EACL,kBAAkB,GACrB,EAAE;IACC,KAAK,EAAE,GAAG,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,kBAAkB,EAAE,MAAM,CAAC;CAC9B,OAiBA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transaction.d.ts","sourceRoot":"","sources":["../../../../src/loaders/transformers/transaction.ts"],"names":[],"mappings":"AA2BA,wBAAgB,0BAA0B,CAAC,EAAE,QAAQ,EAAE,WAAW,EAAE,EAAE;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,GAAG,CAAA;CAAE,OAW3G"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Address } from '@solana/addresses';
|
|
2
2
|
import { GraphQLResolveInfo } from 'graphql';
|
|
3
|
-
import { RpcGraphQLContext } from '../context';
|
|
4
|
-
import { AccountQueryArgs } from '../schema/account';
|
|
3
|
+
import { RpcGraphQLContext } from '../context.js';
|
|
4
|
+
import { AccountQueryArgs } from '../schema/account.js';
|
|
5
5
|
export declare const resolveAccount: (fieldName: string) => (parent: {
|
|
6
6
|
[x: string]: Address;
|
|
7
|
-
}, args: AccountQueryArgs, context: RpcGraphQLContext, info: GraphQLResolveInfo | undefined) => Promise<
|
|
7
|
+
}, args: AccountQueryArgs, context: RpcGraphQLContext, info: GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
8
8
|
//# sourceMappingURL=account.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../src/resolvers/account.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAErD,eAAO,MAAM,cAAc,cAAe,MAAM;;SAGlC,gBAAgB,WACb,iBAAiB,QACpB,kBAAkB,GAAG,SAAS,
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../src/resolvers/account.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAErD,eAAO,MAAM,cAAc,cAAe,MAAM;;SAGlC,gBAAgB,WACb,iBAAiB,QACpB,kBAAkB,GAAG,SAAS,4BAG3C,CAAC"}
|
package/dist/types/rpc.d.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
import { GetAccountInfoApi } from '@solana/rpc-core
|
|
2
|
-
import {
|
|
3
|
-
import { GetProgramAccountsApi } from '@solana/rpc-core/dist/types/rpc-methods/getProgramAccounts';
|
|
4
|
-
import { GetTransactionApi } from '@solana/rpc-core/dist/types/rpc-methods/getTransaction';
|
|
5
|
-
import { Rpc } from '@solana/rpc-transport/dist/types/json-rpc-types';
|
|
1
|
+
import type { GetAccountInfoApi, GetBlockApi, GetProgramAccountsApi, GetTransactionApi } from '@solana/rpc-core';
|
|
2
|
+
import type { Rpc } from '@solana/rpc-transport';
|
|
6
3
|
import { graphql, GraphQLSchema, Source } from 'graphql';
|
|
7
|
-
import { RpcGraphQLContext } from './context';
|
|
4
|
+
import { RpcGraphQLContext } from './context.js';
|
|
8
5
|
type RpcMethods = GetAccountInfoApi & GetBlockApi & GetProgramAccountsApi & GetTransactionApi;
|
|
9
6
|
export interface RpcGraphQL {
|
|
10
7
|
context: RpcGraphQLContext;
|
package/dist/types/rpc.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rpc.d.ts","sourceRoot":"","sources":["../../src/rpc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"rpc.d.ts","sourceRoot":"","sources":["../../src/rpc.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,WAAW,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACjH,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAEzD,OAAO,EAA8B,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAG1E,KAAK,UAAU,GAAG,iBAAiB,GAAG,WAAW,GAAG,qBAAqB,GAAG,iBAAiB,CAAC;AAE9F,MAAM,WAAW,UAAU;IACvB,OAAO,EAAE,iBAAiB,CAAC;IAC3B,KAAK,CACD,MAAM,EAAE,MAAM,GAAG,MAAM,EACvB,cAAc,CAAC,EAAE;QAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,GAC1D,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC;IAC9B,MAAM,EAAE,aAAa,CAAC;CACzB;AAED,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,GAAG,CAAC,UAAU,CAAC,GAAG,UAAU,CAejE"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Address } from '@solana/addresses';
|
|
2
|
-
import { DataSlice, Slot } from '@solana/rpc-core
|
|
2
|
+
import type { DataSlice, Slot } from '@solana/rpc-core';
|
|
3
3
|
export type AccountQueryArgs = {
|
|
4
4
|
address: Address;
|
|
5
5
|
dataSlice?: DataSlice;
|
|
@@ -7,118 +7,106 @@ export type AccountQueryArgs = {
|
|
|
7
7
|
commitment?: 'processed' | 'confirmed' | 'finalized';
|
|
8
8
|
minContextSlot?: Slot;
|
|
9
9
|
};
|
|
10
|
-
export declare const accountTypeDefs = "\n # Account interface\n interface Account {\n address:
|
|
10
|
+
export declare const accountTypeDefs = "\n # Account interface\n interface Account {\n address: Address\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n }\n\n # An account with base58 encoded data\n type AccountBase58 implements Account {\n address: Address\n data: Base58EncodedBytes\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n }\n\n # An account with base64 encoded data\n type AccountBase64 implements Account {\n address: Address\n data: Base64EncodedBytes\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n }\n\n # An account with base64+zstd encoded data\n type AccountBase64Zstd implements Account {\n address: Address\n data: Base64ZstdEncodedBytes\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n }\n\n # A nonce account\n type NonceAccountFeeCalculator {\n lamportsPerSignature: String\n }\n type NonceAccount implements Account {\n address: Address\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n authority: Account\n blockhash: String\n feeCalculator: NonceAccountFeeCalculator\n }\n\n # A lookup table account\n type LookupTableAccount implements Account {\n address: Address\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n addresses: [Address]\n authority: Account\n deactivationSlot: String\n lastExtendedSlot: String\n lastExtendedSlotStartIndex: Int\n }\n\n # A mint account\n type MintAccount implements Account {\n address: Address\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n decimals: Int\n freezeAuthority: Account\n isInitialized: Boolean\n mintAuthority: Account\n supply: String\n }\n\n # A token account\n type TokenAccount implements Account {\n address: Address\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n isNative: Boolean\n mint: Account\n owner: Account\n state: String\n tokenAmount: TokenAmount\n }\n\n # A stake account\n type StakeAccountDataMetaAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeAccountDataMetaLockup {\n custodian: Account\n epoch: BigInt\n unixTimestamp: BigInt\n }\n type StakeAccountDataMeta {\n authorized: StakeAccountDataMetaAuthorized\n lockup: StakeAccountDataMetaLockup\n rentExemptReserve: String\n }\n type StakeAccountDataStakeDelegation {\n activationEpoch: BigInt\n deactivationEpoch: BigInt\n stake: String\n voter: Account\n warmupCooldownRate: Int\n }\n type StakeAccountDataStake {\n creditsObserved: BigInt\n delegation: StakeAccountDataStakeDelegation\n }\n type StakeAccount implements Account {\n address: Address\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n meta: StakeAccountDataMeta\n stake: StakeAccountDataStake\n }\n\n # A vote account\n type VoteAccountDataAuthorizedVoter {\n authorizedVoter: Account\n epoch: BigInt\n }\n type VoteAccountDataEpochCredit {\n credits: String\n epoch: BigInt\n previousCredits: String\n }\n type VoteAccountDataLastTimestamp {\n slot: BigInt\n timestamp: BigInt\n }\n type VoteAccountDataVote {\n confirmationCount: Int\n slot: BigInt\n }\n type VoteAccount implements Account {\n address: Address\n executable: Boolean\n lamports: BigInt\n ownerProgram: Account\n space: BigInt\n rentEpoch: BigInt\n authorizedVoters: [VoteAccountDataAuthorizedVoter]\n authorizedWithdrawer: Account\n commission: Int\n epochCredits: [VoteAccountDataEpochCredit]\n lastTimestamp: VoteAccountDataLastTimestamp\n node: Account\n priorVoters: [Address]\n rootSlot: BigInt\n votes: [VoteAccountDataVote]\n }\n";
|
|
11
11
|
export declare const accountResolvers: {
|
|
12
12
|
Account: {
|
|
13
13
|
__resolveType(account: {
|
|
14
14
|
encoding: string;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
type: string;
|
|
18
|
-
};
|
|
15
|
+
programName: string;
|
|
16
|
+
accountType: string;
|
|
19
17
|
}): "AccountBase58" | "AccountBase64" | "AccountBase64Zstd" | "NonceAccount" | "MintAccount" | "TokenAccount" | "StakeAccount" | "VoteAccount" | "LookupTableAccount";
|
|
20
18
|
};
|
|
21
19
|
AccountBase58: {
|
|
22
|
-
|
|
20
|
+
ownerProgram: (parent: {
|
|
23
21
|
[x: string]: Address;
|
|
24
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
22
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
25
23
|
};
|
|
26
24
|
AccountBase64: {
|
|
27
|
-
|
|
25
|
+
ownerProgram: (parent: {
|
|
28
26
|
[x: string]: Address;
|
|
29
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
27
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
30
28
|
};
|
|
31
29
|
AccountBase64Zstd: {
|
|
32
|
-
|
|
30
|
+
ownerProgram: (parent: {
|
|
33
31
|
[x: string]: Address;
|
|
34
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
32
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
35
33
|
};
|
|
36
|
-
|
|
34
|
+
NonceAccount: {
|
|
37
35
|
authority: (parent: {
|
|
38
36
|
[x: string]: Address;
|
|
39
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
40
|
-
|
|
41
|
-
NonceAccount: {
|
|
42
|
-
owner: (parent: {
|
|
37
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
38
|
+
ownerProgram: (parent: {
|
|
43
39
|
[x: string]: Address;
|
|
44
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
40
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
45
41
|
};
|
|
46
|
-
|
|
42
|
+
LookupTableAccount: {
|
|
47
43
|
authority: (parent: {
|
|
48
44
|
[x: string]: Address;
|
|
49
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
50
|
-
|
|
51
|
-
LookupTableAccount: {
|
|
52
|
-
owner: (parent: {
|
|
45
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
46
|
+
ownerProgram: (parent: {
|
|
53
47
|
[x: string]: Address;
|
|
54
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
48
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
55
49
|
};
|
|
56
|
-
|
|
50
|
+
MintAccount: {
|
|
57
51
|
freezeAuthority: (parent: {
|
|
58
52
|
[x: string]: Address;
|
|
59
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
53
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
60
54
|
mintAuthority: (parent: {
|
|
61
55
|
[x: string]: Address;
|
|
62
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
63
|
-
|
|
64
|
-
MintAccount: {
|
|
65
|
-
owner: (parent: {
|
|
56
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
57
|
+
ownerProgram: (parent: {
|
|
66
58
|
[x: string]: Address;
|
|
67
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
59
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
68
60
|
};
|
|
69
|
-
|
|
61
|
+
TokenAccount: {
|
|
70
62
|
mint: (parent: {
|
|
71
63
|
[x: string]: Address;
|
|
72
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
64
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
73
65
|
owner: (parent: {
|
|
74
66
|
[x: string]: Address;
|
|
75
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
76
|
-
|
|
77
|
-
TokenAccount: {
|
|
78
|
-
owner: (parent: {
|
|
67
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
68
|
+
ownerProgram: (parent: {
|
|
79
69
|
[x: string]: Address;
|
|
80
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
70
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
81
71
|
};
|
|
82
72
|
StakeAccountDataMetaAuthorized: {
|
|
83
73
|
staker: (parent: {
|
|
84
74
|
[x: string]: Address;
|
|
85
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
75
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
86
76
|
withdrawer: (parent: {
|
|
87
77
|
[x: string]: Address;
|
|
88
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
78
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
89
79
|
};
|
|
90
80
|
StakeAccountDataMetaLockup: {
|
|
91
81
|
custodian: (parent: {
|
|
92
82
|
[x: string]: Address;
|
|
93
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
83
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
94
84
|
};
|
|
95
85
|
StakeAccountDataStakeDelegation: {
|
|
96
86
|
voter: (parent: {
|
|
97
87
|
[x: string]: Address;
|
|
98
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
88
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
99
89
|
};
|
|
100
90
|
StakeAccount: {
|
|
101
|
-
|
|
91
|
+
ownerProgram: (parent: {
|
|
102
92
|
[x: string]: Address;
|
|
103
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
93
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
104
94
|
};
|
|
105
95
|
VoteAccountDataAuthorizedVoter: {
|
|
106
96
|
authorizedVoter: (parent: {
|
|
107
97
|
[x: string]: Address;
|
|
108
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
98
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
109
99
|
};
|
|
110
|
-
|
|
100
|
+
VoteAccount: {
|
|
111
101
|
authorizedWithdrawer: (parent: {
|
|
112
102
|
[x: string]: Address;
|
|
113
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
103
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
114
104
|
node: (parent: {
|
|
115
105
|
[x: string]: Address;
|
|
116
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
117
|
-
|
|
118
|
-
VoteAccount: {
|
|
119
|
-
owner: (parent: {
|
|
106
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
107
|
+
ownerProgram: (parent: {
|
|
120
108
|
[x: string]: Address;
|
|
121
|
-
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
109
|
+
}, args: AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
122
110
|
};
|
|
123
111
|
};
|
|
124
112
|
//# sourceMappingURL=account.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../src/schema/account.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../src/schema/account.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAIxD,MAAM,MAAM,gBAAgB,GAAG;IAC3B,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,QAAQ,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,aAAa,GAAG,YAAY,CAAC;IAC9D,UAAU,CAAC,EAAE,WAAW,GAAG,WAAW,GAAG,WAAW,CAAC;IACrD,cAAc,CAAC,EAAE,IAAI,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,eAAe,ypJAiL3B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;+BAEE;YAAE,QAAQ,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiF5F,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Slot } from '@solana/rpc-core
|
|
1
|
+
import type { Slot } from '@solana/rpc-core';
|
|
2
2
|
import { Commitment } from '@solana/rpc-types';
|
|
3
3
|
export type BlockQueryArgs = {
|
|
4
4
|
slot: Slot;
|
|
@@ -6,7 +6,7 @@ export type BlockQueryArgs = {
|
|
|
6
6
|
encoding?: 'base58' | 'base64' | 'jsonParsed';
|
|
7
7
|
transactionDetails?: 'accounts' | 'full' | 'none' | 'signatures';
|
|
8
8
|
};
|
|
9
|
-
export declare const blockTypeDefs = "\n type TransactionMetaForAccounts {\n err: String\n fee: BigInt\n postBalances: [BigInt]\n postTokenBalances: [TokenBalance]\n preBalances: [BigInt]\n preTokenBalances: [TokenBalance]\n status: TransactionStatus\n }\n\n type TransactionDataForAccounts {\n accountKeys: [
|
|
9
|
+
export declare const blockTypeDefs = "\n type TransactionMetaForAccounts {\n err: String\n fee: BigInt\n postBalances: [BigInt]\n postTokenBalances: [TokenBalance]\n preBalances: [BigInt]\n preTokenBalances: [TokenBalance]\n status: TransactionStatus\n }\n\n type TransactionDataForAccounts {\n accountKeys: [Address]\n signatures: [String]\n }\n\n type BlockTransactionAccounts {\n meta: TransactionMetaForAccounts\n data: TransactionDataForAccounts\n version: String\n }\n\n # Block interface\n interface Block {\n blockhash: String\n blockHeight: BigInt\n blockTime: Int\n parentSlot: BigInt\n previousBlockhash: String\n rewards: [Reward]\n transactionDetails: String\n }\n\n # A block with account transaction details\n type BlockWithAccounts implements Block {\n blockhash: String\n blockHeight: BigInt\n blockTime: Int\n parentSlot: BigInt\n previousBlockhash: String\n rewards: [Reward]\n transactions: [BlockTransactionAccounts]\n transactionDetails: String\n }\n\n # A block with full transaction details\n type BlockWithFull implements Block {\n blockhash: String\n blockHeight: BigInt\n blockTime: Int\n parentSlot: BigInt\n previousBlockhash: String\n rewards: [Reward]\n transactions: [Transaction]\n transactionDetails: String\n }\n\n # A block with none transaction details\n type BlockWithNone implements Block {\n blockhash: String\n blockHeight: BigInt\n blockTime: Int\n parentSlot: BigInt\n previousBlockhash: String\n rewards: [Reward]\n transactionDetails: String\n }\n\n # A block with signature transaction details\n type BlockWithSignatures implements Block {\n blockhash: String\n blockHeight: BigInt\n blockTime: Int\n parentSlot: BigInt\n previousBlockhash: String\n rewards: [Reward]\n signatures: [String]\n transactionDetails: String\n }\n";
|
|
10
10
|
export declare const blockResolvers: {
|
|
11
11
|
Block: {
|
|
12
12
|
__resolveType(block: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block.d.ts","sourceRoot":"","sources":["../../../src/schema/block.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"block.d.ts","sourceRoot":"","sources":["../../../src/schema/block.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C,MAAM,MAAM,cAAc,GAAG;IACzB,IAAI,EAAE,IAAI,CAAC;IACX,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,QAAQ,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,YAAY,CAAC;IAC9C,kBAAkB,CAAC,EAAE,UAAU,GAAG,MAAM,GAAG,MAAM,GAAG,YAAY,CAAC;CACpE,CAAC;AAEF,eAAO,MAAM,aAAa,umEA+EzB,CAAC;AAEF,eAAO,MAAM,cAAc;;6BAEE;YAAE,kBAAkB,EAAE,MAAM,CAAA;SAAE;;CAa1D,CAAC"}
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
export declare const inputTypeDefs = "\n
|
|
2
|
-
export declare const inputResolvers: {
|
|
3
|
-
AccountEncoding: {
|
|
4
|
-
base64Zstd: string;
|
|
5
|
-
};
|
|
6
|
-
TransactionVersion: {
|
|
7
|
-
zero: number;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
1
|
+
export declare const inputTypeDefs = "\n input DataSlice {\n offset: Int\n length: Int\n }\n\n input ProgramAccountsFilter {\n bytes: BigInt\n dataSize: BigInt\n encoding: AccountEncoding\n offset: BigInt\n }\n";
|
|
2
|
+
export declare const inputResolvers: {};
|
|
10
3
|
//# sourceMappingURL=inputs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inputs.d.ts","sourceRoot":"","sources":["../../../../src/schema/common/inputs.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"inputs.d.ts","sourceRoot":"","sources":["../../../../src/schema/common/inputs.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,uOAYzB,CAAC;AAEF,eAAO,MAAM,cAAc,IAAK,CAAC"}
|
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
import { Kind } from 'graphql';
|
|
2
|
-
export declare const scalarTypeDefs = "\n scalar BigInt\n";
|
|
2
|
+
export declare const scalarTypeDefs = "\n scalar Address\n scalar Base58EncodedBytes\n scalar Base64EncodedBytes\n scalar Base64ZstdEncodedBytes\n scalar BigInt\n";
|
|
3
3
|
export declare const scalarResolvers: {
|
|
4
|
+
Address: {
|
|
5
|
+
__parseLiteral(ast: {
|
|
6
|
+
kind: Kind;
|
|
7
|
+
value: string | number | bigint | boolean;
|
|
8
|
+
}): string | null;
|
|
9
|
+
__parseValue(value: string): string;
|
|
10
|
+
__serialize(value: string): string;
|
|
11
|
+
};
|
|
12
|
+
Base58EncodedBytes: {
|
|
13
|
+
__parseLiteral(ast: {
|
|
14
|
+
kind: Kind;
|
|
15
|
+
value: string | number | bigint | boolean;
|
|
16
|
+
}): string | null;
|
|
17
|
+
__parseValue(value: string): string;
|
|
18
|
+
__serialize(value: string): string;
|
|
19
|
+
};
|
|
20
|
+
Base64EncodedBytes: {
|
|
21
|
+
__parseLiteral(ast: {
|
|
22
|
+
kind: Kind;
|
|
23
|
+
value: string | number | bigint | boolean;
|
|
24
|
+
}): string | null;
|
|
25
|
+
__parseValue(value: string): string;
|
|
26
|
+
__serialize(value: string): string;
|
|
27
|
+
};
|
|
28
|
+
Base64ZstdEncodedBytes: {
|
|
29
|
+
__parseLiteral(ast: {
|
|
30
|
+
kind: Kind;
|
|
31
|
+
value: string | number | bigint | boolean;
|
|
32
|
+
}): string | null;
|
|
33
|
+
__parseValue(value: string): string;
|
|
34
|
+
__serialize(value: string): string;
|
|
35
|
+
};
|
|
4
36
|
BigInt: {
|
|
5
37
|
__parseLiteral(ast: {
|
|
6
38
|
kind: Kind;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scalars.d.ts","sourceRoot":"","sources":["../../../../src/schema/common/scalars.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAE/B,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"scalars.d.ts","sourceRoot":"","sources":["../../../../src/schema/common/scalars.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAE/B,eAAO,MAAM,cAAc,+IAM1B,CAAC;AAiBF,eAAO,MAAM,eAAe;;4BAdJ;YAAE,IAAI,EAAE,IAAI,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,GAAG,MAAM,GAAG,IAAI;4BAMzE,MAAM,GAAG,MAAM;2BAGhB,MAAM,GAAG,MAAM;;;4BATd;YAAE,IAAI,EAAE,IAAI,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,GAAG,MAAM,GAAG,IAAI;4BAMzE,MAAM,GAAG,MAAM;2BAGhB,MAAM,GAAG,MAAM;;;4BATd;YAAE,IAAI,EAAE,IAAI,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,GAAG,MAAM,GAAG,IAAI;4BAMzE,MAAM,GAAG,MAAM;2BAGhB,MAAM,GAAG,MAAM;;;4BATd;YAAE,IAAI,EAAE,IAAI,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,GAAG,MAAM,GAAG,IAAI;4BAMzE,MAAM,GAAG,MAAM;2BAGhB,MAAM,GAAG,MAAM;;;4BAWV;YAAE,IAAI,EAAE,IAAI,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;SAAE,GAAG,MAAM,GAAG,IAAI;4BAMzE,MAAM,GAAG,MAAM;2BAGhB,MAAM,GAAG,MAAM;;CAIzC,CAAC"}
|
|
@@ -1,12 +1,27 @@
|
|
|
1
|
-
export declare const commonTypeDefs = "\n type ReturnData {\n data:
|
|
1
|
+
export declare const commonTypeDefs = "\n enum AccountEncoding {\n BASE_58\n BASE_64\n BASE_64_ZSTD\n PARSED\n }\n\n enum BlockTransactionDetails {\n accounts\n full\n none\n signatures\n }\n\n enum Commitment {\n confirmed\n finalized\n processed\n }\n\n type ReturnData {\n data: Base64EncodedBytes\n programId: Address\n }\n\n type Reward {\n commission: Int\n lamports: BigInt\n postBalance: BigInt\n pubkey: Address\n rewardType: String\n }\n\n type TokenAmount {\n amount: String\n decimals: Int\n uiAmount: BigInt\n uiAmountString: String\n }\n\n type TokenBalance {\n accountIndex: Int\n mint: Account\n owner: Account\n programId: Address\n uiTokenAmount: TokenAmount\n }\n\n enum TransactionEncoding {\n BASE_58\n BASE_64\n PARSED\n }\n\n enum TransactionVersion {\n LEGACY\n ZERO\n }\n";
|
|
2
2
|
export declare const commonResolvers: {
|
|
3
|
+
AccountEncoding: {
|
|
4
|
+
BASE_58: string;
|
|
5
|
+
BASE_64: string;
|
|
6
|
+
BASE_64_ZSTD: string;
|
|
7
|
+
PARSED: string;
|
|
8
|
+
};
|
|
3
9
|
TokenBalance: {
|
|
4
10
|
mint: (parent: {
|
|
5
11
|
[x: string]: import("@solana/addresses").Address;
|
|
6
|
-
}, args: import("../account").AccountQueryArgs, context: import("../../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
12
|
+
}, args: import("../account").AccountQueryArgs, context: import("../../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
7
13
|
owner: (parent: {
|
|
8
14
|
[x: string]: import("@solana/addresses").Address;
|
|
9
|
-
}, args: import("../account").AccountQueryArgs, context: import("../../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<
|
|
15
|
+
}, args: import("../account").AccountQueryArgs, context: import("../../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
16
|
+
};
|
|
17
|
+
TransactionEncoding: {
|
|
18
|
+
BASE_58: string;
|
|
19
|
+
BASE_64: string;
|
|
20
|
+
PARSED: string;
|
|
21
|
+
};
|
|
22
|
+
TransactionVersion: {
|
|
23
|
+
LEGACY: string;
|
|
24
|
+
ZERO: number;
|
|
10
25
|
};
|
|
11
26
|
};
|
|
12
27
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/schema/common/types.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/schema/common/types.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,ghCA2D1B,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;CAoB3B,CAAC"}
|