@hawksightco/hawk-sdk 1.3.16 → 1.3.17
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/src/meteora.js +4 -4
- package/package.json +1 -1
package/dist/src/meteora.js
CHANGED
|
@@ -970,10 +970,10 @@ class MeteoraFunctions {
|
|
|
970
970
|
// const constants = result.constants;
|
|
971
971
|
// const constants = this.constants(program);
|
|
972
972
|
const constants = {
|
|
973
|
-
MAX_BIN_ARRAY_SIZE: 70,
|
|
974
|
-
MAX_BIN_PER_POSITION: 70,
|
|
975
|
-
BIN_ARRAY_BITMAP_SIZE: 512,
|
|
976
|
-
EXTENSION_BINARRAY_BITMAP_SIZE: 12,
|
|
973
|
+
MAX_BIN_ARRAY_SIZE: new bn_js_1.default(70),
|
|
974
|
+
MAX_BIN_PER_POSITION: new bn_js_1.default(70),
|
|
975
|
+
BIN_ARRAY_BITMAP_SIZE: new bn_js_1.default(512),
|
|
976
|
+
EXTENSION_BINARRAY_BITMAP_SIZE: new bn_js_1.default(12),
|
|
977
977
|
};
|
|
978
978
|
yield this.getAllUserPosition(connection, userPda);
|
|
979
979
|
const ixs = [];
|