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 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
2 changes: 2 additions & 0 deletions contracts/deposit-service/AxelarDepositService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ contract AxelarDepositService is Upgradable, DepositServiceBase, IAxelarDepositS
receiverImplementation = address(new ReceiverImplementation(gateway_, wrappedSymbol_));
}

function _setup(bytes calldata data) internal override {}

// @dev This method is meant to be called directly by user to send native token cross-chain
function sendNative(string calldata destinationChain, string calldata destinationAddress) external payable {
uint256 amount = msg.value;
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 @@ -30,6 +30,8 @@ contract AxelarGasService is InterchainGasEstimation, Upgradable, IAxelarGasServ
gasCollector = gasCollector_;
}

function _setup(bytes calldata data) internal override {}

/**
* @notice Modifier that ensures the caller is the designated 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