Skip to content

Commit

Permalink
chore(release): 3.3.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Sep 11, 2024
1 parent f735d3f commit f6b7f81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lifi/sdk",
"version": "3.3.0-alpha.0",
"version": "3.3.0-alpha.1",
"description": "LI.FI Any-to-Any Cross-Chain-Swap SDK",
"keywords": [
"bridge",
Expand Down
2 changes: 1 addition & 1 deletion src/core/UTXO/parseUTXOErrors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const parseUTXOErrors = async (
}

const handleSpecificErrors = (e: any) => {
if (e.code === 4001 || e.code === -32000) {
if (e.code === 4001 || e.code === -32000 || e.cause?.includes?.('rejected')) {
return new TransactionError(LiFiErrorCode.SignatureRejected, e.message, e)
}
if (e.code === -5 || e.code === -32700 || e.code === -32064) {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const name = '@lifi/sdk'
export const version = '3.3.0-alpha.0'
export const version = '3.3.0-alpha.1'

0 comments on commit f6b7f81

Please sign in to comment.