Skip to content

Commit b336169

Browse files
authored
Merge pull request #80 from invariant-labs/export-missing-consts
add export of missing consts
2 parents 4342d1a + 2d6c8e2 commit b336169

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
lines changed
-5 Bytes
Binary file not shown.
115 Bytes
Binary file not shown.

sdk/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@invariant-labs/vara-sdk",
3-
"version": "0.1.15",
3+
"version": "0.1.17",
44
"collaborators": [
55
"Invariant Labs"
66
],
@@ -56,7 +56,7 @@
5656
},
5757
"dependencies": {
5858
"@gear-js/api": "0.38.1",
59-
"@invariant-labs/vara-sdk-wasm": "0.1.1",
59+
"@invariant-labs/vara-sdk-wasm": "0.1.16",
6060
"@polkadot/api": "11.0.2",
6161
"@polkadot/types": "11.0.2",
6262
"sails-js": "0.1.4"

sdk/src/index.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,22 @@ export {
1313
TESTNET_AZERO_ADDRESS,
1414
TESTNET_SOL_ADDRESS,
1515
TESTNET_INVARIANT_ADDRESS,
16+
FEE_GROWTH_DENOMINATOR,
17+
FIXED_POINT_DENOMINATOR,
18+
LIQUIDITY_DENOMINATOR,
19+
PERCENTAGE_DENOMINATOR,
20+
PRICE_DENOMINATOR,
21+
SECONDS_PER_LIQUIDITY_DENOMINATOR,
22+
SQRT_PRICE_DENOMINATOR,
23+
TOKEN_AMOUNT_DENOMINATOR,
24+
FEE_GROWTH_SCALE,
25+
FIXED_POINT_SCALE,
26+
LIQUIDITY_SCALE,
1627
PERCENTAGE_SCALE,
17-
SQRT_PRICE_SCALE
28+
PRICE_SCALE,
29+
SECONDS_PER_LIQUIDITY_SCALE,
30+
SQRT_PRICE_SCALE,
31+
TOKEN_AMOUNT_SCALE
1832
} from './consts.js'
1933
export {
2034
InvariantEvent,

0 commit comments

Comments
 (0)