otomato-sdk 2.0.76 → 2.0.77
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.
|
@@ -37,7 +37,7 @@ const createETHFearAndGreedBuy = async () => {
|
|
|
37
37
|
};
|
|
38
38
|
const createDCAFearAndGreed = async () => {
|
|
39
39
|
// created with examples/UseCases/FearAndGreedDCA
|
|
40
|
-
return Workflow.fromJSON({ "id": null, "name": "Fear and Greed Workflow", "state": "inactive", "dateCreated": null, "dateModified": null, "executionId": null, "nodes": [{ "id": null, "ref": "1", "blockId": 18, "type": "trigger", "state": "inactive", "parameters": { "period": 86400000, "timeout": null, "limit":
|
|
40
|
+
return Workflow.fromJSON({ "id": null, "name": "Fear and Greed Workflow", "state": "inactive", "dateCreated": null, "dateModified": null, "executionId": null, "nodes": [{ "id": null, "ref": "1", "blockId": 18, "type": "trigger", "state": "inactive", "parameters": { "period": 86400000, "timeout": null, "limit": 30 }, "frontendHelpers": {}, "position": { "x": 400, "y": 120 } }, { "id": null, "ref": "2", "blockId": 100015, "type": "action", "state": "inactive", "parameters": {}, "frontendHelpers": {}, "position": { "x": 400, "y": 240 } }, { "id": null, "ref": "3", "blockId": 100016, "type": "action", "state": "inactive", "parameters": { "logic": "or", "groups": [{ "logic": "and", "checks": [{ "value1": "{{external.functions.btcFearAndGreed()}}", "condition": "gt", "value2": "80" }] }] }, "frontendHelpers": {}, "position": { "x": 150, "y": 360 } }, { "id": null, "ref": "4", "blockId": 100013, "type": "action", "state": "inactive", "parameters": { "chainId": 8453, "tokenIn": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", "tokenOut": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "amount": 0.0001, "slippage": 0.1 }, "frontendHelpers": { "output": { "amountIn": { "formatAmount": false, "erc20Token": { "contractAddress": "{{output.tokenIn}}", "chainId": "{{parameters.chainId}}" } }, "amountOut": { "formatAmount": false, "erc20Token": { "contractAddress": "{{output.tokenOut}}", "chainId": "{{parameters.chainId}}" } } } }, "position": { "x": 150, "y": 480 } }, { "id": null, "ref": "5", "blockId": 100016, "type": "action", "state": "inactive", "parameters": { "logic": "or", "groups": [{ "logic": "and", "checks": [{ "value1": "{{external.functions.btcFearAndGreed()}}", "condition": "lt", "value2": "20" }] }] }, "frontendHelpers": {}, "position": { "x": 650, "y": 360 } }, { "id": null, "ref": "6", "blockId": 100013, "type": "action", "state": "inactive", "parameters": { "chainId": 8453, "tokenIn": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "tokenOut": "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", "amount": 10, "slippage": 0.3 }, "frontendHelpers": { "output": { "amountIn": { "formatAmount": false, "erc20Token": { "contractAddress": "{{output.tokenIn}}", "chainId": "{{parameters.chainId}}" } }, "amountOut": { "formatAmount": false, "erc20Token": { "contractAddress": "{{output.tokenOut}}", "chainId": "{{parameters.chainId}}" } } } }, "position": { "x": 650, "y": 480 } }], "edges": [{ "id": null, "source": "1", "target": "2" }, { "id": null, "source": "2", "target": "3" }, { "id": null, "source": "3", "target": "4", "label": "true", "value": "true" }, { "id": null, "source": "2", "target": "5" }, { "id": null, "source": "5", "target": "6", "label": "true", "value": "true" }], "notes": [] });
|
|
41
41
|
};
|
|
42
42
|
const createETHFearAndGreedCapitalEfficientBuy = async () => {
|
|
43
43
|
const trigger = new Trigger(TRIGGERS.SOCIALS.FEAR_AND_GREED.GET_FEAR_AND_GREED_INDEX);
|
|
@@ -161,7 +161,7 @@ const dailyYieldEmail = async () => {
|
|
|
161
161
|
• IONIC: {{external.functions.ionicLendingRate(34443,0x4200000000000000000000000000000000000006)}}%
|
|
162
162
|
• Ironclad: {{external.functions.ironcladLendingRate(34443,0x4200000000000000000000000000000000000006)}}%
|
|
163
163
|
|
|
164
|
-
The gas price on Ethereum is {{external.functions.mainnetGasPrice(,)}}
|
|
164
|
+
The gas price on Ethereum is currently {{external.functions.mainnetGasPrice(,)}} gwei.
|
|
165
165
|
|
|
166
166
|
See you tomorrow!`);
|
|
167
167
|
notificationAction.setParams("subject", "Daily yield updates");
|
|
@@ -10,12 +10,7 @@ export async function convertToTokenUnits(amount, chainId, contractAddress) {
|
|
|
10
10
|
}
|
|
11
11
|
// Calculate the result as a number first
|
|
12
12
|
const result = amount * Math.pow(10, decimals);
|
|
13
|
-
|
|
14
|
-
if (!Number.isInteger(result)) {
|
|
15
|
-
throw new Error(`Conversion resulted in a non-integer value: ${result}. Please provide an amount that results in a whole number of token units.`);
|
|
16
|
-
}
|
|
17
|
-
// If we've reached here, the result is an integer, so we can safely convert to BigInt
|
|
18
|
-
return BigInt(Math.round(result));
|
|
13
|
+
return BigInt(Math.floor(result));
|
|
19
14
|
}
|
|
20
15
|
export async function convertToTokenUnitsFromSymbol(amount, chainId, symbol) {
|
|
21
16
|
const token = await getTokenFromSymbol(chainId, symbol);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.77";
|
|
2
2
|
export declare function compareVersions(v1: string, v2: string): number;
|