-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rename sender -> provider and receiver -> consumer (#503)
Fixes KILTprotocol/ticket#2588, based on top of #502. Won't be reviewed as it is merely a renaming PR. Will merge onto `aa/dip` once #502 gets reviewed and merged.
- Loading branch information
Showing
46 changed files
with
167 additions
and
164 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
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
File renamed without changes.
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
// If you feel like getting in touch with us, you can do so at [email protected] | ||
|
||
use cumulus_primitives_core::ParaId; | ||
use dip_receiver_runtime_template::{ | ||
use dip_consumer_runtime_template::{ | ||
AccountId, AuraId, BalancesConfig, CollatorSelectionConfig, GenesisConfig, ParachainInfoConfig, SessionConfig, | ||
SessionKeys, Signature, SudoConfig, SystemConfig, EXISTENTIAL_DEPOSIT, SS58_PREFIX, WASM_BINARY, | ||
}; | ||
|
@@ -111,8 +111,8 @@ pub fn development_config() -> ChainSpec { | |
properties.insert("ss58Format".into(), SS58_PREFIX.into()); | ||
|
||
ChainSpec::from_genesis( | ||
"DIP receiver dev", | ||
"dip-receiver-dev", | ||
"DIP consumer dev", | ||
"dip-consumer-dev", | ||
ChainType::Development, | ||
move || { | ||
testnet_genesis( | ||
|
@@ -133,7 +133,7 @@ pub fn development_config() -> ChainSpec { | |
}, | ||
Vec::new(), | ||
None, | ||
"dip-receiver-dev".into(), | ||
"dip-consumer-dev".into(), | ||
None, | ||
None, | ||
Extensions { | ||
|
File renamed without changes.
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
// If you feel like getting in touch with us, you can do so at [email protected] | ||
|
||
//! KILT Decentralized Identity Provider (DIP) sender CLI. | ||
//! KILT Decentralized Identity Provider (DIP) consumer CLI. | ||
|
||
#![warn(missing_docs)] | ||
|
||
|
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
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
File renamed without changes.
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
// If you feel like getting in touch with us, you can do so at [email protected] | ||
|
||
use cumulus_primitives_core::ParaId; | ||
use dip_sender_runtime_template::{ | ||
use dip_provider_runtime_template::{ | ||
AccountId, AuraId, BalancesConfig, CollatorSelectionConfig, GenesisConfig, ParachainInfoConfig, SessionConfig, | ||
SessionKeys, Signature, SudoConfig, SystemConfig, EXISTENTIAL_DEPOSIT, SS58_PREFIX, WASM_BINARY, | ||
}; | ||
|
@@ -110,8 +110,8 @@ pub fn development_config() -> ChainSpec { | |
properties.insert("ss58Format".into(), SS58_PREFIX.into()); | ||
|
||
ChainSpec::from_genesis( | ||
"DIP sender dev", | ||
"dip-sender-dev", | ||
"DIP provider dev", | ||
"dip-provider-dev", | ||
ChainType::Development, | ||
move || { | ||
testnet_genesis( | ||
|
@@ -132,7 +132,7 @@ pub fn development_config() -> ChainSpec { | |
}, | ||
Vec::new(), | ||
None, | ||
"dip-sender-dev".into(), | ||
"dip-provider-dev".into(), | ||
None, | ||
None, | ||
Extensions { | ||
|
File renamed without changes.
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
// If you feel like getting in touch with us, you can do so at [email protected] | ||
|
||
//! KILT Decentralized Identity Provider (DIP) receiver CLI. | ||
//! KILT Decentralized Identity Provider (DIP) Provider CLI. | ||
|
||
#![warn(missing_docs)] | ||
|
||
|
Oops, something went wrong.