@suilend/sui-fe-next 3.0.2 → 3.0.4
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/lib/toasts.jsx +18 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/lib/toasts.jsx
CHANGED
|
@@ -43,6 +43,24 @@ export var showErrorToast = function (title, err, data, isTxn) {
|
|
|
43
43
|
// RPC errors
|
|
44
44
|
if (description.toLowerCase().includes("Invalid u256 value".toLowerCase()))
|
|
45
45
|
return;
|
|
46
|
+
var RPC_ERROR_PATTERNS = [
|
|
47
|
+
"failed to fetch",
|
|
48
|
+
"networkerror",
|
|
49
|
+
"network request failed",
|
|
50
|
+
"net::err_failed",
|
|
51
|
+
"net::err_connection",
|
|
52
|
+
"cors",
|
|
53
|
+
"load failed",
|
|
54
|
+
"econnrefused",
|
|
55
|
+
"enotfound",
|
|
56
|
+
"etimedout",
|
|
57
|
+
"err_network",
|
|
58
|
+
];
|
|
59
|
+
if (RPC_ERROR_PATTERNS.some(function (pattern) {
|
|
60
|
+
return description.toLowerCase().includes(pattern);
|
|
61
|
+
})) {
|
|
62
|
+
description = "Try switching RPC provider in Settings";
|
|
63
|
+
}
|
|
46
64
|
// Insufficient SUI balance to pay for gas
|
|
47
65
|
if (description.toLowerCase().includes("Balance of gas object".toLowerCase())) {
|
|
48
66
|
var match = description.match(/Balance of gas object (\d+) is lower than the needed amount: (\d+)/);
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@suilend/sui-fe-next","version":"3.0.
|
|
1
|
+
{"name":"@suilend/sui-fe-next","version":"3.0.4","private":false,"description":"A collection of TypeScript frontend components and hooks","author":"Suilend","license":"MIT","main":"./index.js","exports":{".":"./index.js","./contexts/WalletContext":"./contexts/WalletContext.jsx","./contexts/SettingsContext":"./contexts/SettingsContext.jsx","./contexts":"./contexts/index.js","./fetchers":"./fetchers/index.js","./fetchers/useFetchBalances":"./fetchers/useFetchBalances.js","./hooks/useRefreshOnBalancesChange":"./hooks/useRefreshOnBalancesChange.js","./hooks/useLedgerHashDialog":"./hooks/useLedgerHashDialog.js","./hooks/useIsAndroid":"./hooks/useIsAndroid.jsx","./hooks/useCoinMetadataMap":"./hooks/useCoinMetadataMap.js","./hooks":"./hooks/index.js","./hooks/useIsTouchscreen":"./hooks/useIsTouchscreen.jsx","./hooks/useIsiOS":"./hooks/useIsiOS.jsx","./hooks/keypair":"./hooks/keypair.js","./lib/track":"./lib/track.js","./lib":"./lib/index.js","./lib/router":"./lib/router.js","./lib/toasts":"./lib/toasts.jsx","./lib/connector":"./lib/connector.js"},"types":"./index.js","scripts":{"build":"rm -rf ./dist && bun tsc","eslint":"eslint --fix src/","prettier":"prettier --write src/","lint":"bun eslint && bun prettier && bun tsc --noEmit","release":"bun run build && bun ./release.js && cd ./dist && npm publish --access public"},"repository":{"type":"git","url":"git+https://github.com/suilend/sui-fe.git"},"bugs":{"url":"https://github.com/suilend/sui-fe/issues"},"dependencies":{"@reown/appkit":"^1.8.10","@reown/appkit-common":"^1.8.10","@reown/appkit-universal-connector":"^1.8.10","@tanstack/react-query":"^5.60.2","@wallet-standard/app":"^1.1.0","@walletconnect/universal-provider":"2.21.1","bignumber.js":"^9.1.2","launchdarkly-react-client-sdk":"^3.6.0","lodash":"^4.17.21","mixpanel-browser":"^2.72.0","next":"^15.0.3","react":"18.3.1","react-dom":"18.3.1","react-responsive":"^10.0.0","sonner":"1.4.41","swr":"^2.2.5","tailwind-merge":"^2.5.4","usehooks-ts":"^3.1.1"},"devDependencies":{"@tsconfig/next":"^2.0.3","@types/lodash":"^4.17.13","@types/node":"^22.9.0","@types/react":"^18.3.12","@types/react-dom":"^18.3.1","@typescript-eslint/eslint-plugin":"^8.14.0","@typescript-eslint/parser":"^8.14.0","eslint":"^9.14.0","eslint-config-next":"^15.0.3","eslint-config-prettier":"^9.1.0","eslint-plugin-import":"^2.31.0","eslint-plugin-prettier":"^5.2.1","prettier":"^3.3.3","ts-node":"^10.9.2","typescript":"^5.6.3"},"peerDependencies":{"@mysten/dapp-kit-core":"1.3.0","@mysten/dapp-kit-react":"2.0.1","@mysten/sui":"2.15.0","@mysten/wallet-standard":"0.20.0","@suilend/sui-fe":"3.0.2"}}
|