Skip to content

Commit c61ebac

Browse files
authored
export anchor programs (#259)
1 parent e22bbb3 commit c61ebac

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "7.4.3",
5+
"version": "7.4.4",
66
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
77
}

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@streamflow/common",
3-
"version": "7.4.3",
3+
"version": "7.4.4",
44
"description": "Common utilities and types used by streamflow packages.",
55
"homepage": "https://github.com/streamflow-finance/js-sdk/",
66
"main": "./dist/esm/index.js",

packages/distributor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@streamflow/distributor",
3-
"version": "7.4.3",
3+
"version": "7.4.4",
44
"description": "JavaScript SDK to interact with Streamflow Airdrop protocol.",
55
"homepage": "https://github.com/streamflow-finance/js-sdk/",
66
"main": "dist/esm/index.js",

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@streamflow/eslint-config",
3-
"version": "7.4.3",
3+
"version": "7.4.4",
44
"license": "ISC",
55
"main": "index.js",
66
"files": [

packages/launchpad/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@streamflow/launchpad",
3-
"version": "7.4.3",
3+
"version": "7.4.4",
44
"description": "JavaScript SDK to interact with Streamflow Launchpad protocol.",
55
"homepage": "https://github.com/streamflow-finance/js-sdk/",
66
"main": "dist/esm/index.js",

packages/launchpad/solana/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ export class SolanaLaunchpadClient {
7777

7878
private readonly sendThrottler: PQueue;
7979

80-
private readonly program: Program<StreamflowLaunchpad>;
81-
8280
private readonly dynamicVestingId: PublicKey;
8381

8482
private readonly vestingId: PublicKey;
8583

84+
public readonly program: Program<StreamflowLaunchpad>;
85+
8686
constructor({
8787
clusterUrl,
8888
cluster = ICluster.Mainnet,

packages/staking/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@streamflow/staking",
3-
"version": "7.4.3",
3+
"version": "7.4.4",
44
"description": "JavaScript SDK to interact with Streamflow Staking protocol.",
55
"homepage": "https://github.com/streamflow-finance/js-sdk/",
66
"main": "dist/esm/index.js",

packages/staking/solana/client.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ interface IInitOptions {
8989
export class SolanaStakingClient {
9090
connection: Connection;
9191

92-
private commitment: Commitment | ConnectionConfig;
92+
private readonly commitment: Commitment | ConnectionConfig;
9393

94-
private sendThrottler: PQueue;
94+
private readonly sendThrottler: PQueue;
9595

96-
private programs: Programs;
96+
public readonly programs: Programs;
9797

9898
constructor({
9999
clusterUrl,

packages/stream/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@streamflow/stream",
3-
"version": "7.4.3",
3+
"version": "7.4.4",
44
"description": "JavaScript SDK to interact with Streamflow protocol.",
55
"homepage": "https://github.com/streamflow-finance/js-sdk/",
66
"main": "./dist/esm/index.js",

0 commit comments

Comments
 (0)