otomato-sdk 2.0.437 → 2.0.438
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.
|
@@ -28,7 +28,7 @@ export const TOKENS = {
|
|
|
28
28
|
contractAddress: "0xdac17f958d2ee523a2206206994597c13d831ec7",
|
|
29
29
|
name: "USDT",
|
|
30
30
|
symbol: "USDT",
|
|
31
|
-
decimals:
|
|
31
|
+
decimals: 6,
|
|
32
32
|
image: "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png"
|
|
33
33
|
},
|
|
34
34
|
{
|
|
@@ -766,9 +766,6 @@ export function getPairLabel(baseSymbol, quoteSymbol) {
|
|
|
766
766
|
* Check if a current tick is within the specified range.
|
|
767
767
|
*/
|
|
768
768
|
export function isTickInRange(currentTick, tickLower, tickUpper) {
|
|
769
|
-
console.log('[nauht] - check currentTickdasdas', currentTick);
|
|
770
|
-
console.log('[nauht] - check tickLower', tickLower);
|
|
771
|
-
console.log('[nauht] - check tickUpper', tickUpper);
|
|
772
769
|
if (currentTick === null || currentTick === undefined) {
|
|
773
770
|
return false;
|
|
774
771
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.438";
|
|
2
2
|
export declare function compareVersions(v1: string, v2: string): number;
|