Skip to content
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: 1 addition & 1 deletion charts/sequencer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.15.4
version: 0.15.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
1 change: 1 addition & 0 deletions charts/sequencer/files/cometbft/config/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"sequence_byte_cost_multiplier": 1,
"init_bridge_account_base_fee": 48,
"bridge_lock_byte_cost_multiplier": 1,
"bridge_sudo_change_fee": 24,
"ics20_withdrawal_base_fee": 24
},
"allowed_fee_assets": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ fn event_to_bridge_unlock(
))?,
memo: serde_json::to_vec(&memo).wrap_err("failed to serialize memo to json")?,
fee_asset_id,
bridge_address: None,
};

Ok(Action::BridgeUnlock(action))
Expand Down Expand Up @@ -179,6 +180,7 @@ fn event_to_ics20_withdrawal(
source_channel: channel
.parse()
.wrap_err("failed to parse channel from denom")?,
bridge_address: None,
};
Ok(Action::Ics20Withdrawal(action))
}
Expand Down Expand Up @@ -227,6 +229,7 @@ mod tests {
})
.unwrap(),
fee_asset_id: denom.id(),
bridge_address: None,
};

assert_eq!(action, expected_action);
Expand Down Expand Up @@ -263,6 +266,7 @@ mod tests {
})
.unwrap(),
fee_asset_id: denom.id(),
bridge_address: None,
};

assert_eq!(action, expected_action);
Expand Down Expand Up @@ -311,6 +315,7 @@ mod tests {
timeout_height: IbcHeight::new(u64::MAX, u64::MAX).unwrap(),
timeout_time: 0, // zero this for testing
source_channel: "channel-0".parse().unwrap(),
bridge_address: None,
};
assert_eq!(action, expected_action);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ fn make_ics20_withdrawal_action() -> Action {
timeout_height: IbcHeight::new(u64::MAX, u64::MAX).unwrap(),
timeout_time: 0, // zero this for testing
source_channel: "channel-0".parse().unwrap(),
bridge_address: None,
};

Action::Ics20Withdrawal(inner)
Expand All @@ -258,6 +259,7 @@ fn make_bridge_unlock_action() -> Action {
})
.unwrap(),
fee_asset_id: denom.id(),
bridge_address: None,
};
Action::BridgeUnlock(inner)
}
Expand Down
2 changes: 2 additions & 0 deletions crates/astria-cli/src/commands/sequencer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ pub(crate) async fn init_bridge_account(args: &InitBridgeAccountArgs) -> eyre::R
rollup_id,
asset_id: default_native_asset_id(),
fee_asset_id: default_native_asset_id(),
sudo_address: None,
withdrawer_address: None,
}),
)
.await
Expand Down

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

Loading