@streamflow/staking 10.0.1 → 10.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +4 -4
package/dist/cjs/index.d.cts
CHANGED
|
@@ -11,7 +11,7 @@ import { TransferFeeConfig } from '@solana/spl-token';
|
|
|
11
11
|
|
|
12
12
|
declare const FEE_PRECISION_FACTOR = 10000;
|
|
13
13
|
declare const FEE_PRECISION_FACTOR_BN: BN;
|
|
14
|
-
declare const DEFAULT_FEE =
|
|
14
|
+
declare const DEFAULT_FEE = 0;
|
|
15
15
|
declare const DEFAULT_FEE_BN: BN;
|
|
16
16
|
declare const SCALE_PRECISION_FACTOR = 1000000000;
|
|
17
17
|
declare const SCALE_PRECISION_FACTOR_BN: BN;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { TransferFeeConfig } from '@solana/spl-token';
|
|
|
11
11
|
|
|
12
12
|
declare const FEE_PRECISION_FACTOR = 10000;
|
|
13
13
|
declare const FEE_PRECISION_FACTOR_BN: BN;
|
|
14
|
-
declare const DEFAULT_FEE =
|
|
14
|
+
declare const DEFAULT_FEE = 0;
|
|
15
15
|
declare const DEFAULT_FEE_BN: BN;
|
|
16
16
|
declare const SCALE_PRECISION_FACTOR = 1000000000;
|
|
17
17
|
declare const SCALE_PRECISION_FACTOR_BN: BN;
|
package/dist/esm/index.js
CHANGED
|
@@ -56,7 +56,7 @@ __export(constants_exports, {
|
|
|
56
56
|
});
|
|
57
57
|
var FEE_PRECISION_FACTOR = 1e4;
|
|
58
58
|
var FEE_PRECISION_FACTOR_BN = new BN4(FEE_PRECISION_FACTOR);
|
|
59
|
-
var DEFAULT_FEE =
|
|
59
|
+
var DEFAULT_FEE = 0;
|
|
60
60
|
var DEFAULT_FEE_BN = new BN4(DEFAULT_FEE);
|
|
61
61
|
var SCALE_PRECISION_FACTOR = 1e9;
|
|
62
62
|
var SCALE_PRECISION_FACTOR_BN = new BN4(SCALE_PRECISION_FACTOR);
|