This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Add an RPC method for calling a contract. #3563
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
cb78662
Sketch
pepyakin 133e1f4
Some work on docs.
pepyakin 5c17c16
Doc improvements.
pepyakin d70268c
More docs.
pepyakin 37e199d
Some more docs.
pepyakin 295bd40
Yet another comment.
pepyakin 6abadd5
Bump impl_version.
pepyakin 060c473
Accept the block hash
pepyakin ced136c
Use NumberOrHex
pepyakin 5526336
Update node/rpc/src/contracts.rs
pepyakin bc197a6
Move rpc/primitives
pepyakin 846c65c
Merge branch 'master' into ser-contracts-rpc-call
pepyakin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| [package] | ||
| name = "substrate-rpc-primitives" | ||
| version = "2.0.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| serde = { version = "1.0", features = ["derive"] } | ||
| primitives = { package = "substrate-primitives", path = "../../primitives" } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| // Copyright 2019 Parity Technologies (UK) Ltd. | ||
| // This file is part of Substrate. | ||
|
|
||
| // Substrate is free software: you can redistribute it and/or modify | ||
| // it under the terms of the GNU General Public License as published by | ||
| // the Free Software Foundation, either version 3 of the License, or | ||
| // (at your option) any later version. | ||
|
|
||
| // Substrate is distributed in the hope that it will be useful, | ||
| // but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| // GNU General Public License for more details. | ||
|
|
||
| // You should have received a copy of the GNU General Public License | ||
| // along with Substrate. If not, see <http://www.gnu.org/licenses/>. | ||
|
|
||
| //! Substrate RPC primitives and utilities. | ||
|
|
||
| #![warn(missing_docs)] | ||
|
|
||
| pub mod number; |
File renamed without changes.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,116 @@ | ||
| // Copyright 2019 Parity Technologies (UK) Ltd. | ||
| // This file is part of Substrate. | ||
|
|
||
| // Substrate is free software: you can redistribute it and/or modify | ||
| // it under the terms of the GNU General Public License as published by | ||
| // the Free Software Foundation, either version 3 of the License, or | ||
| // (at your option) any later version. | ||
|
|
||
| // Substrate is distributed in the hope that it will be useful, | ||
| // but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| // GNU General Public License for more details. | ||
|
|
||
| // You should have received a copy of the GNU General Public License | ||
| // along with Substrate. If not, see <http://www.gnu.org/licenses/>. | ||
|
|
||
| //! Node-specific RPC methods for interaction with contracts. | ||
|
|
||
| use std::sync::Arc; | ||
|
|
||
| use serde::{Serialize, Deserialize}; | ||
| use client::blockchain::HeaderBackend; | ||
| use jsonrpc_core::{Error, ErrorCode, Result}; | ||
| use jsonrpc_derive::rpc; | ||
| use node_primitives::{ | ||
| AccountId, Balance, Block, BlockId, ContractExecResult, ContractsApi as ContractsRuntimeApi, | ||
| }; | ||
| use sr_primitives::traits::{ | ||
| self, | ||
| Block as BlockT, | ||
| }; | ||
| use rpc_primitives::number; | ||
|
|
||
| /// A struct that encodes RPC parameters required for a call to a smart-contract. | ||
| #[derive(Serialize, Deserialize)] | ||
| #[serde(rename_all="camelCase")] | ||
| #[serde(deny_unknown_fields)] | ||
| pub struct CallRequest { | ||
| origin: AccountId, | ||
| dest: AccountId, | ||
| value: Balance, | ||
| gas_limit: number::NumberOrHex<u64>, | ||
| input_data: Vec<u8>, | ||
| } | ||
|
|
||
| /// Contracts RPC methods. | ||
| #[rpc] | ||
| pub trait ContractsApi<BlockHash> { | ||
| /// Executes a call to a contract. | ||
| /// | ||
| /// This call is performed locally without submitting any transactions. Thus executing this | ||
| /// won't change any state. Nonetheless, the calling state-changing contracts is still possible. | ||
| /// | ||
| /// This method is useful for calling getter-like methods on contracts. | ||
| #[rpc(name = "contracts_call")] | ||
| fn call( | ||
| &self, | ||
| call_request: CallRequest, | ||
| at: Option<BlockHash>, | ||
| ) -> Result<ContractExecResult>; | ||
| } | ||
|
|
||
| /// An implementation of contract specific RPC methods. | ||
| pub struct Contracts<C> { | ||
| client: Arc<C>, | ||
| } | ||
|
|
||
| impl<C> Contracts<C> { | ||
| /// Create new `Contracts` with the given reference to the client. | ||
| pub fn new(client: Arc<C>) -> Self { | ||
| Contracts { client } | ||
| } | ||
| } | ||
|
|
||
| impl<C> ContractsApi<<Block as BlockT>::Hash> for Contracts<C> | ||
| where | ||
| C: Send + Sync + 'static, | ||
| C: traits::ProvideRuntimeApi, | ||
| C: HeaderBackend<Block>, | ||
| C::Api: ContractsRuntimeApi<Block>, | ||
| { | ||
| fn call( | ||
| &self, | ||
| call_request: CallRequest, | ||
| at: Option<<Block as BlockT>::Hash>, | ||
| ) -> Result<ContractExecResult> { | ||
| let api = self.client.runtime_api(); | ||
| let at = BlockId::hash(at.unwrap_or_else(|| | ||
| // If the block hash is not supplied assume the best block. | ||
| self.client.info().best_hash | ||
| )); | ||
|
|
||
| let CallRequest { | ||
| origin, | ||
| dest, | ||
| value, | ||
| gas_limit, | ||
| input_data | ||
| } = call_request; | ||
| let gas_limit = gas_limit.to_number().map_err(|e| Error { | ||
| code: ErrorCode::InvalidParams, | ||
| message: e, | ||
| data: None, | ||
| })?; | ||
|
|
||
| let exec_result = api | ||
| .call(&at, origin, dest, value, gas_limit, input_data) | ||
| .map_err(|e| Error { | ||
| code: ErrorCode::ServerError(crate::constants::RUNTIME_ERROR), | ||
| message: "Runtime trapped while executing a contract.".into(), | ||
| data: Some(format!("{:?}", e).into()), | ||
| })?; | ||
|
|
||
| Ok(exec_result) | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.