You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to authorizeEntry I'm getting an error:
356 | var expectedVersion = versionBytes[versionByteName];
357 |if (expectedVersion === undefined) {
358 | throw new Error("".concat(versionByteName, " is not a valid version byte name. ") + "Expected one of ".concat(Object.keys(versionBytes).join(', ')));
359 | }
360 |if (versionByte !== expectedVersion) {
361 | throw new Error("invalid version byte. expected ".concat(expectedVersion, ", got ").concat(versionByte));
^
error: invalid version byte. expected 48, got 16
at decodeCheck (/Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/strkey.js:361:11)
at decodeEd25519PublicKey (/Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/strkey.js:77:14)
at fromPublicKey (/Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/keypair.js:286:19)
at _callee$ (/Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/auth.js:199:15)
at tryCatch (/Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/auth.js:17:1060)
at /Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/auth.js:17:3008
at /Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/auth.js:17:1694
at asyncGeneratorStep (/Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/auth.js:18:66)
at _next (/Users/tylervanderhoeven/Desktop/check-auth-puzzle/bun_tests/node_modules/@stellar/stellar-base/lib/auth.js:19:163)
Bun v1.1.8 (macOS arm64)
Describe the bug
When trying to
authorizeEntry
I'm getting an error:What version are you on?
"@stellar/stellar-sdk": "^12.2.0",
Expected behavior
The auth entry should get signed
Additional context
My code
The text was updated successfully, but these errors were encountered: