Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
d61d7fe
init work. Sydney compiles and runs. Brooklyn in progress
Sep 7, 2023
0e1b765
update substrate-ibc.git branch to polkadot-v0.9.43
baidang201 Sep 7, 2023
976f86a
update web3 version
baidang201 Sep 8, 2023
e4024a4
fix brooklyn runtime
baidang201 Sep 8, 2023
3ed0146
Update chain_extensions.rs
baidang201 Sep 8, 2023
7f30662
fix brooklyn
baidang201 Sep 8, 2023
ca78ffa
fix sydney mock
baidang201 Sep 8, 2023
e87b040
remove unuser import
baidang201 Sep 8, 2023
217ba76
update beefy_params min_block_delta to 8
baidang201 Sep 12, 2023
dc7ba3a
Remove redundant net_config init
baidang201 Sep 13, 2023
1128db1
fix rpc port parse
baidang201 Sep 15, 2023
b4cb51b
replace from_ref_time to from_parts
baidang201 Sep 15, 2023
9cfc005
update allowlist_forbids_become_validator metadata
baidang201 Sep 15, 2023
8d07a55
fix find_ws_http_url_from_output parse
baidang201 Sep 18, 2023
61558d4
cargo fmt
baidang201 Sep 18, 2023
ef4d50c
Merge branch 'main' into substrate-ibc-0.9.43
baidang201 Sep 18, 2023
ac5a57a
cargo clippy
baidang201 Sep 18, 2023
0544d4b
Update Cargo.lock
baidang201 Sep 18, 2023
b171678
fix lock_api::rwlock::RwLockWriteGuard doesn't implement `std::fmt::D…
baidang201 Sep 19, 2023
d29205e
update substrate-ibc.git source hash
baidang201 Sep 19, 2023
903363a
Do not use hard-coded constants as call weight
obsessed-cake Sep 19, 2023
f8f427e
fixnew_native_or_wasm_executor
baidang201 Sep 20, 2023
686f6cf
remove unuse import
baidang201 Sep 20, 2023
906ba04
Refactor redundant functions get_address_from_caller
baidang201 Sep 20, 2023
8e94c2d
fix cargo clippy
baidang201 Sep 20, 2023
c7765c8
update chainid config (#190)
baidang201 Sep 24, 2023
bcbca01
update examples/cross-vm-communication readme
baidang201 Sep 25, 2023
2c724e9
Update xvm.sol
baidang201 Sep 25, 2023
6fc49f0
update wasm-to-evm xvm_call params
baidang201 Sep 26, 2023
d237ed2
Merge branch 'main' into substrate-ibc-0.9.43
baidang201 Sep 27, 2023
1f91c87
fix merge build error
baidang201 Sep 27, 2023
c56022f
Merge branch 'main' into substrate-ibc-0.9.43
baidang201 Sep 27, 2023
e2bd427
fix ci lint
baidang201 Sep 27, 2023
db0bc4a
Merge branch 'substrate-ibc-0.9.43' of https://github.com/ggxchain/gg…
baidang201 Sep 27, 2023
281d932
Merge branch 'main' into substrate-ibc-0.9.43
akorchyn Oct 4, 2023
c3a757c
Merge branch 'main' into substrate-ibc-0.9.43
baidang201 Oct 6, 2023
82ec431
fix brooklyn load chainId from spec file
baidang201 Oct 9, 2023
0402690
update web3 version
baidang201 Oct 11, 2023
7bd5d51
Test fix and flake clean-up (#198)
akorchyn Oct 13, 2023
4330ea1
Update flake.nix
akorchyn Oct 13, 2023
1887cd3
fixed CI
Oct 16, 2023
eaa5d09
Merge branch 'main' into substrate-ibc-0.9.43
akorchyn Oct 16, 2023
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
6,138 changes: 3,703 additions & 2,435 deletions Cargo.lock

Large diffs are not rendered by default.

260 changes: 129 additions & 131 deletions Cargo.toml

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions flake.lock

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

2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@
LD_LIBRARY_PATH = pkgs.lib.strings.makeLibraryPath [
pkgs.stdenv.cc.cc.lib
pkgs.llvmPackages.libclang.lib
(pkgs.lib.makeLibraryPath [pkgs.openssl])
];
OPENSSL_DIR = "${pkgs.openssl.dev}";
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
PROTOC = "${pkgs.protobuf}/bin/protoc";
ROCKSDB_LIB_DIR = "${pkgs.rocksdb}/lib";
Expand Down
6 changes: 3 additions & 3 deletions node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use clap::Parser;
// Substrate
#[cfg(feature = "brooklyn")]
use fc_db::frontier_database_dir;
use fc_db::kv::frontier_database_dir;
use sc_cli::{ChainSpec, RuntimeVersion, SubstrateCli};
use sc_service::PartialComponents;

Expand Down Expand Up @@ -134,7 +134,7 @@ pub fn run() -> sc_cli::Result<()> {
#[cfg(feature = "brooklyn")]
{
use fc_db::DatabaseSource;
use service::testnet::db_config_dir;
use service::brooklyn::db_config_dir;
// Remove Frontier offchain db
let db_config_dir = db_config_dir(&config);
let frontier_database_config = match config.database {
Expand Down Expand Up @@ -241,7 +241,7 @@ pub fn run() -> sc_cli::Result<()> {
runner.sync_run(|config| {
let PartialComponents { client, other, .. } = service::new_partial(&config, &cli)?;
let frontier_backend = other.2;
cmd.run::<_, runtime::opaque::Block>(client, frontier_backend)
cmd.run::<_, runtime::opaque::Block>(client, frontier_backend.into())
})
}
Some(Subcommand::Version) => {
Expand Down
4 changes: 2 additions & 2 deletions node/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ pub struct FullDeps<C, P, A: sc_transaction_pool::ChainApi> {
pub deny_unsafe: DenyUnsafe,

#[cfg(not(feature = "brooklyn"))]
pub mainnet: crate::service::mainnet::MainNetParams<A>,
pub mainnet: crate::service::sydney::MainNetParams<A>,
#[cfg(feature = "brooklyn")]
pub testnet: crate::service::testnet::TestNetParams<A>,
pub testnet: crate::service::brooklyn::TestNetParams<A>,
/// Manual seal command sink
#[cfg(feature = "manual-seal")]
pub command_sink:
Expand Down
Loading