feat: add noter bot service for staking score data submission

This commit is contained in:
2026-02-17 01:32:51 +03:00
parent eefae7469d
commit 174bd41d6e
6 changed files with 1380 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install \
@pezkuwi/api@^16.5.36 \
@pezkuwi/keyring@^14.0.25 \
@pezkuwi/util@^14.0.25 \
@pezkuwi/util-crypto@^14.0.25
COPY bot.js ./
CMD ["node", "bot.js"]