Skip to content

Commit

Permalink
Merge pull request #309 from G7DAO/fix-tokens-information
Browse files Browse the repository at this point in the history
Fix ethreum deposit token info.
  • Loading branch information
Andrei-Dolgolev authored Jan 22, 2025
2 parents db0a073 + 1c702b5 commit ea1c0cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "protocol-api",
"version": "1.1.0",
"version": "1.1.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion api/src/services/bridge.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export async function getTransactionHistory(chain: string, address: string, limi
block_timestamp AS completionTimestamp,
'0x' || ENCODE(origin_address, 'hex') AS from_address,
'0x' || ENCODE(origin_address, 'hex') AS to_address,
'${bridgeConfig[chain].nativeToken}' AS token,
label_data->'args'->>'burnToken' as token,
true AS isDeposit,
true as isCctp,
block_timestamp
Expand Down

0 comments on commit ea1c0cc

Please sign in to comment.