@solana/codecs-strings 6.10.0-canary-20260514084615 → 6.10.0
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.browser.mjs +1 -1
- package/dist/index.native.mjs +1 -1
- package/dist/index.node.mjs +1 -1
- package/package.json +4 -4
package/dist/index.browser.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SolanaError, SOLANA_ERROR__CODECS__INVALID_STRING_FOR_BASE } from '@solana/errors';
|
|
2
|
-
import {
|
|
2
|
+
import { createEncoder, createDecoder, combineCodec } from '@solana/codecs-core';
|
|
3
3
|
|
|
4
4
|
// src/assertions.ts
|
|
5
5
|
function assertValidBaseString(alphabet4, testValue, givenValue = testValue) {
|
package/dist/index.native.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SolanaError, SOLANA_ERROR__CODECS__INVALID_STRING_FOR_BASE } from '@solana/errors';
|
|
2
|
-
import {
|
|
2
|
+
import { createEncoder, createDecoder, combineCodec, transformEncoder, transformDecoder } from '@solana/codecs-core';
|
|
3
3
|
|
|
4
4
|
// src/assertions.ts
|
|
5
5
|
function assertValidBaseString(alphabet4, testValue, givenValue = testValue) {
|
package/dist/index.node.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SolanaError, SOLANA_ERROR__CODECS__INVALID_STRING_FOR_BASE } from '@solana/errors';
|
|
2
|
-
import {
|
|
2
|
+
import { createEncoder, createDecoder, combineCodec, toArrayBuffer } from '@solana/codecs-core';
|
|
3
3
|
|
|
4
4
|
// src/assertions.ts
|
|
5
5
|
function assertValidBaseString(alphabet4, testValue, givenValue = testValue) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/codecs-strings",
|
|
3
|
-
"version": "6.10.0
|
|
3
|
+
"version": "6.10.0",
|
|
4
4
|
"description": "Codecs for strings of different sizes and encodings",
|
|
5
5
|
"homepage": "https://www.solanakit.com/api#solanacodecs-strings",
|
|
6
6
|
"exports": {
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"maintained node versions"
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@solana/
|
|
60
|
-
"@solana/codecs-
|
|
61
|
-
"@solana/
|
|
59
|
+
"@solana/errors": "6.10.0",
|
|
60
|
+
"@solana/codecs-core": "6.10.0",
|
|
61
|
+
"@solana/codecs-numbers": "6.10.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"fastestsmallesttextencoderdecoder": "^1.0.22",
|