Skip to content
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
1 change: 0 additions & 1 deletion examples/js-cjs-bundled/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const { SolanaStakingClient } = require("@streamflow/staking");
const { SolanaLaunchpadClient } = require("@streamflow/launchpad");
const { ICluster } = require("@streamflow/common");
// Other entrypoints to test that the package.json is correct
const { MerkleDistributor } = require("@streamflow/distributor/solana");
const { prepareTransaction } = require("@streamflow/common");

// Import IDL files to test import resolving
Expand Down
1 change: 0 additions & 1 deletion examples/js-esm-unbundled/src/start-node18.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { StreamflowDistributorSolana } from "@streamflow/distributor";
import { SolanaStakingClient } from "@streamflow/staking";
import { SolanaLaunchpadClient } from "@streamflow/launchpad";
// Other entrypoints to test that the package.json is correct
import { MerkleDistributor } from "@streamflow/distributor/solana";
import {prepareTransaction} from "@streamflow/common";

// Import IDL files to test import resolving
Expand Down
1 change: 0 additions & 1 deletion examples/js-esm-unbundled/src/start-node20.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { StreamflowDistributorSolana } from "@streamflow/distributor";
import { SolanaStakingClient } from "@streamflow/staking";
import { SolanaLaunchpadClient } from "@streamflow/launchpad";
// Other entrypoints to test that the package.json is correct
import { MerkleDistributor } from "@streamflow/distributor/solana";
import {prepareTransaction} from "@streamflow/common";

// Import IDL files to test import resolving
Expand Down
2 changes: 1 addition & 1 deletion examples/ts-cjs-bundled/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SolanaStakingClient } from "@streamflow/staking";
import { StreamflowDistributorSolana } from "@streamflow/distributor";
import { SolanaLaunchpadClient } from "@streamflow/launchpad";
// Other entrypoints to test that the package.json is correct
import { MerkleDistributor } from "@streamflow/distributor/solana";
import type { MerkleDistributor } from "@streamflow/distributor/solana";
import {prepareTransaction} from "@streamflow/common";

// Import IDL files to test import resolving
Expand Down
2 changes: 1 addition & 1 deletion examples/ts-cjs-unbundled/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { StreamflowDistributorSolana } from "@streamflow/distributor";
import { SolanaStakingClient } from "@streamflow/staking";
import { SolanaLaunchpadClient } from "@streamflow/launchpad";
// Other entrypoints to test that the package.json is correct
import { MerkleDistributor } from "@streamflow/distributor/solana";
import type { MerkleDistributor } from "@streamflow/distributor/solana";
import {prepareTransaction} from "@streamflow/common";

// Import IDL files to test import resolving
Expand Down
2 changes: 1 addition & 1 deletion examples/ts-esm-bundled/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { SolanaStakingClient } from "@streamflow/staking";
// Import launchpad package
import { SolanaLaunchpadClient } from "@streamflow/launchpad";
// Other entrypoints to test that the package.json is correct
import { MerkleDistributor } from "@streamflow/distributor/solana";
import type { MerkleDistributor } from "@streamflow/distributor/solana";
import {prepareTransaction} from "@streamflow/common";

// Import IDL files to test import resolving
Expand Down
2 changes: 1 addition & 1 deletion examples/ts-esm-unbundled/src/start-node18.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { StreamflowDistributorSolana } from "@streamflow/distributor";
import { SolanaStakingClient } from "@streamflow/staking";
import { SolanaLaunchpadClient } from "@streamflow/launchpad";
// Other entrypoints to test that the package.json is correct
import { MerkleDistributor } from "@streamflow/distributor/solana";
import type { MerkleDistributor } from "@streamflow/distributor/solana";
import {prepareTransaction} from "@streamflow/common";

// Import IDL files to test import resolving
Expand Down
2 changes: 1 addition & 1 deletion examples/ts-esm-unbundled/src/start-node20.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { StreamflowDistributorSolana } from "@streamflow/distributor";
import { SolanaStakingClient } from "@streamflow/staking";
import { SolanaLaunchpadClient } from "@streamflow/launchpad";
// Other entrypoints to test that the package.json is correct
import { MerkleDistributor, ClaimStatus } from "@streamflow/distributor/solana";
import type { MerkleDistributor, ClaimStatus } from "@streamflow/distributor/solana";
import {prepareTransaction} from "@streamflow/common";

// Import IDL files to test import resolving
Expand Down
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"packages": ["packages/*"],
"version": "10.0.3",
"packages": [
"packages/*"
],
"version": "11.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lfg 🔥

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this number is going up faster than the scale in my room during a week at an all inclusive in Turkey

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🌚

"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"command": {
"run": {
Expand Down
5 changes: 3 additions & 2 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@streamflow/common",
"version": "10.0.3",
"version": "11.0.0",
"description": "Common utilities and types used by streamflow packages.",
"homepage": "https://github.com/streamflow-finance/js-sdk/",
"type": "module",
Expand Down Expand Up @@ -42,7 +42,8 @@
"typescript": "^5.6.3"
},
"dependencies": {
"@coral-xyz/borsh": "0.31.1",
"@coral-xyz/anchor": "^0.32.1",
"@coral-xyz/borsh": "0.32.1",
"@solana/buffer-layout": "4.0.1",
"@solana/spl-token": "0.4.9",
"@solana/wallet-adapter-base": "0.9.19",
Expand Down
Loading
Loading