Skip to content

Commit

Permalink
docs: the contract size of OwnableIBCHandler is too large
Browse files Browse the repository at this point in the history
IBC contract (approximately 41k) exceeds Ethereum's hard cap 26k on contract size.
  • Loading branch information
Flouse authored Dec 5, 2023
1 parent f204141 commit eea460f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions migrations/1_deploy_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ module.exports = async function (deployer, network) {
let IBCHandler = undefined;

if (network == "axon") {
// The contract size of OwnableIBCHandler is too large to deploy on a normal EVM chain.
// see https://github.com/synapseweb3/ibc-solidity-contract/issues/9
IBCHandler = artifacts.require("OwnableIBCHandler");

} else {
Expand Down

0 comments on commit eea460f

Please sign in to comment.