diff --git a/lerna.json b/lerna.json index 8b41081..9f732b3 100644 --- a/lerna.json +++ b/lerna.json @@ -2,6 +2,6 @@ "packages": [ "packages/*" ], - "version": "7.3.2", + "version": "7.3.3", "$schema": "node_modules/lerna/schemas/lerna-schema.json" } diff --git a/packages/common/package.json b/packages/common/package.json index 1699b17..f8bdf73 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@streamflow/common", - "version": "7.3.2", + "version": "7.3.3", "description": "Common utilities and types used by streamflow packages.", "homepage": "https://github.com/streamflow-finance/js-sdk/", "main": "./dist/esm/index.js", diff --git a/packages/distributor/package.json b/packages/distributor/package.json index 6f82378..04435d2 100644 --- a/packages/distributor/package.json +++ b/packages/distributor/package.json @@ -1,6 +1,6 @@ { "name": "@streamflow/distributor", - "version": "7.3.2", + "version": "7.3.3", "description": "JavaScript SDK to interact with Streamflow Airdrop protocol.", "homepage": "https://github.com/streamflow-finance/js-sdk/", "main": "dist/esm/index.js", diff --git a/packages/distributor/solana/generated/instructions/newDistributor.ts b/packages/distributor/solana/generated/instructions/newDistributor.ts index 4858d34..8a651a9 100644 --- a/packages/distributor/solana/generated/instructions/newDistributor.ts +++ b/packages/distributor/solana/generated/instructions/newDistributor.ts @@ -48,10 +48,12 @@ export const layout = borsh.struct([ borsh.u64("startVestingTs"), borsh.u64("endVestingTs"), borsh.u64("clawbackStartTs"), - borsh.bool("claimsClosable"), + borsh.bool("claimsClosableByAdmin"), borsh.option(borsh.bool(), "canUpdateDuration"), borsh.option(borsh.u64(), "totalAmountUnlocked"), borsh.option(borsh.u64(), "totalAmountLocked"), + borsh.option(borsh.bool(), "claimsClosableByClaimant"), + borsh.option(borsh.u16(), "claimsLimit"), ]); /** @@ -105,10 +107,12 @@ export function newDistributor( startVestingTs: args.startVestingTs, endVestingTs: args.endVestingTs, clawbackStartTs: args.clawbackStartTs, - claimsClosable: args.claimsClosable, + claimsClosableByAdmin: args.claimsClosable, canUpdateDuration: null, totalAmountUnlocked: null, totalAmountLocked: null, + claimsClosableByClaimant: null, + claimsLimit: null, }, buffer, ); diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 4aa1538..ea7804a 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@streamflow/eslint-config", - "version": "7.3.2", + "version": "7.3.3", "license": "ISC", "main": "index.js", "files": [ diff --git a/packages/launchpad/package.json b/packages/launchpad/package.json index bb2d2c6..81c0558 100644 --- a/packages/launchpad/package.json +++ b/packages/launchpad/package.json @@ -1,6 +1,6 @@ { "name": "@streamflow/launchpad", - "version": "7.3.2", + "version": "7.3.3", "description": "JavaScript SDK to interact with Streamflow Launchpad protocol.", "homepage": "https://github.com/streamflow-finance/js-sdk/", "main": "dist/esm/index.js", diff --git a/packages/staking/package.json b/packages/staking/package.json index 9449c88..e4696c5 100644 --- a/packages/staking/package.json +++ b/packages/staking/package.json @@ -1,6 +1,6 @@ { "name": "@streamflow/staking", - "version": "7.3.2", + "version": "7.3.3", "description": "JavaScript SDK to interact with Streamflow Staking protocol.", "homepage": "https://github.com/streamflow-finance/js-sdk/", "main": "dist/esm/index.js", diff --git a/packages/stream/package.json b/packages/stream/package.json index 7cc8e02..6b0e7c4 100644 --- a/packages/stream/package.json +++ b/packages/stream/package.json @@ -1,6 +1,6 @@ { "name": "@streamflow/stream", - "version": "7.3.2", + "version": "7.3.3", "description": "JavaScript SDK to interact with Streamflow protocol.", "homepage": "https://github.com/streamflow-finance/js-sdk/", "main": "./dist/esm/index.js",