Skip to content

Commit

Permalink
Fee updates (#110)
Browse files Browse the repository at this point in the history
* Changed base fee constant

* Updated SUI Mainnet ID

* Bump versions
  • Loading branch information
LukaStreamflow authored Nov 28, 2023
1 parent c226049 commit 6497aa2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"packages": [
"packages/*"
],
"version": "5.6.5",
"version": "5.6.6",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
2 changes: 1 addition & 1 deletion packages/stream/common/constants.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const BASE_FEE = 1002500; // Buffer to include usual fees when calculating stream amount
export const BASE_FEE = 1009900; // Buffer to include usual fees when calculating stream amount
2 changes: 1 addition & 1 deletion packages/stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@streamflow/stream",
"version": "5.6.5",
"version": "5.6.6",
"description": "JavaScript SDK to interact with Streamflow protocol.",
"main": "dist/index.js",
"homepage": "https://github.com/streamflow-finance/js-sdk/",
Expand Down
2 changes: 1 addition & 1 deletion packages/stream/sui/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ContractErrorCode, ICluster } from "../common/types";

// TODO: remove Devnet and Local addresses as they are not deployed, they are just a copy Testnet values
export const SUI_PROGRAM_IDS: Record<ICluster, string> = {
[ICluster.Mainnet]: "0xa283fd6b45f1103176e7ae27e870c89df7c8783b15345e2b13faa81ec25c4fa6",
[ICluster.Mainnet]: "0x527b334ab7216f01a5f0521ffb3dfff0cc4df06b65b2cd0d0864e05b13cf911a",
[ICluster.Devnet]: "0xf1916c119a6c917d4b36f96ffc0443930745789f3126a716e05a62223c48993a",
[ICluster.Testnet]: "0xf1916c119a6c917d4b36f96ffc0443930745789f3126a716e05a62223c48993a",
[ICluster.Local]: "0xf1916c119a6c917d4b36f96ffc0443930745789f3126a716e05a62223c48993a",
Expand Down

0 comments on commit 6497aa2

Please sign in to comment.