Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

master -> mainnet #315

Merged
merged 9 commits into from
Dec 12, 2024
8 changes: 7 additions & 1 deletion .github/workflows/deploy-on-sdk-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Setup node
uses: actions/setup-node@v2
Expand All @@ -34,4 +36,8 @@ jobs:
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git add -A
git commit --allow-empty -m "Bumping sdk and jit dependencies to ${{ github.event.client_payload.sdk-version }} and ${{ github.event.client_payload.jit-version }}"
git push

- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GH_PAT }}
1 change: 1 addition & 0 deletions .github/workflows/mainnet-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: KeeperBots Build Image And Deploy
on:
push:
branches: [mainnet-beta]
workflow_dispatch:

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: KeeperBots Build Image And Deploy
on:
push:
branches: [master]
workflow_dispatch:

jobs:
build:
Expand Down
72 changes: 36 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,51 +5,51 @@
"main": "lib/index.js",
"license": "Apache-2.0",
"dependencies": {
"@drift-labs/jit-proxy": "0.12.3",
"@drift-labs/sdk": "2.104.0-beta.8",
"@opentelemetry/api": "^1.1.0",
"@opentelemetry/auto-instrumentations-node": "^0.31.1",
"@opentelemetry/exporter-prometheus": "^0.31.0",
"@opentelemetry/sdk-node": "^0.31.0",
"@project-serum/anchor": "^0.19.1-beta.1",
"@project-serum/serum": "^0.13.65",
"@pythnetwork/price-service-client": "^1.9.0",
"@drift-labs/jit-proxy": "0.12.7",
"@drift-labs/sdk": "2.104.0-beta.12",
"@opentelemetry/api": "1.7.0",
"@opentelemetry/auto-instrumentations-node": "0.31.2",
"@opentelemetry/exporter-prometheus": "0.31.0",
"@opentelemetry/sdk-node": "0.31.0",
"@project-serum/anchor": "0.19.1-beta.1",
"@project-serum/serum": "0.13.65",
"@pythnetwork/price-service-client": "1.9.0",
"@solana/spl-token": "0.3.7",
"@solana/web3.js": "1.92.3",
"@types/bn.js": "^5.1.0",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.1",
"async": "^3.2.2",
"@types/bn.js": "5.1.5",
"@types/minimist": "1.2.5",
"@types/mocha": "10.0.6",
"async": "3.2.5",
"async-mutex": "0.3.2",
"aws-sdk": "^2.1062.0",
"axios": "^1.7.7",
"commander": "^9.4.0",
"dotenv": "^10.0.0",
"aws-sdk": "2.1511.0",
"axios": "1.7.7",
"commander": "9.5.0",
"dotenv": "10.0.0",
"jito-ts": "4.1.1",
"lru-cache": "^10.2.0",
"minimist": "^1.2.8",
"lru-cache": "10.2.0",
"minimist": "1.2.8",
"rpc-websockets": "7.11.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"tweetnacl": "1.0.3",
"tweetnacl-util": "0.15.1",
"typescript": "4.5.4",
"undici": "^6.19.2",
"winston": "^3.8.1",
"ws": "^8.18.0",
"yaml": "^2.2.1"
"undici": "6.19.2",
"winston": "3.11.0",
"ws": "8.18.0",
"yaml": "2.3.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^4.28.0",
"chai": "^4.3.7",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.4",
"mocha": "^10.2.0",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "4.33.0",
"chai": "4.3.10",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "7.0.4",
"mocha": "10.2.0",
"prettier": "3.0.1",
"ts-node": "^10.9.1"
"ts-node": "10.9.1"
},
"scripts": {
"prepare": "husky install",
Expand Down
Loading