Skip to content

Commit

Permalink
Merge pull request #346 from balancer/fix-relayer-auth-nonce
Browse files Browse the repository at this point in the history
fix: read signers nonce.
  • Loading branch information
johngrantuk authored Jul 8, 2024
2 parents 7ddbd2e + 6b4672f commit 1877612
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .changeset/chilled-cameras-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@balancer/sdk": patch
---

Relayer auth read signers nonce.
4 changes: 1 addition & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: ${{ matrix.pnpm-version }}
- uses: pnpm/action-setup@v4.0.0
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
strategy:
matrix:
node-version: [18]
pnpm-version: [8]
steps:
- uses: actions/checkout@v3
- name: Setup
Expand All @@ -22,7 +21,6 @@ jobs:
strategy:
matrix:
node-version: [18]
pnpm-version: [8]
steps:
- uses: actions/checkout@v3
- name: Setup
Expand All @@ -36,7 +34,6 @@ jobs:
strategy:
matrix:
node-version: [18]
pnpm-version: [8]
steps:
- uses: actions/checkout@v3
- name: Setup
Expand All @@ -57,7 +54,6 @@ jobs:
strategy:
matrix:
node-version: [18]
pnpm-version: [8]
steps:
- uses: actions/checkout@v3
- name: Setup
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
strategy:
matrix:
node-version: [18]
pnpm-version: [8]
timeout-minutes: 5

steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.2.0"
},
"packageManager": "^pnpm@8.6.0",
"packageManager": "pnpm@^8.6.0",
"engines": {
"node": ">=18.x"
}
Expand Down
2 changes: 1 addition & 1 deletion src/entities/relayer/authorization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class RelayerAuthorization {
abi: vaultV2Abi,
address: verifyingContract,
functionName: 'getNextNonce',
args: [allowedSender],
args: [signerAddress],
});
}

Expand Down

0 comments on commit 1877612

Please sign in to comment.