Skip to content

Commit

Permalink
Chore/bump sdk (#293)
Browse files Browse the repository at this point in the history
* chore: bump axelarjs-sdk version

* docs(changeset): bump axelarjs-sdk version to 0.15.0-alpha.5
  • Loading branch information
canhtrinh authored Mar 20, 2024
1 parent ea8ab3b commit 8e01374
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .changeset/thin-moons-accept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@axelarjs/maestro": patch
---

bump axelarjs-sdk version to 0.15.0-alpha.5
2 changes: 1 addition & 1 deletion apps/maestro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"release": "tsx scripts/release.ts"
},
"dependencies": {
"@axelar-network/axelarjs-sdk": "^0.14.2",
"@axelar-network/axelarjs-sdk": "0.15.0-alpha.5",
"@axelarjs/api": "workspace:*",
"@axelarjs/core": "workspace:*",
"@axelarjs/evm": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const getERC20TokenBalanceForOwner = publicProcedure
if (!chainConfig) {
throw new TRPCError({
code: "BAD_REQUEST",
message: "Invalid chainId",
message: `Invalid chainId: ${input.chainId}`,
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const getERC20TokenDetails = publicProcedure

throw new TRPCError({
code: "BAD_REQUEST",
message: "Invalid chainId",
message: `Invalid chainId: ${input.chainId}`,
});
}

Expand Down
2 changes: 1 addition & 1 deletion apps/maestro/src/services/axelarjsSDK/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ async function estimateGasFee(params: EstimateGasFeeInput): Promise<bigint> {
const response = await client.estimateGasFee(
params.sourceChainId,
params.destinationChainId,
params.sourceChainTokenSymbol,
params.gasLimit,
params.gasMultiplier,
params.sourceChainTokenSymbol,
params.minGasPrice
);

Expand Down
23 changes: 17 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8e01374

Please sign in to comment.