Skip to content

Commit 90f5dd2

Browse files
authored
Support new params (without exposure for now) (#251)
* support new devnet parameters (backwards compatible) * bump
1 parent f124c06 commit 90f5dd2

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
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.3.2",
5+
"version": "7.3.3",
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.3.2",
3+
"version": "7.3.3",
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.3.2",
3+
"version": "7.3.3",
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/distributor/solana/generated/instructions/newDistributor.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,12 @@ export const layout = borsh.struct([
4848
borsh.u64("startVestingTs"),
4949
borsh.u64("endVestingTs"),
5050
borsh.u64("clawbackStartTs"),
51-
borsh.bool("claimsClosable"),
51+
borsh.bool("claimsClosableByAdmin"),
5252
borsh.option(borsh.bool(), "canUpdateDuration"),
5353
borsh.option(borsh.u64(), "totalAmountUnlocked"),
5454
borsh.option(borsh.u64(), "totalAmountLocked"),
55+
borsh.option(borsh.bool(), "claimsClosableByClaimant"),
56+
borsh.option(borsh.u16(), "claimsLimit"),
5557
]);
5658

5759
/**
@@ -105,10 +107,12 @@ export function newDistributor(
105107
startVestingTs: args.startVestingTs,
106108
endVestingTs: args.endVestingTs,
107109
clawbackStartTs: args.clawbackStartTs,
108-
claimsClosable: args.claimsClosable,
110+
claimsClosableByAdmin: args.claimsClosable,
109111
canUpdateDuration: null,
110112
totalAmountUnlocked: null,
111113
totalAmountLocked: null,
114+
claimsClosableByClaimant: null,
115+
claimsLimit: null,
112116
},
113117
buffer,
114118
);

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.3.2",
3+
"version": "7.3.3",
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.3.2",
3+
"version": "7.3.3",
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/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.3.2",
3+
"version": "7.3.3",
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/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.3.2",
3+
"version": "7.3.3",
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)