difftreelog
quartz release v916001
in: master
4 files changed
README.mddiffbeforeafterboth--- a/README.md
+++ b/README.md
@@ -160,13 +160,13 @@
location:
V0(X2(Parent, Parachain(PARA_ID)))
metadata:
- name OPL
- symbol OPL
+ name QTZ
+ symbol QTZ
decimals 18
minimalBalance 1
```
-### Next, we can send tokens from Opal to Karura:
+### Next, we can send tokens from Quartz to Karura:
```
polkadotXcm -> reserveTransferAssets
dest:
@@ -184,7 +184,7 @@
The result will be displayed in ChainState
tokens -> accounts
-### To send tokens from Karura to Opal:
+### To send tokens from Karura to Quartz:
```
xtokens -> transfer
node/cli/src/command.rsdiffbeforeafterboth--- a/node/cli/src/command.rs
+++ b/node/cli/src/command.rs
@@ -52,7 +52,7 @@
impl SubstrateCli for Cli {
// TODO use args
fn impl_name() -> String {
- "Opal Node".into()
+ "Quartz Node".into()
}
fn impl_version() -> String {
@@ -61,7 +61,7 @@
// TODO use args
fn description() -> String {
format!(
- "Opal Node\n\nThe command-line arguments provided first will be \
+ "Quartz Node\n\nThe command-line arguments provided first will be \
passed to the parachain node, while the arguments provided after -- will be passed \
to the relaychain node.\n\n\
{} [parachain-args] -- [relaychain-args]",
@@ -94,7 +94,7 @@
impl SubstrateCli for RelayChainCli {
// TODO use args
fn impl_name() -> String {
- "Opal Node".into()
+ "Quartz Node".into()
}
fn impl_version() -> String {
@@ -102,7 +102,7 @@
}
// TODO use args
fn description() -> String {
- "Opal Node\n\nThe command-line arguments provided first will be \
+ "Quartz Node\n\nThe command-line arguments provided first will be \
passed to the parachain node, while the arguments provided after -- will be passed \
to the relaychain node.\n\n\
parachain-collator [parachain-args] -- [relaychain-args]"
runtime/src/lib.rsdiffbeforeafterboth157157158/// This runtime version.158/// This runtime version.159pub const VERSION: RuntimeVersion = RuntimeVersion {159pub const VERSION: RuntimeVersion = RuntimeVersion {160 spec_name: create_runtime_str!("opal"),160 spec_name: create_runtime_str!("quartz"),161 impl_name: create_runtime_str!("opal"),161 impl_name: create_runtime_str!("quartz"),162 authoring_version: 1,162 authoring_version: 1,163 spec_version: 916001,163 spec_version: 916001,164 impl_version: 0,164 impl_version: 0,247 .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)247 .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)248 .build_or_panic();248 .build_or_panic();249 pub const Version: RuntimeVersion = VERSION;249 pub const Version: RuntimeVersion = VERSION;250 pub const SS58Prefix: u8 = 42;250 pub const SS58Prefix: u8 = 255;251}251}252252253parameter_types! {253parameter_types! {tests/src/xcmTransfer.test.tsdiffbeforeafterboth--- a/tests/src/xcmTransfer.test.ts
+++ b/tests/src/xcmTransfer.test.ts
@@ -23,7 +23,7 @@
const KARURA_CHAIN = 2000;
const KARURA_PORT = '9946';
-describe('Integration test: Exchanging OPL with Karura', () => {
+describe('Integration test: Exchanging QTZ with Karura', () => {
let alice: IKeyringPair;
before(async () => {
@@ -49,8 +49,8 @@
const metadata =
{
- name: 'OPL',
- symbol: 'OPL',
+ name: 'QTZ',
+ symbol: 'QTZ',
decimals: 18,
minimalBalance: 1,
};
@@ -63,7 +63,7 @@
}, karuraApiOptions);
});
- it('Should connect and send OPL to Karura', async () => {
+ it('Should connect and send QTZ to Karura', async () => {
let balanceOnKaruraBefore: bigint;
await usingApi(async (api) => {
@@ -130,7 +130,7 @@
}, {provider: new WsProvider('ws://127.0.0.1:' + KARURA_PORT)});
});
- it('Should connect to Karura and send OPL back', async () => {
+ it('Should connect to Karura and send QTZ back', async () => {
let balanceBefore: bigint;
await usingApi(async (api) => {