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
10 changes: 10 additions & 0 deletions backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog
## [3.1.5] - 2025-03-24
### Fixes
- Added all tokens used in multiTokenPaymaster to have decimals in constants rather than fetching from rpc

## [3.1.4] - 2025-03-19
### Fixes
- Changed all endpoints to be case-insensitive
- Fetch `globalMaximumUsd` value to convert into Number for absolute value
- Improve error handling in deposit apis
Comment on lines +6 to +10
Copy link

Choose a reason for hiding this comment

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

🧹 Nitpick (assertive)

Apply similar markdown spacing improvements here.

Just like the above segment, you can address the same markdown lint warnings (MD022, MD032) by surrounding headings and lists with blank lines. This will keep your changelog consistent and pass lint checks.

🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

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

(MD022, blanks-around-headings)


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

(MD022, blanks-around-headings)


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

(MD022, blanks-around-headings)


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

(MD032, blanks-around-lists)


## [3.1.3] - 2025-03-13
### Fixes
- Fixed Verifying Paymaster execution for undeployed wallets
Expand Down
12 changes: 11 additions & 1 deletion backend/config.json.default
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,17 @@
"MultiTokenPaymasterOracleUsed": "chainlink",
"entryPoint": "0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789"
},
{
{
"chainId": 100,
"bundler": "https://rpc.etherspot.io/v2/100",
"contracts": {
"etherspotPaymasterAddress": ""
},
"thresholdValue": "50",
"MultiTokenPaymasterOracleUsed": "chainlink",
"entryPoint": "0x0000000071727De22E5E9d8BAf0edAc6f37da032"
},
{
"chainId": 114,
"bundler": "https://testnet-rpc.etherspot.io/v1/114",
"contracts": {
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.3",
"version": "3.1.5",
"description": "ARKA - (Albanian for Cashier's case) is the first open source Paymaster as a service software",
"type": "module",
"directories": {
Expand Down
1 change: 1 addition & 0 deletions backend/src/constants/ErrorMessage.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export default {
EMPTY_BODY: 'Body params cannot be empty',
CONTEXT_NOT_ARRAY: 'Context sent is not an array',
INVALID_DATA: 'Invalid data provided',
INVALID_SPONSORSHIP_POLICY: 'Invalid sponsorship policy data',
Expand Down
Loading