Skip to content
Draft
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
5 changes: 4 additions & 1 deletion contracts/examples/adder/interactor/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# chain_type = 'simulator'
# gateway_uri = 'http://localhost:8085'

# chain_type = 'real'
# gateway_uri = 'https://devnet-gateway.multiversx.com'

chain_type = 'real'
gateway_uri = 'https://devnet-gateway.multiversx.com'
gateway_uri = 'https://gateway.demo.buidly.com'

5 changes: 4 additions & 1 deletion sdk/core/src/data/network_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
pub data: Option<NetworkConfigData>,
}

fn default_hrp() -> String {

Check warning on line 51 in sdk/core/src/data/network_config.rs

View workflow job for this annotation

GitHub Actions / cargo fmt

Diff in /home/runner/work/mx-sdk-rs/mx-sdk-rs/sdk/core/src/data/network_config.rs
"erd".to_string()
// "erd".to_string()

// TEMP: either wait for network config to be fixed, or override some place else
"one".to_string()
}
Loading