difftreelog
feat custom rpc
in: master
7 files changed
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,6 +3,7 @@
members = [
'node/*',
'pallets/*',
+ 'client/*',
'primitives/*',
'runtime',
'crates/*',
client/rpc/Cargo.tomldiffbeforeafterboth--- /dev/null
+++ b/client/rpc/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = "uc-rpc"
+version = "0.1.0"
+edition = "2018"
+
+[dependencies]
+pallet-common = { default-features = false, path = '../../pallets/common' }
+nft-data-structs = { default-features = false, path = '../../primitives/nft' }
+up-rpc = { path = "../../primitives/rpc" }
+codec = { package = "parity-scale-codec", version = "2.0.0" }
+jsonrpc-core = "15.1.0"
+jsonrpc-core-client = "15.1.0"
+jsonrpc-derive = "15.1.0"
+
+sp-api = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
+sp-blockchain = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
+sp-core = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
+sp-rpc = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
+sp-runtime = { default-features = false, version = '4.0.0-dev', git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
client/rpc/src/lib.rsdiffbeforeafterboth--- /dev/null
+++ b/client/rpc/src/lib.rs
@@ -0,0 +1,141 @@
+use std::sync::Arc;
+
+use jsonrpc_core::{Error as RpcError, ErrorCode, Result};
+use jsonrpc_derive::rpc;
+use nft_data_structs::{CollectionId, TokenId};
+use sp_api::{BlockId, BlockT, ProvideRuntimeApi};
+use sp_blockchain::HeaderBackend;
+use up_rpc::NftApi as NftRuntimeApi;
+
+#[rpc]
+pub trait NftApi<BlockHash, CrossAccountId, AccountId> {
+ #[rpc(name = "nft_accountTokens")]
+ fn account_tokens(
+ &self,
+ collection: CollectionId,
+ account: CrossAccountId,
+ at: Option<BlockHash>,
+ ) -> Result<Vec<TokenId>>;
+ #[rpc(name = "nft_tokenExists")]
+ fn token_exists(
+ &self,
+ collection: CollectionId,
+ token: TokenId,
+ at: Option<BlockHash>,
+ ) -> Result<bool>;
+
+ #[rpc(name = "nft_tokenOwner")]
+ fn token_owner(
+ &self,
+ collection: CollectionId,
+ token: TokenId,
+ at: Option<BlockHash>,
+ ) -> Result<CrossAccountId>;
+ #[rpc(name = "nft_constMetadata")]
+ fn const_metadata(
+ &self,
+ collection: CollectionId,
+ token: TokenId,
+ at: Option<BlockHash>,
+ ) -> Result<Vec<u8>>;
+ #[rpc(name = "nft_variableMetadata")]
+ fn variable_metadata(
+ &self,
+ collection: CollectionId,
+ token: TokenId,
+ at: Option<BlockHash>,
+ ) -> Result<Vec<u8>>;
+
+ #[rpc(name = "nft_collectionTokens")]
+ fn collection_tokens(&self, collection: CollectionId, at: Option<BlockHash>) -> Result<u32>;
+ #[rpc(name = "nft_accountBalance")]
+ fn account_balance(
+ &self,
+ collection: CollectionId,
+ account: CrossAccountId,
+ at: Option<BlockHash>,
+ ) -> Result<u32>;
+ #[rpc(name = "nft_balance")]
+ fn balance(
+ &self,
+ collection: CollectionId,
+ account: CrossAccountId,
+ token: TokenId,
+ at: Option<BlockHash>,
+ ) -> Result<u128>;
+ #[rpc(name = "nft_allowance")]
+ fn allowance(
+ &self,
+ collection: CollectionId,
+ sender: CrossAccountId,
+ spender: CrossAccountId,
+ token: TokenId,
+ at: Option<BlockHash>,
+ ) -> Result<u128>;
+}
+
+pub struct Nft<C, P> {
+ client: Arc<C>,
+ _marker: std::marker::PhantomData<P>,
+}
+
+impl<C, P> Nft<C, P> {
+ pub fn new(client: Arc<C>) -> Self {
+ Self {
+ client,
+ _marker: Default::default(),
+ }
+ }
+}
+
+pub enum Error {
+ RuntimeError,
+}
+
+impl From<Error> for i64 {
+ fn from(e: Error) -> i64 {
+ match e {
+ Error::RuntimeError => 1,
+ }
+ }
+}
+
+macro_rules! pass_method {
+ ($method_name:ident($($name:ident: $ty:ty),* $(,)?) -> $result:ty) => {
+ fn $method_name(
+ &self,
+ $(
+ $name: $ty,
+ )*
+ at: Option<<Block as BlockT>::Hash>,
+ ) -> Result<$result> {
+ let api = self.client.runtime_api();
+ let at = BlockId::hash(at.unwrap_or_else(|| self.client.info().best_hash));
+
+ api.$method_name(&at, $($name),*).map_err(|e| RpcError {
+ code: ErrorCode::ServerError(Error::RuntimeError.into()),
+ message: "Unable to query".into(),
+ data: Some(format!("{:?}", e).into()),
+ })
+ }
+ };
+}
+
+impl<C, Block, CrossAccountId, AccountId> NftApi<<Block as BlockT>::Hash, CrossAccountId, AccountId>
+ for Nft<C, Block>
+where
+ Block: BlockT,
+ C: 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
+ C::Api: NftRuntimeApi<Block, CrossAccountId, AccountId>,
+ CrossAccountId: pallet_common::account::CrossAccountId<AccountId>,
+{
+ pass_method!(account_tokens(collection: CollectionId, account: CrossAccountId) -> Vec<TokenId>);
+ pass_method!(token_exists(collection: CollectionId, token: TokenId) -> bool);
+ pass_method!(token_owner(collection: CollectionId, token: TokenId) -> CrossAccountId);
+ pass_method!(const_metadata(collection: CollectionId, token: TokenId) -> Vec<u8>);
+ pass_method!(variable_metadata(collection: CollectionId, token: TokenId) -> Vec<u8>);
+ pass_method!(collection_tokens(collection: CollectionId) -> u32);
+ pass_method!(account_balance(collection: CollectionId, account: CrossAccountId) -> u32);
+ pass_method!(balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> u128);
+ pass_method!(allowance(collection: CollectionId, sender: CrossAccountId, spender: CrossAccountId, token: TokenId) -> u128);
+}
node/rpc/Cargo.tomldiffbeforeafterboth--- a/node/rpc/Cargo.toml
+++ b/node/rpc/Cargo.toml
@@ -13,7 +13,7 @@
futures = { version = "0.3.17", features = ["compat"] }
jsonrpc-core = "15.1.0"
jsonrpc-pubsub = "15.1.0"
-# pallet-contracts-rpc = { version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.9' }
+# pallet-contracts-rpc = { version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
pallet-transaction-payment-rpc = { version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
sc-client-api = { version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
@@ -49,6 +49,8 @@
fc-mapping-sync = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.10" }
pallet-nft = { path = "../../pallets/nft" }
+uc-rpc = { path = "../../client/rpc" }
+up-rpc = { path = "../../primitives/rpc" }
nft-runtime = { path = "../../runtime" }
[features]
node/rpc/src/lib.rsdiffbeforeafterboth1use nft_runtime::{Hash, AccountId, Index, opaque::Block, BlockNumber, Balance};1use nft_runtime::{AccountId, Balance, BlockNumber, CrossAccountId, Hash, Index, opaque::Block};2use fc_rpc::{OverrideHandle, RuntimeApiStorageOverride, SchemaV1Override, StorageOverride};2use fc_rpc::{OverrideHandle, RuntimeApiStorageOverride, SchemaV1Override, StorageOverride};3use fc_rpc_core::types::{FilterPool, PendingTransactions};3use fc_rpc_core::types::{FilterPool, PendingTransactions};4use jsonrpc_pubsub::manager::SubscriptionManager;4use jsonrpc_pubsub::manager::SubscriptionManager;7 backend::{AuxStore, StorageProvider},7 backend::{AuxStore, StorageProvider},8 client::BlockchainEvents,8 client::BlockchainEvents,9};9};10use pallet_nft::NftApi;11use sc_finality_grandpa::{10use sc_finality_grandpa::{12 FinalityProofProvider, GrandpaJustificationStream, SharedAuthoritySet, SharedVoterState,11 FinalityProofProvider, GrandpaJustificationStream, SharedAuthoritySet, SharedVoterState,13};12};98where97where99 Block: sp_api::BlockT,98 Block: sp_api::BlockT,100 C: ProvideRuntimeApi<Block>,99 C: ProvideRuntimeApi<Block>,101 C::Api: pallet_nft::NftApi<Block>,100 C::Api: up_rpc::NftApi<Block, CrossAccountId, AccountId>,102{101{103 fn code(&self, block: &sp_api::BlockId<Block>, account: sp_core::H160) -> Option<Vec<u8>> {102 fn code(&self, block: &sp_api::BlockId<Block>, account: sp_core::H160) -> Option<Vec<u8>> {103 use up_rpc::NftApi;104 self.client104 self.client105 .runtime_api()105 .runtime_api()106 .eth_contract_code(block, account)106 .eth_contract_code(block, account)124 // C::Api: pallet_contracts_rpc::ContractsRuntimeApi<Block, AccountId, Balance, BlockNumber, Hash>,124 // C::Api: pallet_contracts_rpc::ContractsRuntimeApi<Block, AccountId, Balance, BlockNumber, Hash>,125 C::Api: pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi<Block, Balance>,125 C::Api: pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi<Block, Balance>,126 C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,126 C::Api: fp_rpc::EthereumRuntimeRPCApi<Block>,127 C::Api: pallet_nft::NftApi<Block>,127 C::Api: up_rpc::NftApi<Block, CrossAccountId, AccountId>,128 P: TransactionPool<Block = Block> + 'static,128 P: TransactionPool<Block = Block> + 'static,129 SC: SelectChain<Block> + 'static,129 SC: SelectChain<Block> + 'static,130 B: sc_client_api::Backend<Block> + Send + Sync + 'static,130 B: sc_client_api::Backend<Block> + Send + Sync + 'static,135 EthPubSubApiServer, EthSigner, HexEncodedIdProvider, NetApi, NetApiServer, Web3Api,135 EthPubSubApiServer, EthSigner, HexEncodedIdProvider, NetApi, NetApiServer, Web3Api,136 Web3ApiServer,136 Web3ApiServer,137 };137 };138 use uc_rpc::{NftApi, Nft};138 // use pallet_contracts_rpc::{Contracts, ContractsApi};139 // use pallet_contracts_rpc::{Contracts, ContractsApi};139 use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi};140 use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi};140 use substrate_frame_rpc_system::{FullSystem, SystemApi};141 use substrate_frame_rpc_system::{FullSystem, SystemApi};196 is_authority,197 is_authority,197 max_past_logs,198 max_past_logs,198 )));199 )));200 io.extend_with(NftApi::to_delegate(Nft::new(client.clone())));199201200 if let Some(filter_pool) = filter_pool {202 if let Some(filter_pool) = filter_pool {201 io.extend_with(EthFilterApiServer::to_delegate(EthFilterApi::new(203 io.extend_with(EthFilterApiServer::to_delegate(EthFilterApi::new(primitives/rpc/Cargo.tomldiffbeforeafterboth--- /dev/null
+++ b/primitives/rpc/Cargo.toml
@@ -0,0 +1,25 @@
+[package]
+name = "up-rpc"
+version = "0.1.0"
+edition = "2018"
+
+[dependencies]
+pallet-common = { default-features = false, path = '../../pallets/common' }
+nft-data-structs = { default-features = false, path = '../nft' }
+codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
+sp-core = { default-features = false, version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
+sp-std = { default-features = false, version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
+sp-api = { default-features = false, version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
+sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }
+
+[features]
+default = ["std"]
+std = [
+ "codec/std",
+ "sp-core/std",
+ "sp-std/std",
+ "sp-api/std",
+ "sp-runtime/std",
+ "pallet-common/std",
+ "nft-data-structs/std",
+]
primitives/rpc/src/lib.rsdiffbeforeafterboth--- /dev/null
+++ b/primitives/rpc/src/lib.rs
@@ -0,0 +1,31 @@
+#![cfg_attr(not(feature = "std"), no_std)]
+
+use nft_data_structs::{CollectionId, TokenId};
+use sp_std::vec::Vec;
+use sp_core::H160;
+
+sp_api::decl_runtime_apis! {
+ pub trait NftApi<CrossAccountId, AccountId> where
+ CrossAccountId: pallet_common::account::CrossAccountId<AccountId>,
+ {
+ fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Vec<TokenId>;
+ fn token_exists(collection: CollectionId, token: TokenId) -> bool;
+
+ fn token_owner(collection: CollectionId, token: TokenId) -> CrossAccountId;
+ fn const_metadata(collection: CollectionId, token: TokenId) -> Vec<u8>;
+ fn variable_metadata(collection: CollectionId, token: TokenId) -> Vec<u8>;
+
+ fn collection_tokens(collection: CollectionId) -> u32;
+ fn account_balance(collection: CollectionId, account: CrossAccountId) -> u32;
+ fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> u128;
+ fn allowance(
+ collection: CollectionId,
+ sender: CrossAccountId,
+ spender: CrossAccountId,
+ token: TokenId,
+ ) -> u128;
+
+ /// Used for ethereum integration
+ fn eth_contract_code(account: H160) -> Option<Vec<u8>>;
+ }
+}