forked from paritytech/substrate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/withdraw rpc (paritytech#270)
* FIx extracter panic * Change rpc 'chainx_getAddressByAccount' * Add chainx_getDepositList * Add withdraw_list * Update wasm * Update btc header info * Flow substrate-rpc * Fix build error * Add 'state_getKeys' rpc * Delete old bind * Add withdrawal id in result Fix rebind bug * Refine a bit * Fix sign error * Update wasm Modify test
- Loading branch information
1 parent
1b3aa62
commit 286c401
Showing
26 changed files
with
923 additions
and
648 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
extern crate vergen; | ||
|
||
use vergen::{ConstantsFlags, generate_cargo_keys}; | ||
use vergen::{generate_cargo_keys, ConstantsFlags}; | ||
|
||
const ERROR_MSG: &'static str = "Failed to generate metadata files"; | ||
|
||
fn main() { | ||
generate_cargo_keys(ConstantsFlags::all()).expect(ERROR_MSG); | ||
println!("cargo:rerun-if-changed=.git/HEAD"); | ||
generate_cargo_keys(ConstantsFlags::all()).expect(ERROR_MSG); | ||
println!("cargo:rerun-if-changed=.git/HEAD"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ version = "0.1.0" | |
authors = ["Parity Technologies <[email protected]>"] | ||
|
||
[dependencies] | ||
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git" } | ||
jsonrpc-pubsub = { git = "https://github.com/paritytech/jsonrpc.git" } | ||
jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc.git" } | ||
jsonrpc-http-server = "10.0.1" | ||
jsonrpc-pubsub = "10.0.1" | ||
jsonrpc-ws-server = "10.0.1" | ||
log = "0.4" | ||
serde = "1.0" | ||
substrate-rpc = { path = "../rpc", version = "0.1" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ authors = ["Parity Technologies <[email protected]>"] | |
|
||
[dependencies] | ||
error-chain = "0.12" | ||
jsonrpc-core = { git="https://github.com/paritytech/jsonrpc.git" } | ||
jsonrpc-macros = { git="https://github.com/paritytech/jsonrpc.git" } | ||
jsonrpc-pubsub = { git="https://github.com/paritytech/jsonrpc.git" } | ||
jsonrpc-core = "10.0.1" | ||
jsonrpc-pubsub = "10.0.1" | ||
jsonrpc-derive = "10.0.1" | ||
log = "0.4" | ||
parking_lot = "0.4" | ||
parity-codec = "3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.