Compare commits
2 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| ef23ebcf6a | |||
| 6c76a94c71 |
@@ -1,56 +1,8 @@
|
|||||||
# General configurations
|
|
||||||
#####################################################
|
|
||||||
{{JUPITER_PERPS_WALLET}} 8abcYourWalletAddressHere
|
|
||||||
|
|
||||||
|
|
||||||
# Constant Name Value
|
|
||||||
####################################
|
|
||||||
|
|
||||||
{{SOL_LONG_ENTRY_PRICE}} 73.67
|
|
||||||
{{SOL_LONG_LIQ_PRICE}} 70.28
|
|
||||||
{{SOL_SHORT_ENTRY_PRICE}} 70.47
|
|
||||||
{{SOL_SHORT_LIQ_PRICE}} 75.01
|
|
||||||
|
|
||||||
{{ETH_LONG_ENTRY_PRICE}} 1589.63
|
|
||||||
{{ETH_LONG_LIQ_PRICE}} 1461.11
|
|
||||||
{{ETH_SHORT_ENTRY_PRICE}} 1545.29
|
|
||||||
{{ETH_SHORT_LIQ_PRICE}} 1698.42
|
|
||||||
|
|
||||||
{{BTC_LONG_ENTRY_PRICE}} 61236.03
|
|
||||||
{{BTC_LONG_LIQ_PRICE}} 40984.70
|
|
||||||
{{BTC_SHORT_ENTRY_PRICE}} 59451.94
|
|
||||||
{{BTC_SHORT_LIQ_PRICE}} 65084.53
|
|
||||||
|
|
||||||
|
|
||||||
# Id Asset Direction Target Trigger Severity Note
|
# Id Asset Direction Target Trigger Severity Note
|
||||||
###############################################################################################################################
|
######################################################################################################################
|
||||||
|
1 SOL ABOVE 97.03-1.25% ONETIME CRITICAL "CRITICAL: Risiko for Perps Solana short LIKVIDERING!"
|
||||||
# SOL SHORT
|
2 SOL BELOW 48.72+1.25% ONETIME CRITICAL "CRITICAL: Risiko for Perps Solana long LIKVIDERING!"
|
||||||
1 SOL ABOVE {{SOL_SHORT_LIQ_PRICE}}-1.25% ONETIME CRITICAL "🚨 LIKVIDERINGS-risiko SOL Short!"
|
3 BTC ABOVE 85032.87-1% ONETIME CRITICAL "CRITICAL: Risiko for Perps Bitcoin short LIKVIDERING!"
|
||||||
2 SOL ABOVE {{SOL_SHORT_ENTRY_PRICE}}+3% PERSISTENT:900 INFO "🌱 Short SOL now"
|
4 BTC BELOW 42779.40+1% ONETIME CRITICAL "CRITICAL: Risiko for Perps Bitcoin long LIKVIDERING!"
|
||||||
3 SOL BELOW {{SOL_SHORT_ENTRY_PRICE}}-3% PERSISTENT:900 INFO "💵 Close SOL Short"
|
5 ETH ABOVE 2296.13-1% ONETIME CRITICAL "CRITICAL: Risiko for Perps Ethereum short LIKVIDERING!"
|
||||||
|
6 ETH BELOW 1155.19+1% ONETIME CRITICAL "CRITICAL: Risiko for Perps Ethereum long LIKVIDERING!"
|
||||||
# SOL LONG
|
|
||||||
4 SOL BELOW {{SOL_LONG_LIQ_PRICE}}+1.25% ONETIME CRITICAL "🚨 LIKVIDERINGS-risiko SOL Long!"
|
|
||||||
5 SOL BELOW {{SOL_LONG_ENTRY_PRICE}}-3% PERSISTENT:900 INFO "🌱 Long SOL now"
|
|
||||||
6 SOL ABOVE {{SOL_LONG_ENTRY_PRICE}}+3% PERSISTENT:900 INFO "💵 Close SOL Long"
|
|
||||||
|
|
||||||
# ETH SHORT
|
|
||||||
7 ETH ABOVE {{ETH_SHORT_LIQ_PRICE}}-1% ONETIME CRITICAL "🚨 LIKVIDERINGS-risiko ETH Short!"
|
|
||||||
8 ETH ABOVE {{ETH_SHORT_ENTRY_PRICE}}+3% PERSISTENT:900 INFO "🌱 Short ETH now"
|
|
||||||
9 ETH BELOW {{ETH_SHORT_ENTRY_PRICE}}-3% PERSISTENT:900 INFO "💵 Close ETH Short"
|
|
||||||
|
|
||||||
# ETH LONG
|
|
||||||
10 ETH BELOW {{ETH_LONG_LIQ_PRICE}}+1% ONETIME CRITICAL "🚨 LIKVIDERINGS-risiko ETH Long!"
|
|
||||||
11 ETH BELOW {{ETH_LONG_ENTRY_PRICE}}-3% PERSISTENT:900 INFO "🌱 Long ETH now"
|
|
||||||
12 ETH ABOVE {{ETH_LONG_ENTRY_PRICE}}+3% PERSISTENT:900 INFO "💵 Close ETH Long"
|
|
||||||
|
|
||||||
# BTC SHORT
|
|
||||||
13 BTC ABOVE {{BTC_SHORT_LIQ_PRICE}}-1% ONETIME CRITICAL "🚨 LIKVIDERINGS-risiko BTC Short!"
|
|
||||||
14 BTC ABOVE {{BTC_SHORT_ENTRY_PRICE}}+3% PERSISTENT:900 INFO "🌱 Short BTC now"
|
|
||||||
15 BTC BELOW {{BTC_SHORT_ENTRY_PRICE}}-3% PERSISTENT:900 INFO "💵 Close BTC Short"
|
|
||||||
|
|
||||||
# BTC LONG
|
|
||||||
16 BTC BELOW {{BTC_LONG_LIQ_PRICE}}+1% ONETIME CRITICAL "🚨 LIKVIDERINGS-risiko BTC Long!"
|
|
||||||
17 BTC BELOW {{BTC_LONG_ENTRY_PRICE}}-3% PERSISTENT:900 INFO "🌱 Long BTC now"
|
|
||||||
18 BTC ABOVE {{BTC_LONG_ENTRY_PRICE}}+3% PERSISTENT:900 INFO "💵 Close BTC Long"
|
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
SOURCE="$HOME/projects/com_r35157_nenjim-hubd-impl_ref"
|
|
||||||
TARGET="$HOME/projects/com_r35157_nenjim-hubd-impl_ref_github_snapshot"
|
|
||||||
|
|
||||||
rsync -a --delete \
|
|
||||||
--exclude '.git' \
|
|
||||||
--exclude 'conf/*.conf' \
|
|
||||||
--exclude 'conf/*.xml' \
|
|
||||||
"$SOURCE/" \
|
|
||||||
"$TARGET/"
|
|
||||||
|
|
||||||
cd "$TARGET"
|
|
||||||
git add -A
|
|
||||||
|
|
||||||
if git diff --cached --quiet; then
|
|
||||||
echo "No snapshot changes to publish."
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
git commit -m "Mirror snapshot"
|
|
||||||
git push
|
|
||||||
@@ -2,5 +2,5 @@ package com.r35157.jupiterperpsalarm.impl.ref;
|
|||||||
|
|
||||||
@FunctionalInterface
|
@FunctionalInterface
|
||||||
public interface AlarmAction {
|
public interface AlarmAction {
|
||||||
void trigger(OraclePrice price, ResolvedPriceAlarm alarm);
|
void trigger(OraclePrice price, PriceAlarmDefinition alarm);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
|
||||||
|
|
||||||
public record AlarmConfiguration(
|
|
||||||
List<PriceAlarmDefinition> definitions,
|
|
||||||
Map<String, String> variables
|
|
||||||
) {
|
|
||||||
public AlarmConfiguration {
|
|
||||||
Objects.requireNonNull(definitions, "definitions");
|
|
||||||
Objects.requireNonNull(variables, "variables");
|
|
||||||
|
|
||||||
definitions = List.copyOf(definitions);
|
|
||||||
variables = new ConcurrentHashMap<>(variables);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+60
-19
@@ -3,13 +3,14 @@ package com.r35157.jupiterperpsalarm.impl.ref;
|
|||||||
import com.r35157.jupiterperpsalarm.AlarmSeverity;
|
import com.r35157.jupiterperpsalarm.AlarmSeverity;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
public final class AlarmConfigurationParser {
|
public final class AlarmConfigurationParser {
|
||||||
|
|
||||||
public static AlarmConfiguration parse(Path path) throws IOException {
|
public static List<PriceAlarmDefinition> parse(Path path) throws IOException {
|
||||||
List<String> lines = Files.readAllLines(path);
|
List<String> lines = Files.readAllLines(path);
|
||||||
List<PriceAlarmDefinition> alarms = new ArrayList<>();
|
List<PriceAlarmDefinition> alarms = new ArrayList<>();
|
||||||
Map<String, String> constants = new LinkedHashMap<>();
|
Map<String, String> constants = new LinkedHashMap<>();
|
||||||
@@ -26,7 +27,8 @@ public final class AlarmConfigurationParser {
|
|||||||
if(isConstantDefinition(trimmed)) {
|
if(isConstantDefinition(trimmed)) {
|
||||||
parseConstantDefinition(constants, line);
|
parseConstantDefinition(constants, line);
|
||||||
} else {
|
} else {
|
||||||
alarms.add(parseLine(line));
|
String resolvedLine = replaceConstants(line, constants);
|
||||||
|
alarms.add(parseLine(resolvedLine));
|
||||||
}
|
}
|
||||||
} catch (RuntimeException exception) {
|
} catch (RuntimeException exception) {
|
||||||
throw new IllegalArgumentException(
|
throw new IllegalArgumentException(
|
||||||
@@ -40,7 +42,7 @@ public final class AlarmConfigurationParser {
|
|||||||
throw new IllegalArgumentException("No alarms found in " + path);
|
throw new IllegalArgumentException("No alarms found in " + path);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new AlarmConfiguration(alarms, constants);
|
return List.copyOf(alarms);
|
||||||
}
|
}
|
||||||
|
|
||||||
static PriceAlarmDefinition parseLine(String line) {
|
static PriceAlarmDefinition parseLine(String line) {
|
||||||
@@ -56,7 +58,7 @@ public final class AlarmConfigurationParser {
|
|||||||
cursor.nextToken("direction").toUpperCase(Locale.ROOT)
|
cursor.nextToken("direction").toUpperCase(Locale.ROOT)
|
||||||
);
|
);
|
||||||
|
|
||||||
String targetExpression = cursor.nextToken("target");
|
BigDecimal target = parseTarget(cursor.nextToken("target"));
|
||||||
|
|
||||||
TriggerConfiguration triggerConfiguration = parseTrigger(
|
TriggerConfiguration triggerConfiguration = parseTrigger(
|
||||||
cursor.nextToken("trigger")
|
cursor.nextToken("trigger")
|
||||||
@@ -79,7 +81,7 @@ public final class AlarmConfigurationParser {
|
|||||||
id,
|
id,
|
||||||
asset,
|
asset,
|
||||||
direction,
|
direction,
|
||||||
targetExpression,
|
target,
|
||||||
triggerConfiguration.trigger(),
|
triggerConfiguration.trigger(),
|
||||||
triggerConfiguration.gracePeriod(),
|
triggerConfiguration.gracePeriod(),
|
||||||
severity,
|
severity,
|
||||||
@@ -87,6 +89,28 @@ public final class AlarmConfigurationParser {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static BigDecimal parseTargetPercentage(
|
||||||
|
String targetStr,
|
||||||
|
int operatorIndex,
|
||||||
|
boolean add
|
||||||
|
) {
|
||||||
|
BigDecimal base = new BigDecimal(targetStr.substring(0, operatorIndex));
|
||||||
|
String percentStr = targetStr.substring(operatorIndex + 1, targetStr.length() - 1);
|
||||||
|
BigDecimal percent = new BigDecimal(percentStr);
|
||||||
|
|
||||||
|
BigDecimal delta = base
|
||||||
|
.multiply(percent)
|
||||||
|
.divide(BigDecimal.valueOf(100));
|
||||||
|
|
||||||
|
BigDecimal target = add ? base.add(delta) : base.subtract(delta);
|
||||||
|
|
||||||
|
validateTarget(base, targetStr);
|
||||||
|
validateTarget(percent, targetStr);
|
||||||
|
validateTarget(target, targetStr);
|
||||||
|
|
||||||
|
return target;
|
||||||
|
}
|
||||||
|
|
||||||
private static TriggerConfiguration parseTrigger(String triggerText) {
|
private static TriggerConfiguration parseTrigger(String triggerText) {
|
||||||
String normalized = triggerText.toUpperCase(Locale.ROOT);
|
String normalized = triggerText.toUpperCase(Locale.ROOT);
|
||||||
|
|
||||||
@@ -131,6 +155,35 @@ public final class AlarmConfigurationParser {
|
|||||||
throw new IllegalArgumentException("Unknown trigger: " + triggerText);
|
throw new IllegalArgumentException("Unknown trigger: " + triggerText);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void validateTarget(BigDecimal target, String originalTargetStr) {
|
||||||
|
if (target.compareTo(BigDecimal.ZERO) < 0) {
|
||||||
|
throw new IllegalArgumentException(
|
||||||
|
"Target must be zero or positive: " + originalTargetStr
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static BigDecimal parseTarget(String targetStr) {
|
||||||
|
String trimmedTargetStr = targetStr.trim();
|
||||||
|
|
||||||
|
if (trimmedTargetStr.endsWith("%")) {
|
||||||
|
int plusIndex = trimmedTargetStr.indexOf('+');
|
||||||
|
int minusIndex = trimmedTargetStr.indexOf('-', 1);
|
||||||
|
|
||||||
|
if (plusIndex >= 0) {
|
||||||
|
return parseTargetPercentage(trimmedTargetStr, plusIndex, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (minusIndex >= 0) {
|
||||||
|
return parseTargetPercentage(trimmedTargetStr, minusIndex, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
BigDecimal target = new BigDecimal(trimmedTargetStr);
|
||||||
|
validateTarget(target, targetStr);
|
||||||
|
return target;
|
||||||
|
}
|
||||||
|
|
||||||
private static final class Cursor {
|
private static final class Cursor {
|
||||||
private Cursor(String line) {
|
private Cursor(String line) {
|
||||||
this.line = line;
|
this.line = line;
|
||||||
@@ -237,21 +290,9 @@ public final class AlarmConfigurationParser {
|
|||||||
|
|
||||||
validateConstantName(name);
|
validateConstantName(name);
|
||||||
|
|
||||||
constants.put(parseVariableName(name), value);
|
if (constants.putIfAbsent(name, value) != null) {
|
||||||
|
throw new IllegalArgumentException("Duplicate constant: " + name);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String parseVariableName(String variableName) {
|
|
||||||
if (!variableName.startsWith("{{") || !variableName.endsWith("}}")) {
|
|
||||||
throw new IllegalArgumentException("Invalid variable name: " + variableName);
|
|
||||||
}
|
|
||||||
|
|
||||||
String parsedVariableName = variableName.substring(2, variableName.length() - 2);
|
|
||||||
|
|
||||||
if (parsedVariableName.isBlank()) {
|
|
||||||
throw new IllegalArgumentException("Variable name cannot be blank: " + variableName);
|
|
||||||
}
|
|
||||||
|
|
||||||
return parsedVariableName;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String replaceConstants(
|
private static String replaceConstants(
|
||||||
|
|||||||
@@ -1,60 +0,0 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
|
|
||||||
public final class AlarmTargetParser {
|
|
||||||
|
|
||||||
private AlarmTargetParser() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public static BigDecimal parse(String targetStr) {
|
|
||||||
String trimmedTargetStr = targetStr.trim();
|
|
||||||
|
|
||||||
if (trimmedTargetStr.endsWith("%")) {
|
|
||||||
int plusIndex = trimmedTargetStr.indexOf('+');
|
|
||||||
int minusIndex = trimmedTargetStr.indexOf('-', 1);
|
|
||||||
|
|
||||||
if (plusIndex >= 0) {
|
|
||||||
return parseTargetPercentage(trimmedTargetStr, plusIndex, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (minusIndex >= 0) {
|
|
||||||
return parseTargetPercentage(trimmedTargetStr, minusIndex, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
BigDecimal target = new BigDecimal(trimmedTargetStr);
|
|
||||||
validateTarget(target, targetStr);
|
|
||||||
return target;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static BigDecimal parseTargetPercentage(
|
|
||||||
String targetStr,
|
|
||||||
int operatorIndex,
|
|
||||||
boolean add
|
|
||||||
) {
|
|
||||||
BigDecimal base = new BigDecimal(targetStr.substring(0, operatorIndex));
|
|
||||||
String percentStr = targetStr.substring(operatorIndex + 1, targetStr.length() - 1);
|
|
||||||
BigDecimal percent = new BigDecimal(percentStr);
|
|
||||||
|
|
||||||
BigDecimal delta = base
|
|
||||||
.multiply(percent)
|
|
||||||
.divide(BigDecimal.valueOf(100));
|
|
||||||
|
|
||||||
BigDecimal target = add ? base.add(delta) : base.subtract(delta);
|
|
||||||
|
|
||||||
validateTarget(base, targetStr);
|
|
||||||
validateTarget(percent, targetStr);
|
|
||||||
validateTarget(target, targetStr);
|
|
||||||
|
|
||||||
return target;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void validateTarget(BigDecimal target, String originalTargetStr) {
|
|
||||||
if (target.compareTo(BigDecimal.ZERO) < 0) {
|
|
||||||
throw new IllegalArgumentException(
|
|
||||||
"Target must be zero or positive: " + originalTargetStr
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
|
||||||
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
public final class AlarmVariableResolver {
|
|
||||||
|
|
||||||
public AlarmVariableResolver(Map<String, String> variables) {
|
|
||||||
this.variables = Objects.requireNonNull(variables, "variables");
|
|
||||||
}
|
|
||||||
|
|
||||||
public String resolve(String text) {
|
|
||||||
Objects.requireNonNull(text, "text");
|
|
||||||
|
|
||||||
String resolvedText = text;
|
|
||||||
|
|
||||||
for (Map.Entry<String, String> entry : variables.entrySet()) {
|
|
||||||
String placeholder = "{{" + entry.getKey() + "}}";
|
|
||||||
resolvedText = resolvedText.replace(placeholder, entry.getValue());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (resolvedText.contains("{{") || resolvedText.contains("}}")) {
|
|
||||||
throw new IllegalArgumentException("Unresolved variable in text: " + text);
|
|
||||||
}
|
|
||||||
|
|
||||||
return resolvedText;
|
|
||||||
}
|
|
||||||
|
|
||||||
private final Map<String, String> variables;
|
|
||||||
}
|
|
||||||
@@ -12,7 +12,6 @@ public final class AssetPriceAlarmMonitor {
|
|||||||
public AssetPriceAlarmMonitor(
|
public AssetPriceAlarmMonitor(
|
||||||
JupiterPerpsAsset asset,
|
JupiterPerpsAsset asset,
|
||||||
List<PriceAlarmDefinition> definitions,
|
List<PriceAlarmDefinition> definitions,
|
||||||
AlarmVariableResolver variableResolver,
|
|
||||||
AlarmAction action
|
AlarmAction action
|
||||||
) {
|
) {
|
||||||
this.asset = asset;
|
this.asset = asset;
|
||||||
@@ -23,7 +22,7 @@ public final class AssetPriceAlarmMonitor {
|
|||||||
"Alarm asset " + definition.asset() + " does not match monitor " + asset
|
"Alarm asset " + definition.asset() + " does not match monitor " + asset
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return new PriceAlarm(definition, variableResolver, action);
|
return new PriceAlarm(definition, action);
|
||||||
})
|
})
|
||||||
.toList();
|
.toList();
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ public final class CompositeAlarmAction implements AlarmAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void trigger(OraclePrice price, ResolvedPriceAlarm alarm) {
|
public void trigger(OraclePrice price, PriceAlarmDefinition alarm) {
|
||||||
for (AlarmAction action : actions) {
|
for (AlarmAction action : actions) {
|
||||||
try {
|
try {
|
||||||
action.trigger(price, alarm);
|
action.trigger(price, alarm);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package com.r35157.jupiterperpsalarm.impl.ref;
|
|||||||
|
|
||||||
public final class ConsoleAlarmAction implements AlarmAction {
|
public final class ConsoleAlarmAction implements AlarmAction {
|
||||||
@Override
|
@Override
|
||||||
public void trigger(OraclePrice price, ResolvedPriceAlarm alarm) {
|
public void trigger(OraclePrice price, PriceAlarmDefinition alarm) {
|
||||||
System.err.println();
|
System.err.println();
|
||||||
System.err.println("============================================================");
|
System.err.println("============================================================");
|
||||||
System.err.printf(
|
System.err.printf(
|
||||||
|
|||||||
@@ -1,10 +1,5 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
package com.r35157.jupiterperpsalarm.impl.ref;
|
||||||
|
|
||||||
import com.r35157.libs.jupiter.perps.JupiterPerpsService;
|
|
||||||
import com.r35157.libs.jupiter.perps.impl.anchoridl.AnchorIdlJupiterPerpsServiceImpl;
|
|
||||||
import com.r35157.libs.solana.SolanaBlockChain;
|
|
||||||
import com.r35157.libs.solana.impl.ref.SolanaBlockChainImpl;
|
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -18,7 +13,6 @@ public final class JupiterPerpsAlarmImpl {
|
|||||||
|
|
||||||
public static void main(String[] args) throws Exception {
|
public static void main(String[] args) throws Exception {
|
||||||
Config config;
|
Config config;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
config = Config.parse(args, System.getenv());
|
config = Config.parse(args, System.getenv());
|
||||||
} catch (IllegalArgumentException exception) {
|
} catch (IllegalArgumentException exception) {
|
||||||
@@ -28,34 +22,13 @@ public final class JupiterPerpsAlarmImpl {
|
|||||||
}
|
}
|
||||||
|
|
||||||
List<PriceAlarmDefinition> definitions;
|
List<PriceAlarmDefinition> definitions;
|
||||||
AlarmConfiguration alarmConfiguration;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
alarmConfiguration = AlarmConfigurationParser.parse(config.alarmConfiguration());
|
definitions = AlarmConfigurationParser.parse(config.alarmConfiguration());
|
||||||
definitions = alarmConfiguration.definitions();
|
|
||||||
} catch (Exception exception) {
|
} catch (Exception exception) {
|
||||||
String errMsg = "Could not load alarm configuration: " + exception.getMessage() + "!";
|
String errMsg = "Could not load alarm configuration: " + exception.getMessage() + "!";
|
||||||
throw new IllegalStateException(errMsg, exception);
|
throw new IllegalStateException(errMsg, exception);
|
||||||
}
|
}
|
||||||
|
|
||||||
AlarmVariableResolver variableResolver = new AlarmVariableResolver(
|
|
||||||
alarmConfiguration.variables()
|
|
||||||
);
|
|
||||||
|
|
||||||
SolanaBlockChain solanaBlockChain = new SolanaBlockChainImpl();
|
|
||||||
JupiterPerpsService jupiterPerpsService = new AnchorIdlJupiterPerpsServiceImpl(solanaBlockChain);
|
|
||||||
JupiterPerpsEntryPriceVariableRefresher entryPriceVariableRefresher =
|
|
||||||
new JupiterPerpsEntryPriceVariableRefresher(alarmConfiguration.variables(), jupiterPerpsService);
|
|
||||||
entryPriceVariableRefresher.refresh();
|
|
||||||
|
|
||||||
JupiterPerpsEntryPriceVariableRefreshWatcher entryPriceVariableRefreshWatcher =
|
|
||||||
new JupiterPerpsEntryPriceVariableRefreshWatcher(
|
|
||||||
config.alarmConfiguration().getParent(),
|
|
||||||
entryPriceVariableRefresher
|
|
||||||
);
|
|
||||||
|
|
||||||
entryPriceVariableRefreshWatcher.start();
|
|
||||||
|
|
||||||
List<AlarmAction> actions = new ArrayList<>();
|
List<AlarmAction> actions = new ArrayList<>();
|
||||||
actions.add(new ConsoleAlarmAction());
|
actions.add(new ConsoleAlarmAction());
|
||||||
|
|
||||||
@@ -79,10 +52,9 @@ public final class JupiterPerpsAlarmImpl {
|
|||||||
Map<JupiterPerpsAsset, AssetPriceAlarmMonitor> monitors = new EnumMap<>(
|
Map<JupiterPerpsAsset, AssetPriceAlarmMonitor> monitors = new EnumMap<>(
|
||||||
JupiterPerpsAsset.class
|
JupiterPerpsAsset.class
|
||||||
);
|
);
|
||||||
|
|
||||||
definitionsByAsset.forEach((asset, assetDefinitions) -> monitors.put(
|
definitionsByAsset.forEach((asset, assetDefinitions) -> monitors.put(
|
||||||
asset,
|
asset,
|
||||||
new AssetPriceAlarmMonitor(asset, assetDefinitions, variableResolver, action)
|
new AssetPriceAlarmMonitor(asset, assetDefinitions, action)
|
||||||
));
|
));
|
||||||
|
|
||||||
List<OracleWebSocketClient> clients = new ArrayList<>();
|
List<OracleWebSocketClient> clients = new ArrayList<>();
|
||||||
@@ -113,7 +85,7 @@ public final class JupiterPerpsAlarmImpl {
|
|||||||
assetDefinitions.forEach(definition -> System.out.printf(
|
assetDefinitions.forEach(definition -> System.out.printf(
|
||||||
" %s %s USD, %s, severity=%s%n",
|
" %s %s USD, %s, severity=%s%n",
|
||||||
definition.direction(),
|
definition.direction(),
|
||||||
definition.targetExpression(),
|
definition.target().toPlainString(),
|
||||||
definition.trigger(),
|
definition.trigger(),
|
||||||
definition.severity()
|
definition.severity()
|
||||||
));
|
));
|
||||||
|
|||||||
-92
@@ -1,92 +0,0 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
|
||||||
|
|
||||||
import java.nio.file.*;
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.file.Files;
|
|
||||||
import java.nio.file.FileSystems;
|
|
||||||
import java.nio.file.StandardWatchEventKinds;
|
|
||||||
import java.nio.file.WatchEvent;
|
|
||||||
import java.nio.file.WatchKey;
|
|
||||||
import java.nio.file.WatchService;
|
|
||||||
|
|
||||||
public final class JupiterPerpsEntryPriceVariableRefreshWatcher {
|
|
||||||
|
|
||||||
public JupiterPerpsEntryPriceVariableRefreshWatcher(
|
|
||||||
Path confDirectory,
|
|
||||||
JupiterPerpsEntryPriceVariableRefresher refresher
|
|
||||||
) {
|
|
||||||
this.confDirectory = Objects.requireNonNull(confDirectory, "confDirectory");
|
|
||||||
this.refresher = Objects.requireNonNull(refresher, "refresher");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void start() {
|
|
||||||
Thread thread = new Thread(
|
|
||||||
this::run,
|
|
||||||
"jupiter-perps-entry-price-variable-refresh-watcher"
|
|
||||||
);
|
|
||||||
|
|
||||||
thread.setDaemon(true);
|
|
||||||
thread.start();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void run() {
|
|
||||||
try (WatchService watchService = FileSystems.getDefault().newWatchService()) {
|
|
||||||
|
|
||||||
confDirectory.register(
|
|
||||||
watchService,
|
|
||||||
StandardWatchEventKinds.ENTRY_CREATE
|
|
||||||
);
|
|
||||||
|
|
||||||
System.out.println(
|
|
||||||
"Jupiter Perps entry price variable refresh watcher started for directory: "
|
|
||||||
+ confDirectory
|
|
||||||
);
|
|
||||||
while (true) {
|
|
||||||
WatchKey key = watchService.take();
|
|
||||||
|
|
||||||
for (WatchEvent<?> event : key.pollEvents()) {
|
|
||||||
Path path = (Path) event.context();
|
|
||||||
|
|
||||||
if (!REFRESH_TRIGGER_FILE_NAME.equals(path.getFileName().toString())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
Path triggerFile = confDirectory.resolve(path);
|
|
||||||
|
|
||||||
System.out.println("Refresh trigger file detected: " + triggerFile);
|
|
||||||
|
|
||||||
try {
|
|
||||||
refresher.refresh();
|
|
||||||
} finally {
|
|
||||||
Files.deleteIfExists(triggerFile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!key.reset()) {
|
|
||||||
System.err.println(
|
|
||||||
"Jupiter Perps entry price variable refresh watcher stopped: watch key is no longer valid"
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (IOException exception) {
|
|
||||||
System.err.println(
|
|
||||||
"Could not start Jupiter Perps entry price variable refresh watcher: "
|
|
||||||
+ exception.getMessage()
|
|
||||||
);
|
|
||||||
} catch (InterruptedException exception) {
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
|
|
||||||
System.err.println(
|
|
||||||
"Jupiter Perps entry price variable refresh watcher interrupted"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final String REFRESH_TRIGGER_FILE_NAME =
|
|
||||||
"jupiter-perps-alarm-var.refresh";
|
|
||||||
|
|
||||||
private final Path confDirectory;
|
|
||||||
private final JupiterPerpsEntryPriceVariableRefresher refresher;
|
|
||||||
}
|
|
||||||
-86
@@ -1,86 +0,0 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
|
||||||
|
|
||||||
import com.r35157.libs.jupiter.perps.JupiterPerpsPosition;
|
|
||||||
import com.r35157.libs.jupiter.perps.JupiterPerpsService;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
public final class JupiterPerpsEntryPriceVariableRefresher {
|
|
||||||
|
|
||||||
public JupiterPerpsEntryPriceVariableRefresher(
|
|
||||||
Map<String, String> variables,
|
|
||||||
JupiterPerpsService jupiterPerpsService
|
|
||||||
) {
|
|
||||||
this.variables = Objects.requireNonNull(variables, "variables");
|
|
||||||
this.jupiterPerpsService = Objects.requireNonNull(jupiterPerpsService, "jupiterPerpsService");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void refresh() {
|
|
||||||
ΩSolanaWalletIdΩ wallet = variables.get("JUPITER_PERPS_WALLET");
|
|
||||||
|
|
||||||
if (wallet == null || wallet.isBlank()) {
|
|
||||||
System.err.println("Cannot refresh Jupiter Perps entry price variables: JUPITER_PERPS_WALLET is not configured");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
Set<JupiterPerpsPosition> positions = jupiterPerpsService.getOpenPositions(wallet);
|
|
||||||
|
|
||||||
System.out.println(
|
|
||||||
"Fetched " + positions.size()
|
|
||||||
+ " open Jupiter Perps positions for wallet: " + wallet
|
|
||||||
);
|
|
||||||
|
|
||||||
removeEntryPriceVariables();
|
|
||||||
|
|
||||||
for (JupiterPerpsPosition position : positions) {
|
|
||||||
String variableName = createEntryPriceVariableName(position);
|
|
||||||
|
|
||||||
System.out.println(
|
|
||||||
"Jupiter Perps position maps to variable "
|
|
||||||
+ variableName
|
|
||||||
+ " = "
|
|
||||||
+ position.entryPrice()
|
|
||||||
);
|
|
||||||
variables.put(variableName, position.entryPrice().toPlainString());
|
|
||||||
}
|
|
||||||
} catch (IOException | InterruptedException exception) {
|
|
||||||
if (exception instanceof InterruptedException) {
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
}
|
|
||||||
|
|
||||||
System.err.println(
|
|
||||||
"Could not refresh Jupiter Perps entry price variables: "
|
|
||||||
+ exception.getMessage()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void removeEntryPriceVariables() {
|
|
||||||
variables.remove("SOL_LONG_ENTRY_PRICE");
|
|
||||||
variables.remove("SOL_SHORT_ENTRY_PRICE");
|
|
||||||
variables.remove("BTC_LONG_ENTRY_PRICE");
|
|
||||||
variables.remove("BTC_SHORT_ENTRY_PRICE");
|
|
||||||
variables.remove("ETH_LONG_ENTRY_PRICE");
|
|
||||||
variables.remove("ETH_SHORT_ENTRY_PRICE");
|
|
||||||
}
|
|
||||||
|
|
||||||
private static String createEntryPriceVariableName(JupiterPerpsPosition position) {
|
|
||||||
String asset = switch (position.tradedTokenMint()) {
|
|
||||||
case "So11111111111111111111111111111111111111112" -> "SOL";
|
|
||||||
case "3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh" -> "BTC";
|
|
||||||
case "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs" -> "ETH";
|
|
||||||
default -> throw new IllegalArgumentException(
|
|
||||||
"Unsupported Jupiter Perps traded token mint: " + position.tradedTokenMint()
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return asset + "_" + position.direction() + "_ENTRY_PRICE";
|
|
||||||
}
|
|
||||||
|
|
||||||
private final Map<String, String> variables;
|
|
||||||
private final JupiterPerpsService jupiterPerpsService;
|
|
||||||
}
|
|
||||||
@@ -1,17 +1,11 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
package com.r35157.jupiterperpsalarm.impl.ref;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
|
|
||||||
public final class PriceAlarm {
|
public final class PriceAlarm {
|
||||||
|
|
||||||
public PriceAlarm(
|
public PriceAlarm(PriceAlarmDefinition definition, AlarmAction action) {
|
||||||
PriceAlarmDefinition definition,
|
|
||||||
AlarmVariableResolver variableResolver,
|
|
||||||
AlarmAction action
|
|
||||||
) {
|
|
||||||
this.definition = definition;
|
this.definition = definition;
|
||||||
this.variableResolver = variableResolver;
|
|
||||||
this.action = action;
|
this.action = action;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -22,23 +16,9 @@ public final class PriceAlarm {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
BigDecimal target;
|
|
||||||
try {
|
|
||||||
target = AlarmTargetParser.parse(
|
|
||||||
variableResolver.resolve(definition.targetExpression())
|
|
||||||
);
|
|
||||||
} catch (RuntimeException exception) {
|
|
||||||
System.err.printf(
|
|
||||||
"Could not resolve target for alarm %d: %s%n",
|
|
||||||
definition.id(),
|
|
||||||
exception.getMessage()
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean reached = definition.direction().reached(
|
boolean reached = definition.direction().reached(
|
||||||
price.priceUsd(),
|
price.priceUsd(),
|
||||||
target
|
definition.target()
|
||||||
);
|
);
|
||||||
|
|
||||||
boolean enteredTriggeredSide = previousReached == null
|
boolean enteredTriggeredSide = previousReached == null
|
||||||
@@ -57,13 +37,13 @@ public final class PriceAlarm {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
trigger(price, target);
|
trigger(price);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (definition.trigger() == AlarmTrigger.PERSISTENT) {
|
if (definition.trigger() == AlarmTrigger.PERSISTENT) {
|
||||||
if (lastTriggeredAt == null || persistentGracePeriodHasPassed()) {
|
if (lastTriggeredAt == null || persistentGracePeriodHasPassed()) {
|
||||||
trigger(price, target);
|
trigger(price);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -95,39 +75,13 @@ public final class PriceAlarm {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void trigger(OraclePrice price, BigDecimal target) {
|
private void trigger(OraclePrice price) {
|
||||||
triggerCount++;
|
triggerCount++;
|
||||||
lastTriggeredAt = Instant.now();
|
lastTriggeredAt = Instant.now();
|
||||||
|
action.trigger(price, definition);
|
||||||
String note;
|
|
||||||
|
|
||||||
try {
|
|
||||||
note = variableResolver.resolve(definition.note());
|
|
||||||
} catch (RuntimeException exception) {
|
|
||||||
System.err.printf(
|
|
||||||
"Could not resolve note for alarm %d: %s%n",
|
|
||||||
definition.id(),
|
|
||||||
exception.getMessage()
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ResolvedPriceAlarm resolvedAlarm = new ResolvedPriceAlarm(
|
|
||||||
definition.id(),
|
|
||||||
definition.asset(),
|
|
||||||
definition.direction(),
|
|
||||||
target,
|
|
||||||
definition.trigger(),
|
|
||||||
definition.triggerGracePeriod(),
|
|
||||||
definition.severity(),
|
|
||||||
note
|
|
||||||
);
|
|
||||||
|
|
||||||
action.trigger(price, resolvedAlarm);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private final PriceAlarmDefinition definition;
|
private final PriceAlarmDefinition definition;
|
||||||
private final AlarmVariableResolver variableResolver;
|
|
||||||
private final AlarmAction action;
|
private final AlarmAction action;
|
||||||
|
|
||||||
private Instant lastTriggeredAt;
|
private Instant lastTriggeredAt;
|
||||||
|
|||||||
@@ -2,13 +2,14 @@ package com.r35157.jupiterperpsalarm.impl.ref;
|
|||||||
|
|
||||||
import com.r35157.jupiterperpsalarm.AlarmSeverity;
|
import com.r35157.jupiterperpsalarm.AlarmSeverity;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
public record PriceAlarmDefinition(
|
public record PriceAlarmDefinition(
|
||||||
int id,
|
int id,
|
||||||
JupiterPerpsAsset asset,
|
JupiterPerpsAsset asset,
|
||||||
PriceDirection direction,
|
PriceDirection direction,
|
||||||
String targetExpression,
|
BigDecimal target,
|
||||||
AlarmTrigger trigger,
|
AlarmTrigger trigger,
|
||||||
ΩsecondsΩ triggerGracePeriod,
|
ΩsecondsΩ triggerGracePeriod,
|
||||||
AlarmSeverity severity,
|
AlarmSeverity severity,
|
||||||
@@ -17,13 +18,12 @@ public record PriceAlarmDefinition(
|
|||||||
public PriceAlarmDefinition {
|
public PriceAlarmDefinition {
|
||||||
Objects.requireNonNull(asset, "asset");
|
Objects.requireNonNull(asset, "asset");
|
||||||
Objects.requireNonNull(direction, "direction");
|
Objects.requireNonNull(direction, "direction");
|
||||||
Objects.requireNonNull(targetExpression, "targetExpression");
|
Objects.requireNonNull(target, "target");
|
||||||
Objects.requireNonNull(trigger, "trigger");
|
Objects.requireNonNull(trigger, "trigger");
|
||||||
Objects.requireNonNull(severity, "severity");
|
|
||||||
Objects.requireNonNull(note, "note");
|
Objects.requireNonNull(note, "note");
|
||||||
|
|
||||||
if (targetExpression.isBlank()) {
|
if (target.signum() < 0) {
|
||||||
throw new IllegalArgumentException("Target expression cannot be blank");
|
throw new IllegalArgumentException("Target price cannot be negative (was: " + target.signum() + ")!");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (triggerGracePeriod < 0) {
|
if (triggerGracePeriod < 0) {
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ public final class PushoverAlarmAction implements AlarmAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void trigger(OraclePrice price, ResolvedPriceAlarm alarm) {
|
public void trigger(OraclePrice price, PriceAlarmDefinition alarm) {
|
||||||
String title = "Jupiter Perps " + price.asset() + " alarm";
|
String title = "Jupiter Perps " + price.asset() + " alarm";
|
||||||
String message = createMessage(price, alarm);
|
String message = createMessage(price, alarm);
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@ public final class PushoverAlarmAction implements AlarmAction {
|
|||||||
form("user", userKey) + "&" +
|
form("user", userKey) + "&" +
|
||||||
form("title", title) + "&" +
|
form("title", title) + "&" +
|
||||||
form("message", message) + "&" +
|
form("message", message) + "&" +
|
||||||
createPushoverSeverityParameters(alarm.severity());
|
createPushoverSeverityParameters(alarm.severity());;
|
||||||
|
|
||||||
HttpRequest request = HttpRequest.newBuilder(PUSHOVER_URI)
|
HttpRequest request = HttpRequest.newBuilder(PUSHOVER_URI)
|
||||||
.timeout(Duration.ofSeconds(15))
|
.timeout(Duration.ofSeconds(15))
|
||||||
@@ -69,7 +69,7 @@ public final class PushoverAlarmAction implements AlarmAction {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String createMessage(OraclePrice price, ResolvedPriceAlarm alarm) {
|
private static String createMessage(OraclePrice price, PriceAlarmDefinition alarm) {
|
||||||
return String.format(
|
return String.format(
|
||||||
"%d - %s: %s%n%n%s is %s USD.%nTarget: %s %s USD.%nOracle time: %s.%nSlot: %d.",
|
"%d - %s: %s%n%n%s is %s USD.%nTarget: %s %s USD.%nOracle time: %s.%nSlot: %d.",
|
||||||
alarm.id(),
|
alarm.id(),
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
package com.r35157.jupiterperpsalarm.impl.ref;
|
|
||||||
|
|
||||||
import com.r35157.jupiterperpsalarm.AlarmSeverity;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
|
|
||||||
public record ResolvedPriceAlarm(
|
|
||||||
int id,
|
|
||||||
JupiterPerpsAsset asset,
|
|
||||||
PriceDirection direction,
|
|
||||||
BigDecimal target,
|
|
||||||
AlarmTrigger trigger,
|
|
||||||
ΩsecondsΩ triggerGracePeriod,
|
|
||||||
AlarmSeverity severity,
|
|
||||||
String note
|
|
||||||
) {
|
|
||||||
}
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
package com.r35157.libs.codec.impl.ref;
|
|
||||||
|
|
||||||
import com.r35157.libs.codec.Base58Codec;
|
|
||||||
|
|
||||||
public class Base58CodecImpl implements Base58Codec {
|
|
||||||
|
|
||||||
public String encode(byte[] input) {
|
|
||||||
if (input.length == 0) {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] copy = input.clone();
|
|
||||||
|
|
||||||
int zeros = 0;
|
|
||||||
while (zeros < copy.length && copy[zeros] == 0) {
|
|
||||||
zeros++;
|
|
||||||
}
|
|
||||||
|
|
||||||
char[] encoded = new char[copy.length * 2];
|
|
||||||
int outputStart = encoded.length;
|
|
||||||
|
|
||||||
int inputStart = zeros;
|
|
||||||
while (inputStart < copy.length) {
|
|
||||||
int remainder = divmod58(
|
|
||||||
copy,
|
|
||||||
inputStart
|
|
||||||
);
|
|
||||||
|
|
||||||
if (copy[inputStart] == 0) {
|
|
||||||
inputStart++;
|
|
||||||
}
|
|
||||||
|
|
||||||
encoded[--outputStart] = ALPHABET[remainder];
|
|
||||||
}
|
|
||||||
|
|
||||||
while (outputStart < encoded.length && encoded[outputStart] == ENCODED_ZERO) {
|
|
||||||
outputStart++;
|
|
||||||
}
|
|
||||||
|
|
||||||
while (zeros-- > 0) {
|
|
||||||
encoded[--outputStart] = ENCODED_ZERO;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new String(
|
|
||||||
encoded,
|
|
||||||
outputStart,
|
|
||||||
encoded.length - outputStart
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static int divmod58(byte[] number, int startAt) {
|
|
||||||
int remainder = 0;
|
|
||||||
|
|
||||||
for (int i = startAt; i < number.length; i++) {
|
|
||||||
int digit = number[i] & 0xff;
|
|
||||||
int temp = remainder * 256 + digit;
|
|
||||||
|
|
||||||
number[i] = (byte) (temp / 58);
|
|
||||||
remainder = temp % 58;
|
|
||||||
}
|
|
||||||
|
|
||||||
return remainder;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final char[] ALPHABET =
|
|
||||||
"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz".toCharArray();
|
|
||||||
|
|
||||||
private static final char ENCODED_ZERO =
|
|
||||||
ALPHABET[0];
|
|
||||||
}
|
|
||||||
-50
@@ -1,50 +0,0 @@
|
|||||||
package com.r35157.libs.jupiter.perps.impl.anchoridl;
|
|
||||||
|
|
||||||
import com.r35157.libs.codec.Base58Codec;
|
|
||||||
import com.r35157.libs.codec.impl.ref.Base58CodecImpl;
|
|
||||||
import com.r35157.libs.solana.SolanaAccountInfo;
|
|
||||||
|
|
||||||
import java.util.Base64;
|
|
||||||
|
|
||||||
class AnchorIdlJupiterPerpsCustodyDecoder {
|
|
||||||
|
|
||||||
ΩSPLMintAddressΩ decodeMint(
|
|
||||||
SolanaAccountInfo custodyAccountInfo
|
|
||||||
) {
|
|
||||||
byte[] data = Base64.getDecoder().decode(custodyAccountInfo.dataBase64());
|
|
||||||
|
|
||||||
if (data.length < MINT_OFFSET + PUBLIC_KEY_LENGTH) {
|
|
||||||
throw new IllegalArgumentException(
|
|
||||||
"Jupiter Perps custody account data is too short: " + data.length
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return readPublicKey(data, MINT_OFFSET);
|
|
||||||
}
|
|
||||||
|
|
||||||
private ΩSPLMintAddressΩ readPublicKey(
|
|
||||||
byte[] data,
|
|
||||||
int offset
|
|
||||||
) {
|
|
||||||
byte[] publicKeyBytes = new byte[PUBLIC_KEY_LENGTH];
|
|
||||||
|
|
||||||
System.arraycopy(
|
|
||||||
data,
|
|
||||||
offset,
|
|
||||||
publicKeyBytes,
|
|
||||||
0,
|
|
||||||
PUBLIC_KEY_LENGTH
|
|
||||||
);
|
|
||||||
|
|
||||||
return base58.encode(publicKeyBytes);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final int ANCHOR_DISCRIMINATOR_LENGTH = 8;
|
|
||||||
private static final int PUBLIC_KEY_LENGTH = 32;
|
|
||||||
|
|
||||||
private static final int MINT_OFFSET =
|
|
||||||
ANCHOR_DISCRIMINATOR_LENGTH
|
|
||||||
+ PUBLIC_KEY_LENGTH; // pool
|
|
||||||
|
|
||||||
private static final Base58Codec base58 = new Base58CodecImpl();
|
|
||||||
}
|
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
package com.r35157.libs.jupiter.perps.impl.anchoridl;
|
||||||
|
|
||||||
|
public record AnchorIdlJupiterPerpsDecodedPositionAccount() {
|
||||||
|
}
|
||||||
+13
-46
@@ -1,7 +1,5 @@
|
|||||||
package com.r35157.libs.jupiter.perps.impl.anchoridl;
|
package com.r35157.libs.jupiter.perps.impl.anchoridl;
|
||||||
|
|
||||||
import com.r35157.libs.codec.Base58Codec;
|
|
||||||
import com.r35157.libs.codec.impl.ref.Base58CodecImpl;
|
|
||||||
import com.r35157.libs.jupiter.perps.JupiterPerpsPosition;
|
import com.r35157.libs.jupiter.perps.JupiterPerpsPosition;
|
||||||
import com.r35157.libs.jupiter.perps.JupiterPerpsPositionDirection;
|
import com.r35157.libs.jupiter.perps.JupiterPerpsPositionDirection;
|
||||||
import com.r35157.libs.solana.SolanaAccountInfo;
|
import com.r35157.libs.solana.SolanaAccountInfo;
|
||||||
@@ -15,8 +13,7 @@ class AnchorIdlJupiterPerpsPositionDecoder {
|
|||||||
|
|
||||||
JupiterPerpsPosition decode(
|
JupiterPerpsPosition decode(
|
||||||
ΩJupiterPerpsPositionAccountΩ positionAccount,
|
ΩJupiterPerpsPositionAccountΩ positionAccount,
|
||||||
SolanaAccountInfo accountInfo,
|
SolanaAccountInfo accountInfo
|
||||||
ΩSPLMintAddressΩ tradedTokenMint
|
|
||||||
) {
|
) {
|
||||||
byte[] data = Base64.getDecoder().decode(accountInfo.dataBase64());
|
byte[] data = Base64.getDecoder().decode(accountInfo.dataBase64());
|
||||||
|
|
||||||
@@ -48,21 +45,6 @@ class AnchorIdlJupiterPerpsPositionDecoder {
|
|||||||
return pos;
|
return pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
ΩSolanaAddressΩ decodeCustodyAccount(SolanaAccountInfo accountInfo) {
|
|
||||||
byte[] data = Base64.getDecoder().decode(accountInfo.dataBase64());
|
|
||||||
|
|
||||||
if (data.length < CUSTODY_OFFSET + PUBLIC_KEY_LENGTH) {
|
|
||||||
throw new IllegalArgumentException(
|
|
||||||
"Jupiter Perps position account data is too short: " + data.length
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return readPublicKey(
|
|
||||||
data,
|
|
||||||
CUSTODY_OFFSET
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
private JupiterPerpsPositionDirection decodeDirection(
|
private JupiterPerpsPositionDirection decodeDirection(
|
||||||
byte rawSide
|
byte rawSide
|
||||||
) {
|
) {
|
||||||
@@ -78,37 +60,22 @@ class AnchorIdlJupiterPerpsPositionDecoder {
|
|||||||
return direction;
|
return direction;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ΩSolanaAddressΩ readPublicKey(
|
|
||||||
byte[] data,
|
|
||||||
int offset
|
|
||||||
) {
|
|
||||||
byte[] publicKeyBytes = new byte[PUBLIC_KEY_LENGTH];
|
|
||||||
|
|
||||||
System.arraycopy(
|
|
||||||
data,
|
|
||||||
offset,
|
|
||||||
publicKeyBytes,
|
|
||||||
0,
|
|
||||||
PUBLIC_KEY_LENGTH
|
|
||||||
);
|
|
||||||
|
|
||||||
return base58.encode(publicKeyBytes);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final int ANCHOR_DISCRIMINATOR_LENGTH = 8;
|
private static final int ANCHOR_DISCRIMINATOR_LENGTH = 8;
|
||||||
private static final int PUBLIC_KEY_LENGTH = 32;
|
private static final int PUBLIC_KEY_LENGTH = 32;
|
||||||
private static final int I64_LENGTH = 8;
|
private static final int I64_LENGTH = 8;
|
||||||
private static final int SIDE_ENUM_LENGTH = 1;
|
|
||||||
private static final int U64_LENGTH = 8;
|
private static final int U64_LENGTH = 8;
|
||||||
|
private static final int SIDE_ENUM_LENGTH = 1;
|
||||||
|
|
||||||
private static final int OWNER_OFFSET = ANCHOR_DISCRIMINATOR_LENGTH;
|
private static final int SIDE_OFFSET =
|
||||||
private static final int POOL_OFFSET = OWNER_OFFSET + PUBLIC_KEY_LENGTH;
|
ANCHOR_DISCRIMINATOR_LENGTH
|
||||||
private static final int CUSTODY_OFFSET = POOL_OFFSET + PUBLIC_KEY_LENGTH;
|
+ PUBLIC_KEY_LENGTH // owner
|
||||||
private static final int COLLATERAL_CUSTODY_OFFSET = CUSTODY_OFFSET + PUBLIC_KEY_LENGTH; // custody
|
+ PUBLIC_KEY_LENGTH // pool
|
||||||
private static final int OPEN_TIME_OFFSET = COLLATERAL_CUSTODY_OFFSET + PUBLIC_KEY_LENGTH;
|
+ PUBLIC_KEY_LENGTH // custody
|
||||||
private static final int UPDATE_TIME_OFFSET = OPEN_TIME_OFFSET + I64_LENGTH; // openTime
|
+ PUBLIC_KEY_LENGTH // collateralCustody
|
||||||
private static final int SIDE_OFFSET = UPDATE_TIME_OFFSET + I64_LENGTH;
|
+ I64_LENGTH // openTime
|
||||||
private static final int PRICE_OFFSET = SIDE_OFFSET + SIDE_ENUM_LENGTH;
|
+ I64_LENGTH; // updateTime
|
||||||
|
|
||||||
private static final Base58Codec base58 = new Base58CodecImpl();
|
private static final int PRICE_OFFSET =
|
||||||
|
SIDE_OFFSET
|
||||||
|
+ SIDE_ENUM_LENGTH; // side
|
||||||
}
|
}
|
||||||
+5
-24
@@ -17,7 +17,6 @@ public class AnchorIdlJupiterPerpsServiceImpl implements JupiterPerpsService {
|
|||||||
) {
|
) {
|
||||||
this.solanaBlockChain = solanaBlockChain;
|
this.solanaBlockChain = solanaBlockChain;
|
||||||
this.positionDecoder = new AnchorIdlJupiterPerpsPositionDecoder();
|
this.positionDecoder = new AnchorIdlJupiterPerpsPositionDecoder();
|
||||||
this.custodyDecoder = new AnchorIdlJupiterPerpsCustodyDecoder();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -35,9 +34,7 @@ public class AnchorIdlJupiterPerpsServiceImpl implements JupiterPerpsService {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
ΩSPLMintAddressΩ tradedTokenMint = getTradedTokenMint(accountInfo);
|
JupiterPerpsPosition pos = positionDecoder.decode(positionAccount, accountInfo);
|
||||||
JupiterPerpsPosition pos = positionDecoder.decode(positionAccount, accountInfo, tradedTokenMint);
|
|
||||||
|
|
||||||
return pos;
|
return pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -64,36 +61,20 @@ public class AnchorIdlJupiterPerpsServiceImpl implements JupiterPerpsService {
|
|||||||
throw new IllegalArgumentException(errorMsg);
|
throw new IllegalArgumentException(errorMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
ΩSPLMintAddressΩ tradedTokenMint = getTradedTokenMint(accountInfo);
|
JupiterPerpsPosition position = positionDecoder.decode(
|
||||||
|
address,
|
||||||
JupiterPerpsPosition position = positionDecoder.decode(address, accountInfo, tradedTokenMint);
|
accountInfo
|
||||||
|
);
|
||||||
positions.add(position);
|
positions.add(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Set.copyOf(positions);
|
return Set.copyOf(positions);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ΩSPLMintAddressΩ getTradedTokenMint(SolanaAccountInfo positionAccountInfo)
|
|
||||||
throws IOException, InterruptedException
|
|
||||||
{
|
|
||||||
ΩSolanaAddressΩ custodyAccount = positionDecoder.decodeCustodyAccount(positionAccountInfo);
|
|
||||||
SolanaAccountInfo custodyAccountInfo = solanaBlockChain.getAccountInfo(custodyAccount);
|
|
||||||
|
|
||||||
if (custodyAccountInfo == null) {
|
|
||||||
throw new IllegalArgumentException(
|
|
||||||
"Jupiter Perps custody account does not exist: " + custodyAccount
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
ΩSPLMintAddressΩ mintAddress = custodyDecoder.decodeMint(custodyAccountInfo);
|
|
||||||
return mintAddress;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final ΩJupiterPerpsProgramIdΩ JUPITER_PERPS_PROGRAM_ID =
|
private static final ΩJupiterPerpsProgramIdΩ JUPITER_PERPS_PROGRAM_ID =
|
||||||
"PERPHjGBqRHArX4DySjwM6UJHiR3sWAatqfdBS2qQJu";
|
"PERPHjGBqRHArX4DySjwM6UJHiR3sWAatqfdBS2qQJu";
|
||||||
private static final int POSITION_OWNER_OFFSET = 8;
|
private static final int POSITION_OWNER_OFFSET = 8;
|
||||||
|
|
||||||
private final SolanaBlockChain solanaBlockChain;
|
private final SolanaBlockChain solanaBlockChain;
|
||||||
private final AnchorIdlJupiterPerpsPositionDecoder positionDecoder;
|
private final AnchorIdlJupiterPerpsPositionDecoder positionDecoder;
|
||||||
private final AnchorIdlJupiterPerpsCustodyDecoder custodyDecoder;
|
|
||||||
}
|
}
|
||||||
@@ -24,10 +24,9 @@ public class Main {
|
|||||||
// TODO: Consider if we really need a Main class or we just need to move the main method to NenjimHubImpl?
|
// TODO: Consider if we really need a Main class or we just need to move the main method to NenjimHubImpl?
|
||||||
static void main(String[] args) throws Exception {
|
static void main(String[] args) throws Exception {
|
||||||
NenjimHubImpl nenjimHub = new NenjimHubImpl();
|
NenjimHubImpl nenjimHub = new NenjimHubImpl();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
SolanaBlockChain sbc = new SolanaBlockChainImpl();
|
SolanaBlockChain sbc = new SolanaBlockChainImpl();
|
||||||
JupiterPerpsService jupiter = new AnchorIdlJupiterPerpsServiceImpl(sbc);
|
JupiterPerpsPositionService jupiter = new AnchorIdlJupiterPerpsPositionServiceImpl(sbc);
|
||||||
ΩSolanaWalletIdΩ walletId = "vj98roDZ7744EBfxyuDFkKpEGCsKQLr7K8UFRumJNHf";
|
ΩSolanaWalletIdΩ walletId = "vj98roDZ7744EBfxyuDFkKpEGCsKQLr7K8UFRumJNHf";
|
||||||
Set<JupiterPerpsPosition> positions = jupiter.getOpenPositions(walletId);
|
Set<JupiterPerpsPosition> positions = jupiter.getOpenPositions(walletId);
|
||||||
int a=0;
|
int a=0;
|
||||||
|
|||||||
Reference in New Issue
Block a user