Skip to content

Commit

Permalink
reset value
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaurello committed Dec 28, 2024
1 parent bba9ef8 commit d000d70
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions examples/mrl-simple/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Mrl, type TransferData } from '@moonbeam-network/mrl';
import {
fantomTestnet,
ftm,
ftmwh,
moonbaseAlpha,
peaqAlphanet,
} from '@moonbeam-network/xcm-config';
Expand Down Expand Up @@ -52,9 +51,9 @@ async function main() {
/**
* Set the source, destination and asset
*/
const source = peaqAlphanet;
const destination = fantomTestnet;
const asset = ftmwh;
const source = fantomTestnet;
const destination = moonbaseAlpha;
const asset = ftm;

/**
* Set the transaction to be automatic or not
Expand All @@ -66,8 +65,7 @@ async function main() {
/**
* Set the tx hash to be redeemed if the transaction is not automatic
*/
const txHashToBeRedeemed: string | undefined =
'0x7918a77b120fedd8b9cf48d4086a4617579929fb92b5c5c44c2d43a840a37592';
const txHashToBeRedeemed: string | undefined = undefined;

if (txHashToBeRedeemed) {
await redeemInEvm(txHashToBeRedeemed, destination);
Expand Down

0 comments on commit d000d70

Please sign in to comment.