feat: 添加 Lighter 签名桥接和公钥派生脚本,支持新的签名库和环境检测功能

This commit is contained in:
discountry
2025-10-01 18:32:02 +08:00
parent c8b0ab1c8e
commit 4c4abb3b09
10 changed files with 665 additions and 253 deletions
+2
View File
@@ -60,6 +60,8 @@ export class HttpNonceManager implements LighterNonceManager {
async refresh(apiKeyIndex: number): Promise<void> {
const nonce = await this.http.getNextNonce(this.accountIndex, apiKeyIndex);
// eslint-disable-next-line no-console
console.debug("[LighterNonceManager] refresh", { apiKeyIndex, nonce: nonce.toString() });
this.slots.set(apiKeyIndex, { apiKeyIndex, next: nonce, lastIssued: null });
}