Skip to content

Commit

Permalink
added operator env
Browse files Browse the repository at this point in the history
  • Loading branch information
Krishnakumarskr committed Mar 27, 2024
1 parent 744eba9 commit 07a8a72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci-dev-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
ETHERS_PROVIDER_URLS: ${{ secrets.SDK_ETHERS_PROVIDER_URLS }}
SLACK_TOKEN: ${{ secrets.SDK_SLACK_TOKEN }}
WSS_PROVIDER_URLS: ${{ secrets.SDK_WSS_PROVIDER_URLS }}
OPERATOR_ADDRESS: ${{ secrets.SDK_OPERATOR_ADDRESS }}
APP_PORT: 3001
APP_VERSION: 0.0.1000

Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ services:
ETHERS_PROVIDER_URLS: ${ETHERS_PROVIDER_URLS}
WSS_PROVIDER_URLS: ${WSS_PROVIDER_URLS}
SLACK_TOKEN: ${SLACK_TOKEN}
OPERATOR_ADDRESS: ${OPERATOR_ADDRESS}

# depends_on:
# - supabase
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/tests/multi-user-upside-deposit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ test.describe('Multi user Interaction - Upside', async () => {
});

await test.step('Get all vaults and filter upside', async () => {
const vaults = await sdkA.getAllVaults();
const vaults = await sdkA.getAllVaults();
const totalVaults = vaults.data.length;

expect(totalVaults).toBeGreaterThan(0);
Expand Down

0 comments on commit 07a8a72

Please sign in to comment.