@swapkit/helpers 1.0.0-rc.9 → 1.0.0-rc.91

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.
Files changed (38) hide show
  1. package/dist/index.js +2099 -0
  2. package/dist/index.js.map +29 -0
  3. package/package.json +24 -37
  4. package/src/helpers/__tests__/asset.test.ts +126 -108
  5. package/src/helpers/__tests__/memo.test.ts +52 -40
  6. package/src/helpers/__tests__/others.test.ts +42 -37
  7. package/src/helpers/__tests__/validators.test.ts +24 -0
  8. package/src/helpers/asset.ts +118 -93
  9. package/src/helpers/derivationPath.ts +52 -0
  10. package/src/helpers/liquidity.ts +50 -43
  11. package/src/helpers/memo.ts +31 -28
  12. package/src/helpers/others.ts +30 -13
  13. package/src/helpers/validators.ts +15 -6
  14. package/src/helpers/web3wallets.ts +178 -0
  15. package/src/index.ts +14 -9
  16. package/src/modules/__tests__/assetValue.test.ts +325 -116
  17. package/src/modules/__tests__/bigIntArithmetics.test.ts +30 -0
  18. package/src/modules/__tests__/swapKitNumber.test.ts +306 -183
  19. package/src/modules/assetValue.ts +216 -152
  20. package/src/modules/bigIntArithmetics.ts +214 -147
  21. package/src/modules/requestClient.ts +29 -0
  22. package/src/modules/swapKitError.ts +32 -5
  23. package/src/modules/swapKitNumber.ts +8 -1
  24. package/src/types/abis/erc20.ts +99 -0
  25. package/src/types/abis/tcEthVault.ts +496 -0
  26. package/src/types/chains.ts +220 -0
  27. package/src/types/commonTypes.ts +119 -0
  28. package/src/types/derivationPath.ts +56 -0
  29. package/src/types/index.ts +9 -0
  30. package/src/types/network.ts +43 -0
  31. package/src/types/sdk.ts +44 -0
  32. package/src/types/tokens.ts +30 -0
  33. package/src/types/wallet.ts +47 -0
  34. package/LICENSE +0 -201
  35. package/dist/index.cjs +0 -1
  36. package/dist/index.d.ts +0 -354
  37. package/dist/index.es.js +0 -1054
  38. package/src/helpers/request.ts +0 -16
@@ -1,20 +1,37 @@
1
+ import { type ErrorKeys, SwapKitError } from "../modules/swapKitError";
2
+ import type { DerivationPathArray } from "../types/derivationPath";
3
+
1
4
  // 10 rune for register, 1 rune per year
2
5
  // MINIMUM_REGISTRATION_FEE = 11
3
- export const getTHORNameCost = (year: number) => {
4
- if (year < 0) throw new Error('Invalid number of year');
5
- return 10 + year;
6
- };
6
+ export function getTHORNameCost(numberOfYears: number) {
7
+ if (numberOfYears < 0) throw new Error("Invalid number of years");
8
+ return 10 + numberOfYears;
9
+ }
7
10
 
8
- export const validateTHORName = (name: string) => {
9
- if (name.length > 30) return false;
11
+ // 10 CACAO for register
12
+ // 1.0512 CACAO per year
13
+ export function getMAYANameCost(numberOfYears: number) {
14
+ if (numberOfYears < 0) throw new Error("Invalid number of year");
15
+ // round to max 10 decimals
16
+ return Math.round((10 + numberOfYears * 1.0512) * 1e10) / 1e10;
17
+ }
10
18
 
11
- const regex = /^[a-zA-Z0-9+_-]+$/g;
19
+ export function derivationPathToString([network, chainId, account, change, index]:
20
+ | [number, number, number, number, number | undefined]
21
+ | DerivationPathArray) {
22
+ const shortPath = typeof index !== "number";
12
23
 
13
- return !!name.match(regex);
14
- };
24
+ return `m/${network}'/${chainId}'/${account}'/${change}${shortPath ? "" : `/${index}`}`;
25
+ }
15
26
 
16
- export const derivationPathToString = ([network, chainId, account, change, index]: number[]) => {
17
- const shortPath = typeof index !== 'number';
27
+ export function wrapWithThrow<T>(fn: () => T, errorKey?: ErrorKeys) {
28
+ try {
29
+ return fn();
30
+ } catch (error) {
31
+ if (errorKey) {
32
+ throw new SwapKitError(errorKey, error);
33
+ }
18
34
 
19
- return `${network}'/${chainId}'/${account}'/${change}${shortPath ? '' : `/${index}`}`;
20
- };
35
+ return console.error(error);
36
+ }
37
+ }
@@ -1,17 +1,26 @@
1
- import { Chain } from '@swapkit/types';
1
+ import { Chain } from "../types/chains";
2
2
 
3
- const supportedChains = Object.values(Chain);
3
+ // Backward compatibility
4
+ const supportedChains = [...Object.values(Chain), "TERRA"];
4
5
 
5
- export const validateIdentifier = (identifier: string = '') => {
6
+ export function validateIdentifier(identifier = "") {
6
7
  const uppercasedIdentifier = identifier.toUpperCase();
7
8
 
8
- const [chain] = uppercasedIdentifier.split('.') as [Chain, string];
9
+ const [chain] = uppercasedIdentifier.split(".") as [Chain, string];
9
10
  if (supportedChains.includes(chain)) return true;
10
11
 
11
- const [synthChain] = uppercasedIdentifier.split('/') as [Chain, string];
12
+ const [synthChain] = uppercasedIdentifier.split("/") as [Chain, string];
12
13
  if (supportedChains.includes(synthChain)) return true;
13
14
 
14
15
  throw new Error(
15
16
  `Invalid identifier: ${identifier}. Expected format: <Chain>.<Ticker> or <Chain>.<Ticker>-<ContractAddress>`,
16
17
  );
17
- };
18
+ }
19
+
20
+ export function validateTNS(name: string) {
21
+ if (name.length > 30) return false;
22
+
23
+ const regex = /^[a-zA-Z0-9+_-]+$/g;
24
+
25
+ return !!name.match(regex);
26
+ }
@@ -0,0 +1,178 @@
1
+ import type { BrowserProvider } from "ethers";
2
+ import { ChainId, WalletOption } from "../types";
3
+
4
+ export type EthereumWindowProvider = BrowserProvider & {
5
+ __XDEFI?: boolean;
6
+ isBraveWallet?: boolean;
7
+ isCoinbaseWallet?: boolean;
8
+ isMetaMask?: boolean;
9
+ isOkxWallet?: boolean;
10
+ isTrust?: boolean;
11
+ on: (event: string, callback?: () => void) => void;
12
+ overrideIsMetaMask?: boolean;
13
+ request: <T = unknown>(args: { method: string; params?: unknown[] }) => Promise<T>;
14
+ selectedProvider?: EthereumWindowProvider;
15
+ };
16
+
17
+ declare const window: {
18
+ ethereum: EthereumWindowProvider;
19
+ trustwallet: EthereumWindowProvider;
20
+ coinbaseWalletExtension: EthereumWindowProvider;
21
+ braveSolana: Todo;
22
+ } & Window;
23
+
24
+ // declare global {
25
+ // interface Window {
26
+ // ethereum: EthereumWindowProvider;
27
+ // trustwallet: EthereumWindowProvider;
28
+ // coinbaseWalletExtension: EthereumWindowProvider;
29
+ // braveSolana: Todo;
30
+ // }
31
+ // }
32
+
33
+ type NetworkParams = {
34
+ chainId: ChainId;
35
+ chainName: string;
36
+ nativeCurrency: {
37
+ name: string;
38
+ symbol: string;
39
+ decimals: number;
40
+ };
41
+ rpcUrls: string[];
42
+ blockExplorerUrls: string[];
43
+ };
44
+
45
+ type ProviderRequestParams = {
46
+ provider?: BrowserProvider;
47
+ params?: Todo;
48
+ method:
49
+ | "wallet_addEthereumChain"
50
+ | "wallet_switchEthereumChain"
51
+ | "eth_requestAccounts"
52
+ | "eth_sendTransaction"
53
+ | "eth_signTransaction";
54
+ };
55
+
56
+ const methodsToWrap = [
57
+ "approve",
58
+ "approvedAmount",
59
+ "call",
60
+ "sendTransaction",
61
+ "transfer",
62
+ "getBalance",
63
+ "isApproved",
64
+ "approvedAmount",
65
+ "EIP1193SendTransaction",
66
+ "getFeeData",
67
+ "broadcastTransaction",
68
+ "estimateCall",
69
+ "estimateGasLimit",
70
+ "estimateGasPrices",
71
+ "createContractTxObject",
72
+ ];
73
+
74
+ export const wrapMethodWithNetworkSwitch = <T extends (...args: Todo[]) => Todo>(
75
+ func: T,
76
+ provider: BrowserProvider,
77
+ chainId: ChainId,
78
+ ) =>
79
+ (async (...args: Todo[]) => {
80
+ try {
81
+ await switchEVMWalletNetwork(provider, chainId);
82
+ } catch (error) {
83
+ throw new Error(`Failed to switch network: ${error}`);
84
+ }
85
+ return func(...args);
86
+ }) as unknown as T;
87
+
88
+ const providerRequest = ({ provider, params, method }: ProviderRequestParams) => {
89
+ if (!provider?.send) throw new Error("Provider not found");
90
+
91
+ const providerParams = params ? (Array.isArray(params) ? params : [params]) : [];
92
+ return provider.send(method, providerParams);
93
+ };
94
+
95
+ export const prepareNetworkSwitch = <T extends { [key: string]: (...args: Todo[]) => Todo }>({
96
+ toolbox,
97
+ chainId,
98
+ provider = window.ethereum,
99
+ }: {
100
+ toolbox: T;
101
+ chainId: ChainId;
102
+ provider?: BrowserProvider;
103
+ }) => {
104
+ const wrappedMethods = methodsToWrap.reduce((object, methodName) => {
105
+ if (!toolbox[methodName]) return object;
106
+ const method = toolbox[methodName];
107
+
108
+ if (typeof method !== "function") return object;
109
+
110
+ return {
111
+ // biome-ignore lint/performance/noAccumulatingSpread: This is a valid use case
112
+ ...object,
113
+ [methodName]: wrapMethodWithNetworkSwitch<typeof method>(method, provider, chainId),
114
+ };
115
+ }, {});
116
+
117
+ return { ...toolbox, ...wrappedMethods };
118
+ };
119
+
120
+ export const addEVMWalletNetwork = (provider: BrowserProvider, networkParams: NetworkParams) =>
121
+ providerRequest({ provider, method: "wallet_addEthereumChain", params: [networkParams] });
122
+
123
+ export const switchEVMWalletNetwork = (provider: BrowserProvider, chainId = ChainId.EthereumHex) =>
124
+ providerRequest({ provider, method: "wallet_switchEthereumChain", params: [{ chainId }] });
125
+
126
+ export const addAccountsChangedCallback = (callback: () => void) => {
127
+ window.ethereum?.on("accountsChanged", () => callback());
128
+ // @ts-expect-error that should be implemented in xdefi and hooked up via swapkit core
129
+ window.xfi?.ethereum.on("accountsChanged", () => callback());
130
+ };
131
+
132
+ export const getETHDefaultWallet = () => {
133
+ const { isTrust, isBraveWallet, __XDEFI, overrideIsMetaMask, selectedProvider } =
134
+ window?.ethereum || {};
135
+ if (isTrust) return WalletOption.TRUSTWALLET_WEB;
136
+ if (isBraveWallet) return WalletOption.BRAVE;
137
+ if (overrideIsMetaMask && selectedProvider?.isCoinbaseWallet) return WalletOption.COINBASE_WEB;
138
+ if (__XDEFI) WalletOption.XDEFI;
139
+ return WalletOption.METAMASK;
140
+ };
141
+
142
+ export const isDetected = (walletOption: WalletOption) => {
143
+ return listWeb3EVMWallets().includes(walletOption);
144
+ };
145
+
146
+ const listWeb3EVMWallets = () => {
147
+ const metamaskEnabled = window?.ethereum && !window.ethereum?.isBraveWallet;
148
+ // @ts-ignore that should be implemented in xdefi and hooked up via swapkit core
149
+ const xdefiEnabled = window?.xfi || window?.ethereum?.__XDEFI;
150
+ const braveEnabled = window?.ethereum?.isBraveWallet;
151
+ const trustEnabled = window?.ethereum?.isTrust || window?.trustwallet;
152
+ const coinbaseEnabled =
153
+ (window?.ethereum?.overrideIsMetaMask &&
154
+ window?.ethereum?.selectedProvider?.isCoinbaseWallet) ||
155
+ window?.coinbaseWalletExtension;
156
+
157
+ const wallets = [];
158
+ if (metamaskEnabled) wallets.push(WalletOption.METAMASK);
159
+ if (xdefiEnabled) wallets.push(WalletOption.XDEFI);
160
+ if (braveEnabled) wallets.push(WalletOption.BRAVE);
161
+ if (trustEnabled) wallets.push(WalletOption.TRUSTWALLET_WEB);
162
+ if (coinbaseEnabled) wallets.push(WalletOption.COINBASE_WEB);
163
+ if (okxMobileEnabled()) wallets.push(WalletOption.OKX_MOBILE);
164
+
165
+ return wallets;
166
+ };
167
+
168
+ export const okxMobileEnabled = () => {
169
+ const ua = navigator.userAgent;
170
+ const isIOS = /iphone|ipad|ipod|ios/i.test(ua);
171
+ const isAndroid = /android|XiaoMi|MiuiBrowser/i.test(ua);
172
+ const isMobile = isIOS || isAndroid;
173
+ const isOKApp = /OKApp/i.test(ua);
174
+
175
+ return isMobile && isOKApp;
176
+ };
177
+
178
+ export const isWeb3Detected = () => typeof window.ethereum !== "undefined";
package/src/index.ts CHANGED
@@ -1,16 +1,21 @@
1
+ export * from "./types/index.ts";
2
+
1
3
  /**
2
4
  * Helpers
3
5
  */
4
- export * from './helpers/asset.ts';
5
- export * from './helpers/liquidity.ts';
6
- export * from './helpers/memo.ts';
7
- export * from './helpers/others.ts';
8
- export * from './helpers/request.ts';
6
+ export * from "./helpers/asset.ts";
7
+ export * from "./helpers/derivationPath.ts";
8
+ export * from "./helpers/liquidity.ts";
9
+ export * from "./helpers/memo.ts";
10
+ export * from "./helpers/others.ts";
11
+ export * from "./helpers/validators.ts";
12
+ export * from "./helpers/web3wallets.ts";
9
13
 
10
14
  /**
11
15
  * Modules
12
16
  */
13
- export * from './modules/assetValue.ts';
14
- export * from './modules/bigIntArithmetics.ts';
15
- export * from './modules/swapKitError.ts';
16
- export * from './modules/swapKitNumber.ts';
17
+ export * from "./modules/assetValue.ts";
18
+ export * from "./modules/bigIntArithmetics.ts";
19
+ export * from "./modules/requestClient.ts";
20
+ export * from "./modules/swapKitError.ts";
21
+ export * from "./modules/swapKitNumber.ts";