Skip to content
Open
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
3 changes: 2 additions & 1 deletion common-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tensor-foundation/common-helpers",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"description": "Common helper functions for Tensor SDKs",
"sideEffects": false,
"module": "./dist/src/index.mjs",
Expand Down Expand Up @@ -38,6 +38,7 @@
"license": "Apache-2.0",
"dependencies": {
"@solana/web3.js": "2.0.0",
"@solana-program/token-2022": "0.3.4",
"@types/bn.js": "^5.1.5",
"bn.js": "^5.2.1",
"js-sha3": "^0.9.3"
Expand Down
1 change: 1 addition & 0 deletions common-helpers/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { address } from '@solana/web3.js';

export const DEFAULT_ADDRESS = address('11111111111111111111111111111111');
export const MPL_TOKEN_METADATA_PROGRAM_ID = address(
'metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s'
);
9 changes: 5 additions & 4 deletions common-helpers/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './compression';
export * from './DAS';
export * from './metadata';
export * from './transactions';
export * from "./compression";
export * from "./DAS";
export * from "./metadata";
export * from "./t22";
export * from "./transactions";
1 change: 1 addition & 0 deletions common-helpers/src/t22/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./transferHook";
Loading
Loading