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

[katana] cli #1248

Merged
merged 1 commit into from
Dec 8, 2023
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 crates/katana/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub struct KatanaArgs {
#[arg(help = "Configure the messaging with an other chain.")]
#[arg(long_help = "Configure the messaging to allow Katana listening/sending messages on a \
settlement chain that can be Ethereum or an other Starknet sequencer. \
The configuration file details and examples can be found here: TODO.")]
The configuration file details and examples can be found here: https://book.dojoengine.org/toolchain/katana/reference.html#messaging")]
pub messaging: Option<katana_core::service::messaging::MessagingConfig>,

#[command(flatten)]
Expand Down
6 changes: 3 additions & 3 deletions crates/katana/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
"🚀 JSON-RPC server started: {}",
Style::new().red().apply_to(format!("http://{addr}"))
),
format!("{}", account_class_hash),
format!("{:#064x}", account_class_hash),
);
}
}
Expand Down Expand Up @@ -102,11 +102,11 @@ PREDEPLOYED CONTRACTS

| Contract | Fee Token
| Address | {}
| Class Hash | {}
| Class Hash | {:#064x}

| Contract | Universal Deployer
| Address | {}
| Class Hash | {}
| Class Hash | {:#064x}

| Contract | Account Contract
| Class Hash | {}
Expand Down
Loading