Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## [3.1.2] - 2025-02-28
### Fixes
- Fixed invalid address error on cronJob

Comment on lines +2 to +5
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Changelog entry accurately reflects the bugfix.

The new entry for version 3.1.2 appropriately documents the fix for the invalid address error in the cron job, which aligns with the PR objectives.

Note: There are some markdown linting issues flagged by static analysis regarding blank lines around headings and lists, but these appear to be consistent with the formatting in the rest of the file.

🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

2-2: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Above

(MD022, blanks-around-headings)


2-2: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below

(MD022, blanks-around-headings)


3-3: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Above

(MD022, blanks-around-headings)


3-3: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below

(MD022, blanks-around-headings)


4-4: Lists should be surrounded by blank lines
null

(MD032, blanks-around-lists)

## [3.1.1] - 2025-02-14
### Fixes
- Fixed return type of paymasterVerificationGasLimit
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arka",
"version": "3.1.1",
"version": "3.1.2",
"description": "ARKA - (Albanian for Cashier's case) is the first open source Paymaster as a service software",
"type": "module",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion backend/src/repository/multi-token-paymaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class MultiTokenPaymasterRepository {

async getAllDistinctPaymasterAddrWithChainId(): Promise<MultiTokenPaymaster[]> {
const result = await this.sequelize.models.MultiTokenPaymaster.findAll({
attributes: [[Sequelize.fn('DISTINCT', Sequelize.col('PAYMASTER_ADDRESS')), 'PAYMASTER_ADDRESS'], 'chainId'],
attributes: [[Sequelize.fn('DISTINCT', Sequelize.col('PAYMASTER_ADDRESS')), 'paymasterAddress'], 'chainId'],
});
return result.map(id => id.get() as MultiTokenPaymaster);
}
Expand Down