Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add missing setup implementation and bump up release version #289

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions contracts/deposit-service/AxelarDepositService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ contract AxelarDepositService is Upgradable, DepositServiceBase, IAxelarDepositS
address public immutable receiverImplementation;
address public immutable refundIssuer;

function _setup(bytes calldata data) internal override {}
ahramy marked this conversation as resolved.
Show resolved Hide resolved

constructor(
address gateway_,
string memory wrappedSymbol_,
Expand Down
2 changes: 2 additions & 0 deletions contracts/gas-service/AxelarGasService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ contract AxelarGasService is InterchainGasEstimation, Upgradable, IAxelarGasServ

address public immutable gasCollector;

function _setup(bytes calldata data) internal override {}
ahramy marked this conversation as resolved.
Show resolved Hide resolved

/**
* @notice Constructs the AxelarGasService contract.
* @param gasCollector_ The address of the gas collector
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axelar-network/axelar-cgp-solidity",
"version": "6.3.1",
"version": "6.4.0",
"description": "EVM Smart Contracts for Axelar Network",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -30,7 +30,7 @@
},
"homepage": "https://github.com/axelarnetwork/axelar-cgp-solidity#readme",
"dependencies": {
"@axelar-network/axelar-gmp-sdk-solidity": "5.8.0"
"@axelar-network/axelar-gmp-sdk-solidity": "5.10.0"
},
"devDependencies": {
"@0xpolygonhermez/zkevm-commonjs": "github:0xpolygonhermez/zkevm-commonjs#v1.0.0",
Expand Down
Loading