Comparing version 0.0.0-20240814T032709 to 0.0.0-20240814T033323
@@ -1,3 +0,3 @@ | ||
export { type FromRlpErrorType, type FromRlpReturnType, type RlpToBytesErrorType, type RlpToHexErrorType, fromRlp, fromRlp as to, rlpToBytes, rlpToBytes as toBytes, rlpToHex, rlpToHex as toHex, } from './internal/rlp/fromRlp.js'; | ||
export { type RecursiveArray, type BytesToRlpErrorType, type HexToRlpErrorType, type ToRlpErrorType, type ToRlpReturnType, toRlp, toRlp as from, bytesToRlp, bytesToRlp as fromBytes, hexToRlp, hexToRlp as fromHex, } from './internal/rlp/toRlp.js'; | ||
export { type FromRlpErrorType, type FromRlpReturnType, type RlpToBytesErrorType, type RlpToHexErrorType, fromRlp, fromRlp as decode, rlpToBytes, rlpToBytes as toBytes, rlpToHex, rlpToHex as toHex, } from './internal/rlp/fromRlp.js'; | ||
export { type RecursiveArray, type BytesToRlpErrorType, type HexToRlpErrorType, type ToRlpErrorType, type ToRlpReturnType, toRlp, toRlp as encode, bytesToRlp, bytesToRlp as fromBytes, hexToRlp, hexToRlp as fromHex, } from './internal/rlp/toRlp.js'; | ||
//# sourceMappingURL=Rlp.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.fromHex = exports.hexToRlp = exports.fromBytes = exports.bytesToRlp = exports.from = exports.toRlp = exports.toHex = exports.rlpToHex = exports.toBytes = exports.rlpToBytes = exports.to = exports.fromRlp = void 0; | ||
exports.fromHex = exports.hexToRlp = exports.fromBytes = exports.bytesToRlp = exports.encode = exports.toRlp = exports.toHex = exports.rlpToHex = exports.toBytes = exports.rlpToBytes = exports.decode = exports.fromRlp = void 0; | ||
var fromRlp_js_1 = require("./internal/rlp/fromRlp.js"); | ||
Object.defineProperty(exports, "fromRlp", { enumerable: true, get: function () { return fromRlp_js_1.fromRlp; } }); | ||
Object.defineProperty(exports, "to", { enumerable: true, get: function () { return fromRlp_js_1.fromRlp; } }); | ||
Object.defineProperty(exports, "decode", { enumerable: true, get: function () { return fromRlp_js_1.fromRlp; } }); | ||
Object.defineProperty(exports, "rlpToBytes", { enumerable: true, get: function () { return fromRlp_js_1.rlpToBytes; } }); | ||
@@ -13,3 +13,3 @@ Object.defineProperty(exports, "toBytes", { enumerable: true, get: function () { return fromRlp_js_1.rlpToBytes; } }); | ||
Object.defineProperty(exports, "toRlp", { enumerable: true, get: function () { return toRlp_js_1.toRlp; } }); | ||
Object.defineProperty(exports, "from", { enumerable: true, get: function () { return toRlp_js_1.toRlp; } }); | ||
Object.defineProperty(exports, "encode", { enumerable: true, get: function () { return toRlp_js_1.toRlp; } }); | ||
Object.defineProperty(exports, "bytesToRlp", { enumerable: true, get: function () { return toRlp_js_1.bytesToRlp; } }); | ||
@@ -16,0 +16,0 @@ Object.defineProperty(exports, "fromBytes", { enumerable: true, get: function () { return toRlp_js_1.bytesToRlp; } }); |
@@ -1,2 +0,2 @@ | ||
export declare const version = "0.0.0-20240814T032709"; | ||
export declare const version = "0.0.0-20240814T033323"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = void 0; | ||
exports.version = '0.0.0-20240814T032709'; | ||
exports.version = '0.0.0-20240814T033323'; | ||
//# sourceMappingURL=version.js.map |
@@ -17,3 +17,3 @@ import { type HexToBytesErrorType } from '../bytes/toBytes.js'; | ||
* import { Rlp } from 'ox' | ||
* Rlp.to('0x8b68656c6c6f20776f726c64') | ||
* Rlp.decode('0x8b68656c6c6f20776f726c64') | ||
* // 0x68656c6c6f20776f726c64 | ||
@@ -20,0 +20,0 @@ */ |
@@ -11,3 +11,3 @@ import { hexToBytes } from '../bytes/toBytes.js'; | ||
* import { Rlp } from 'ox' | ||
* Rlp.to('0x8b68656c6c6f20776f726c64') | ||
* Rlp.decode('0x8b68656c6c6f20776f726c64') | ||
* // 0x68656c6c6f20776f726c64 | ||
@@ -14,0 +14,0 @@ */ |
@@ -15,3 +15,3 @@ import { type HexToBytesErrorType } from '../bytes/toBytes.js'; | ||
* import { Rlp } from 'ox' | ||
* Rlp.from('0x68656c6c6f20776f726c64') | ||
* Rlp.encode('0x68656c6c6f20776f726c64') | ||
* // 0x8b68656c6c6f20776f726c64 | ||
@@ -18,0 +18,0 @@ */ |
@@ -10,3 +10,3 @@ import { hexToBytes } from '../bytes/toBytes.js'; | ||
* import { Rlp } from 'ox' | ||
* Rlp.from('0x68656c6c6f20776f726c64') | ||
* Rlp.encode('0x68656c6c6f20776f726c64') | ||
* // 0x8b68656c6c6f20776f726c64 | ||
@@ -13,0 +13,0 @@ */ |
@@ -1,3 +0,3 @@ | ||
export { type FromRlpErrorType, type FromRlpReturnType, type RlpToBytesErrorType, type RlpToHexErrorType, fromRlp, fromRlp as to, rlpToBytes, rlpToBytes as toBytes, rlpToHex, rlpToHex as toHex, } from './internal/rlp/fromRlp.js'; | ||
export { type RecursiveArray, type BytesToRlpErrorType, type HexToRlpErrorType, type ToRlpErrorType, type ToRlpReturnType, toRlp, toRlp as from, bytesToRlp, bytesToRlp as fromBytes, hexToRlp, hexToRlp as fromHex, } from './internal/rlp/toRlp.js'; | ||
export { type FromRlpErrorType, type FromRlpReturnType, type RlpToBytesErrorType, type RlpToHexErrorType, fromRlp, fromRlp as decode, rlpToBytes, rlpToBytes as toBytes, rlpToHex, rlpToHex as toHex, } from './internal/rlp/fromRlp.js'; | ||
export { type RecursiveArray, type BytesToRlpErrorType, type HexToRlpErrorType, type ToRlpErrorType, type ToRlpReturnType, toRlp, toRlp as encode, bytesToRlp, bytesToRlp as fromBytes, hexToRlp, hexToRlp as fromHex, } from './internal/rlp/toRlp.js'; | ||
//# sourceMappingURL=Rlp.d.ts.map |
@@ -1,3 +0,3 @@ | ||
export { fromRlp, fromRlp as to, rlpToBytes, rlpToBytes as toBytes, rlpToHex, rlpToHex as toHex, } from './internal/rlp/fromRlp.js'; | ||
export { toRlp, toRlp as from, bytesToRlp, bytesToRlp as fromBytes, hexToRlp, hexToRlp as fromHex, } from './internal/rlp/toRlp.js'; | ||
export { fromRlp, fromRlp as decode, rlpToBytes, rlpToBytes as toBytes, rlpToHex, rlpToHex as toHex, } from './internal/rlp/fromRlp.js'; | ||
export { toRlp, toRlp as encode, bytesToRlp, bytesToRlp as fromBytes, hexToRlp, hexToRlp as fromHex, } from './internal/rlp/toRlp.js'; | ||
//# sourceMappingURL=Rlp.js.map |
/** @internal */ | ||
export declare const version = "0.0.0-20240814T032709"; | ||
export declare const version = "0.0.0-20240814T033323"; | ||
//# sourceMappingURL=version.d.ts.map |
/** @internal */ | ||
export const version = '0.0.0-20240814T032709'; | ||
export const version = '0.0.0-20240814T033323'; | ||
//# sourceMappingURL=version.js.map |
@@ -35,3 +35,3 @@ import { type HexToBytesErrorType, hexToBytes } from '../bytes/toBytes.js' | ||
* import { Rlp } from 'ox' | ||
* Rlp.to('0x8b68656c6c6f20776f726c64') | ||
* Rlp.decode('0x8b68656c6c6f20776f726c64') | ||
* // 0x68656c6c6f20776f726c64 | ||
@@ -38,0 +38,0 @@ */ |
@@ -36,3 +36,3 @@ import { type HexToBytesErrorType, hexToBytes } from '../bytes/toBytes.js' | ||
* import { Rlp } from 'ox' | ||
* Rlp.from('0x68656c6c6f20776f726c64') | ||
* Rlp.encode('0x68656c6c6f20776f726c64') | ||
* // 0x8b68656c6c6f20776f726c64 | ||
@@ -39,0 +39,0 @@ */ |
{ | ||
"name": "ox", | ||
"description": "Ethereum Standard Library", | ||
"version": "0.0.0-20240814T032709", | ||
"version": "0.0.0-20240814T033323", | ||
"main": "./_cjs/index.js", | ||
@@ -6,0 +6,0 @@ "module": "./_esm/index.js", |
@@ -7,3 +7,3 @@ export { | ||
fromRlp, | ||
fromRlp as to, | ||
fromRlp as decode, | ||
rlpToBytes, | ||
@@ -22,3 +22,3 @@ rlpToBytes as toBytes, | ||
toRlp, | ||
toRlp as from, | ||
toRlp as encode, | ||
bytesToRlp, | ||
@@ -25,0 +25,0 @@ bytesToRlp as fromBytes, |
/** @internal */ | ||
export const version = '0.0.0-20240814T032709' | ||
export const version = '0.0.0-20240814T033323' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
391206