Skip to content

Commit 40ad961

Browse files
committed
release v2.0.0
1 parent 1368f84 commit 40ad961

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+11618
-2834
lines changed

.gitmodules

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[submodule "side"]
2-
path = side
3-
url = https://github.com/sideprotocol/side.git
4-
branch = lending
1+
[submodule "bitway"]
2+
path = bitway
3+
url = https://github.com/bitwaylabs/bitway.git
4+
branch = release/v2.0.x

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
resolver = "2"
33
members = [
44
"proto-build",
5-
"side-proto",
5+
"bitway-proto",
66
]
77

88
[workspace.dependencies]

bitway

Submodule bitway added at 0c84fd5

side-proto/Cargo.toml renamed to bitway-proto/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
2-
name = "side-proto"
3-
version = "2.0.0-alpha.18"
2+
name = "bitway-proto"
3+
version = "2.0.0"
44
edition = "2021"
5-
description = "Rust Client for Side Chain"
5+
description = "Rust Client for Bitway Chain"
66
readme = "README.md"
7-
repository = "https://github.com/sideprotocol/side-rust"
7+
repository = "https://github.com/bitwaylabs/bitway-rust"
88
license = "MIT OR Apache-2.0"
99

1010
[dependencies]

bitway-proto/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Bitway Rust Client

side-proto/src/lib.rs renamed to bitway-proto/src/lib.rs

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,28 @@ pub use tendermint_proto::google::protobuf::{Any, Timestamp};
2222
pub use cosmos_sdk_proto::cosmos;
2323

2424
/// The version (commit hash) of the Cosmos SDK used when generating this library.
25-
pub const VERSION: &str = include_str!("prost/side/GIT_COMMIT");
25+
pub const VERSION: &str = include_str!("prost/bitway/GIT_COMMIT");
2626

27-
pub mod side {
27+
pub mod bitway {
2828
pub mod btcbridge {
29-
include!("prost/side/side.btcbridge.rs");
29+
include!("prost/bitway/bitway.btcbridge.rs");
3030
}
3131
pub mod liquidation {
32-
include!("prost/side/side.liquidation.rs");
32+
include!("prost/bitway/bitway.liquidation.rs");
3333
}
3434
pub mod dlc {
35-
include!("prost/side/side.dlc.rs");
35+
include!("prost/bitway/bitway.dlc.rs");
3636
}
3737
pub mod lending {
38-
include!("prost/side/side.lending.rs");
38+
include!("prost/bitway/bitway.lending.rs");
3939
}
4040
pub mod oracle {
41-
include!("prost/side/side.oracle.rs");
41+
include!("prost/bitway/bitway.oracle.rs");
4242
}
4343
pub mod tss {
44-
include!("prost/side/side.tss.rs");
44+
include!("prost/bitway/bitway.tss.rs");
45+
}
46+
pub mod farming {
47+
include!("prost/bitway/bitway.farming.rs");
4548
}
4649
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)