difftreelog
Merge branch 'master' into release/quartz-v917000
in: master
2 files changed
README.mddiffbeforeafterboth160location:160location:161 V0(X2(Parent, Parachain(PARA_ID))) 161 V0(X2(Parent, Parachain(PARA_ID))) 162metadata:162metadata:163 name OPL163 name QTZ164 symbol OPL164 symbol QTZ165 decimals 18165 decimals 18166minimalBalance 1166minimalBalance 1167```167```168168169### Next, we can send tokens from Opal to Karura:169### Next, we can send tokens from Quartz to Karura:170```170```171polkadotXcm -> reserveTransferAssets171polkadotXcm -> reserveTransferAssets172dest:172dest:184The result will be displayed in ChainState 184The result will be displayed in ChainState 185tokens -> accounts 185tokens -> accounts 186186187### To send tokens from Karura to Opal:187### To send tokens from Karura to Quartz:188```188```189xtokens -> transfer189xtokens -> transfer190190tests/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) => {