@totemsdk/core 1.0.4 → 1.0.5
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/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
- package/src/index.ts +14 -0
package/dist/index.d.ts
CHANGED
|
@@ -28,3 +28,4 @@ export declare const MINIMA_CONSTANTS: {
|
|
|
28
28
|
readonly ADDRESS_PREFIX: "Mx";
|
|
29
29
|
readonly NETWORK_ID: 1;
|
|
30
30
|
};
|
|
31
|
+
export { writeMiniNumber, writeMiniData, writeMiniByte, writeMMREntryNumber, concat, hexToBytes, bytesToHex, bigIntToByteArray, writeMiniString, type Bytes, } from './Streamable.js';
|
package/dist/index.js
CHANGED
|
@@ -51,3 +51,5 @@ export const MINIMA_CONSTANTS = {
|
|
|
51
51
|
ADDRESS_PREFIX: 'Mx',
|
|
52
52
|
NETWORK_ID: 1
|
|
53
53
|
};
|
|
54
|
+
// Streamable primitives (low-level serialization building blocks)
|
|
55
|
+
export { writeMiniNumber, writeMiniData, writeMiniByte, writeMMREntryNumber, concat, hexToBytes, bytesToHex, bigIntToByteArray, writeMiniString, } from './Streamable.js';
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -204,3 +204,17 @@ export const MINIMA_CONSTANTS = {
|
|
|
204
204
|
ADDRESS_PREFIX: 'Mx',
|
|
205
205
|
NETWORK_ID: 1
|
|
206
206
|
} as const;
|
|
207
|
+
|
|
208
|
+
// Streamable primitives (low-level serialization building blocks)
|
|
209
|
+
export {
|
|
210
|
+
writeMiniNumber,
|
|
211
|
+
writeMiniData,
|
|
212
|
+
writeMiniByte,
|
|
213
|
+
writeMMREntryNumber,
|
|
214
|
+
concat,
|
|
215
|
+
hexToBytes,
|
|
216
|
+
bytesToHex,
|
|
217
|
+
bigIntToByteArray,
|
|
218
|
+
writeMiniString,
|
|
219
|
+
type Bytes,
|
|
220
|
+
} from './Streamable.js';
|