Skip to content

expose getWalletClient for testnet experiments #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/lovely-pans-greet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@graphprotocol/grc-20": patch
---

expose getWalletClient for testnet experiments
28 changes: 14 additions & 14 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export * from "./src/types.js";
export * from './src/types.js';

/**
* This module provides utility functions for working knowledge graph
* identifiers in TypeScript.
*
* @since 0.0.6
*/
export * as Id from "./src/id.js";
export * as Id from './src/id.js';

export {
getAcceptEditorArguments,
Expand All @@ -15,49 +15,49 @@ export {
getProcessGeoProposalArguments,
getRemoveEditorArguments,
getRemoveSubspaceArguments,
} from "./src/encodings/index.js";
} from './src/encodings/index.js';

/**
* This module provides utility functions for working with knowledge graph
* images in TypeScript.
*
* @since 0.0.6
*/
export { Account } from "./src/account.js";
export { Account } from './src/account.js';

export { DataBlock, TextBlock } from "./src/blocks.js";
export { DataBlock, TextBlock } from './src/blocks.js';

export * as Encoding from "./src/encoding.js";
export * as Encoding from './src/encoding.js';

export { getChecksumAddress } from "./src/core/get-checksum-address.js";
export { getChecksumAddress } from './src/core/get-checksum-address.js';

export * as Graph from "./src/graph/index.js";
export * as Graph from './src/graph/index.js';
/**
* This module provides utility functions for interacting with the default
* IPFS gateway in TypeScript.
*
* @since 0.1.1
*/
export * as Ipfs from "./src/ipfs.js";
export * as Ipfs from './src/ipfs.js';

export { Position } from "./src/position.js";
export { Position } from './src/position.js';

/**
* This module provides utility functions for working with Graph URIs in TypeScript.
*
* @since 0.0.6
*/
export { GraphUrl } from "./src/scheme.js";
export { GraphUrl } from './src/scheme.js';

export { getSmartAccountWalletClient } from "./src/smart-wallet.js";
export { getSmartAccountWalletClient, getWalletClient } from './src/smart-wallet.js';

/**
* Provides ids for commonly used entities across the Knowledge Graph.
*/
export { ContentIds, NetworkIds, SystemIds } from "./src/system-ids.js";
export { ContentIds, NetworkIds, SystemIds } from './src/system-ids.js';

/**
* This module provides utility functions for working with base58 ids
* in TypeScript.
*/
export * as Base58 from "./src/core/base58.js";
export * as Base58 from './src/core/base58.js';
Loading