diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 03536f4b8..5011000e3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -8,22 +8,10 @@ // Append -bullseye or -buster to pin to an OS version. // Use -bullseye variants on local on arm64/Apple Silicon. "args": { - "VARIANT": "16-bullseye" + "VARIANT": "18.16" } }, - // Set *default* container specific settings.json values on container create. - "settings": {}, - - - // Add the IDs of extensions you want installed when the container is created. - "extensions": [ - "dbaeumer.vscode-eslint", - "Orta.vscode-jest", - "firsttris.vscode-jest-runner" - - ], - // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], diff --git a/.vscode/launch.json b/.vscode/launch.json index 655ebc01e..a7b4da5aa 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -35,7 +35,7 @@ "name": "Current TS File", "type": "node", "request": "launch", - "args": ["${relativeFile}" ,"transferAll", "testCaseName=ConcurrentTest", "threadNumber=300", "duration=10", "totalTransactions=3000", "nodes=ws://10.0.0.6:9944" ], + "args": ["${relativeFile}" ,"transferAll", "testCaseName=ConcurrentTest", "threadNumber=300", "duration=10", "totalTransactions=3000", "nodes=ws://10.0.0.6:9944", "--runInBand" ], "runtimeArgs": ["--nolazy", "-r", "ts-node/register"], "sourceMaps": true, "cwd": "${workspaceRoot}", diff --git a/cliTool/index.ts b/cliTool/index.ts index 6a4e3821c..0b5f3cf57 100644 --- a/cliTool/index.ts +++ b/cliTool/index.ts @@ -1,6 +1,9 @@ /* eslint-disable no-console */ /** - * npx ts-node cliTool/index.ts --runInBand + * cd cliTool + * yarn + * npx ts-node index.ts --runInBand + * If you want to define the url ( default is localhost:9946 ) * API_URL="wss://mangata-x.api.onfinality.io/public-ws" npx ts-node ./index.ts --runInBand * or: * node --experimental-specifier-resolution=node --loader ts-node/esm --experimental-vm-modules ./index.ts --runInBand @@ -16,6 +19,16 @@ import { createCustomPool, setupACouncilWithDefaultUsers, vetoMotion, + migrate, + userAggregatesOn, + subscribeAndPrintTokenChanges, + provisionWith100Users, + findAllRewardsAndClaim, + setupTokenWithRewardsForDefaultUsers, + testTokensForUsers, + replaceByStateCall, + burnAllTokensFromPool, + createProposal, } from "../utils/setupsOnTheGo"; import { findErrorMetadata, @@ -28,7 +41,11 @@ import { SudoUser } from "../utils/Framework/User/SudoUser"; import { Keyring } from "@polkadot/api"; import { getApi, initApi } from "../utils/api"; import { User } from "../utils/User"; -import { Mangata } from "@mangata-finance/sdk"; +import { BN_ZERO, Mangata } from "@mangata-finance/sdk"; +import { encodeAddress } from "@polkadot/keyring"; +import { stringToU8a, bnToU8a, u8aConcat, BN } from "@polkadot/util"; +import { Sudo } from "../utils/sudo"; +import { setupApi, setupUsers } from "../utils/setup"; async function app(): Promise { return inquirer @@ -38,6 +55,8 @@ async function app(): Promise { name: "option", choices: [ "Setup rewards with default users", + "Create Proposal", + "Setup a collator with token", "Join as candidate", "Fill with candidates", "Give tokens to user", @@ -54,6 +73,17 @@ async function app(): Promise { "createPool", "createACouncil", "veto", + "migrateData", + "user aggregates with", + "listen token balance changes", + "provisionWith100Users", + "find and claim all rewards", + "Setup token rewards with default users", + "slibing", + "proof crowdloan", + "testTokensForUsers", + "rpc_chops", + "Empty pool created by default users", ], }) .then(async (answers: { option: string | string[] }) => { @@ -62,6 +92,70 @@ async function app(): Promise { const setupData = await setupPoolWithRewardsForDefaultUsers(); console.log("liq Id = " + setupData.liqId); } + if (answers.option.includes("Setup token rewards with default users")) { + await setupTokenWithRewardsForDefaultUsers(); + } + if (answers.option.includes("Empty pool created by default users")) { + return inquirer + .prompt([ + { + type: "input", + name: "liqToken", + message: "default 9", + default: "9", + }, + ]) + .then(async (answers: { liqToken: string }) => { + await burnAllTokensFromPool(new BN(answers.liqToken)); + }); + } + if (answers.option.includes("Setup a collator with token")) { + return inquirer + .prompt([ + { + type: "input", + name: "user", + message: "default //Charlie", + }, + { + type: "input", + name: "liq", + message: "liq id", + }, + { + type: "input", + name: "amount", + message: "amountToJoin", + }, + ]) + .then( + async (answers: { + user: string | undefined; + liq: number | undefined; + amount: string | 0; + }) => { + let liq = new BN(answers.liq!.toString()); + const amount = new BN(answers.amount!.toString()); + if (liq!.eq(BN_ZERO)) { + const setupData = await setupPoolWithRewardsForDefaultUsers(); + console.log("liq Id = " + setupData.liqId); + liq = new BN(setupData.liqId); + } + const node = new Node(getEnvironmentRequiredVars().chainUri); + await node.connect(); + const keyring = new Keyring({ type: "sr25519" }); + const sudo = new SudoUser(keyring, node); + await sudo.addStakingLiquidityToken(liq); + await joinAsCandidate( + answers.user, + liq?.toNumber(), + new BN(amount), + ); + console.log("Done"); + return app(); + }, + ); + } if (answers.option.includes("Join as candidate")) { return inquirer .prompt([ @@ -167,8 +261,9 @@ async function app(): Promise { await api.query.parachainStaking.selectedCandidates(); const keyring = new Keyring({ type: "sr25519" }); const user = new User(keyring, answers.user); - const result = collators.find( - (x) => x.toString() === user.keyRingPair.address, + const result = JSON.parse(JSON.stringify(collators)).find( + (x: { toString: () => string }) => + x.toString() === user.keyRingPair.address, ); console.info(result?.toString()); console.info( @@ -252,7 +347,7 @@ async function app(): Promise { message: "", }, ]) - .then(async (answers) => { + .then(async (answers: { str: unknown }) => { await initApi(); const api = await getApi(); const str = api.createType("Vec", answers.str); @@ -287,14 +382,20 @@ async function app(): Promise { message: "MGX bigger?", }, ]) - .then(async (answers) => { - await initApi(); - const mgaBig = answers.mgaBig === "true"; - const ratio = parseInt(answers.ratio.toString()); - const user = answers.user; - await createCustomPool(mgaBig, ratio, user); - return app(); - }); + .then( + async (answers: { + mgaBig: string; + ratio: { toString: () => string }; + user: any; + }) => { + await initApi(); + const mgaBig = answers.mgaBig === "true"; + const ratio = parseInt(answers.ratio.toString()); + const user = answers.user; + await createCustomPool(mgaBig, ratio, user); + return app(); + }, + ); } if (answers.option.includes("createACouncil")) { await initApi(); @@ -310,7 +411,7 @@ async function app(): Promise { message: "motion_no", }, ]) - .then(async (answers) => { + .then(async (answers: { motion: number }) => { await initApi(); await vetoMotion(answers.motion); return app(); @@ -319,6 +420,105 @@ async function app(): Promise { if (answers.option.includes("Who is offline")) { await printCandidatesNotProducing(); } + if (answers.option.includes("migrateData")) { + await migrate(); + } + if (answers.option.includes("testTokensForUsers")) { + await inquirer + .prompt([ + { + type: "input", + name: "userPath", + message: "//Eve", + }, + ]) + .then(async (answers: { userPath: string }) => { + await testTokensForUsers(answers.userPath); + }); + } + if (answers.option.includes("user aggregates with")) { + return inquirer + .prompt([ + { + type: "input", + name: "userAggregating", + message: "", + }, + { + type: "input", + name: "userWhoDelegates", + message: "", + }, + ]) + .then( + async (answers: { + userAggregating: string; + userWhoDelegates: string; + }) => { + await userAggregatesOn( + answers.userAggregating, + answers.userWhoDelegates, + ); + console.log("Done"); + return app(); + }, + ); + } + if (answers.option.includes("listen token balance changes")) { + await subscribeAndPrintTokenChanges( + getEnvironmentRequiredVars().chainUri, + ); + } + if (answers.option.includes("provisionWith100Users")) { + await provisionWith100Users(); + } + if (answers.option.includes("find and claim all rewards")) { + await findAllRewardsAndClaim(); + } + if (answers.option.includes("Create Proposal")) { + await createProposal(); + } + if (answers.option.includes("slibing")) { + const EMPTY_U8A_32 = new Uint8Array(32); + const ass = encodeAddress( + u8aConcat(stringToU8a("para"), bnToU8a(2110), EMPTY_U8A_32).subarray( + 0, + 32, + ), + ); + console.log(ass); + } + if (answers.option.includes("rpc_chops")) { + await replaceByStateCall(); + } + if (answers.option.includes("proof crowdloan")) { + const keyring = new Keyring({ type: "ed25519" }); + const relayAcc = keyring.addFromMnemonic("//Bob"); + const keyringMga = new Keyring({ type: "sr25519" }); + const accMga = keyringMga.addFromMnemonic("//Bob"); + const message = new Uint8Array([ + ...stringToU8a(""), + ...stringToU8a("mangata-"), + ...accMga.addressRaw, + ...stringToU8a(""), + ]); + await initApi(); + await setupUsers(); + await setupApi(); + const api = await getApi(); + const signature = { + Ed25519: relayAcc.sign(message), + }; + const tx = Sudo.sudo( + api.tx.crowdloan.associateNativeIdentity( + accMga.address, + relayAcc.address, + signature, + ), + ); + await Sudo.batchAsSudoFinalized(tx); + console.log(message.toString()); + } return app(); }); } diff --git a/cliTool/package.json b/cliTool/package.json index 8c4bc124b..58e4303ab 100644 --- a/cliTool/package.json +++ b/cliTool/package.json @@ -12,7 +12,7 @@ "license": "ISC", "dependencies": { "@types/inquirer": "^9.0.3", - "inquirer": "^8.0.0", + "inquirer": "^9.0.0", "ts-node": "^10.9.1", "typescript": "^4.9.5" }, diff --git a/cliTool/reports/testLog.log b/cliTool/reports/testLog.log index f853b0c11..da7896405 100644 --- a/cliTool/reports/testLog.log +++ b/cliTool/reports/testLog.log @@ -318,3 +318,6671 @@ [2023-03-03T14:58:36.100Z] - W[undefined] - [info]: {"applyExtrinsic":2} : tokens.Deposited [0,"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0x00000000000000009125e1388a9cf27f"] [2023-03-03T14:58:36.100Z] - W[undefined] - [info]: {"applyExtrinsic":2} : transactionPayment.TransactionFeePaid ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000009125e1388a9cf27f",0] [2023-03-03T14:58:36.100Z] - W[undefined] - [info]: {"applyExtrinsic":2} : system.ExtrinsicSuccess [{"weight":{"refTime":1070335661,"proofSize":0},"class":"Normal","paysFee":"Yes"}] +[2023-05-10T10:08:41.589Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T10:08:41.729Z] - W[undefined] - [info]: name: //testUser_0425e36a-6e82-4a67-8ba8-977ee6ce489d, address: 5DoYgegwDN3pM47tWpjdnSNEzovWwRN8s8guaKEjrAUtstQE +[2023-05-10T10:08:41.734Z] - W[undefined] - [info]: name: //testUser_89393a83-e328-43ce-bd63-7a3d86caf918, address: 5Gn9csWBULaFtezis9dt6HriCtdDXoi73dmENxKiWZuLCjs3 +[2023-05-10T10:08:41.740Z] - W[undefined] - [info]: name: //testUser_186eaf89-7032-4558-983d-4ebd1f67e052, address: 5HbCdKNarhCW42LF1pngzFJwm3ffihRMJu9pDfaNS185ytjz +[2023-05-10T10:08:41.745Z] - W[undefined] - [info]: name: //testUser_1a614596-037b-4b43-8352-ab234837c1c4, address: 5FL5s3EKLJ5iGsWjgUsGUeyRnJkqdzkmRCZcBkfXeQrSqMyw +[2023-05-10T10:08:41.779Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 0 +[2023-05-10T10:09:12.038Z] - W[undefined] - [info]: [{"event":{"index":"0x0a08","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Withdrawn","metaDocumentation":"[Some balances were withdrawn (e.g. pay for transaction fee)]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0a00","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Endowed","metaDocumentation":"[An account was created with some free balance.]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0a","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0d","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Issued","metaDocumentation":"[A token was issued.]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x3d00","data":[{"ok":null}]},"phase":{"applyExtrinsic":2},"section":"sudo","method":"Sudid","metaDocumentation":"[A sudo just took place. \\[result\\]]","eventData":[{"data":{"ok":null}}],"error":null},{"event":{"index":"0x0a0a","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0b00","data":["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",0,0]},"phase":{"applyExtrinsic":2},"section":"transactionPayment","method":"TransactionFeePaid","metaDocumentation":"[A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,, has been paid by `who`.]","eventData":[{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000000000000000000000"},{"data":"0x00000000000000000000000000000000"}],"error":null},{"event":{"index":"0x0000","data":[{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}]},"phase":{"applyExtrinsic":2},"section":"system","method":"ExtrinsicSuccess","metaDocumentation":"[An extrinsic completed successfully.]","eventData":[{"lookupName":"FrameSupportDispatchDispatchInfo","data":{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}}],"error":null}] +[2023-05-10T10:09:12.080Z] - W[undefined] - [info]: Ready +[2023-05-10T10:09:12.080Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:09:48.029Z] - W[undefined] - [info]: {"inBlock":"0x05aa649d90c7612cb95c3321a4fb630c3743501f9416373f64d1b236c3205904"} +[2023-05-10T10:10:00.049Z] - W[undefined] - [info]: {"inBlock":"0xa94f33dd56bb5f271af7b9c8fb894426dc2ced14a97b8abef4ab154fc8bd9419"} +[2023-05-10T10:10:00.049Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"56,611,936,629,256,965,939"} +[2023-05-10T10:10:00.049Z] - W[undefined] - [info]: mangata -> issuance.TGEFinalized: {} +[2023-05-10T10:10:00.049Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.050Z] - W[undefined] - [info]: mangata -> issuance.IssuanceConfigInitialized: [{"cap":"4,000,000,000,000,000,000,000,000,000","issuanceAtInit":"780,000,000,000,000,023,420,993,536","linearIssuanceBlocks":"13,140,000","liquidityMiningSplit":"55.55%","stakingSplit":"44.44%","totalCrowdloanAllocation":"330,000,000,000,000,000,000,000,000"}] +[2023-05-10T10:10:00.050Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.050Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.050Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.050Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.050Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.051Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.052Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.053Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.053Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.053Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.053Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.053Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.053Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.053Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> assetRegistry.RegisteredAsset: {"assetId":"9","metadata":{"decimals":"18","name":"LiquidityPoolToken0x00000009","symbol":"TKN0x00000000-TKN0x00000008","existentialDeposit":"0","location":null,"additional":{"xcm":null,"xyk":null}}} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> xyk.PoolCreated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:10:00.054Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:00.055Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:10:00.055Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"56,611,936,629,256,965,939"} +[2023-05-10T10:10:00.055Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"56,611,936,629,256,965,939","tip":"0"} +[2023-05-10T10:10:00.055Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"6,081,250,747","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:10:00.084Z] - W[undefined] - [info]: Ready +[2023-05-10T10:10:00.084Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:10:24.025Z] - W[undefined] - [info]: {"inBlock":"0x6cb972ecd460175d7aeed4af5b80adb2582f4d6fc70732e93f2355ff6d1a654b"} +[2023-05-10T10:10:36.038Z] - W[undefined] - [info]: {"inBlock":"0xe674a839cdb1e538a7e475a5678b5043ac377ab578834453d08db2a7f15422fd"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"66,094,972,760,695,187,160"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> proofOfStake.PoolPromotionUpdated: ["9","20"] +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:10:36.039Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:36.040Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.041Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"66,094,972,760,695,187,160"} +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"66,094,972,760,695,187,160","tip":"0"} +[2023-05-10T10:10:36.042Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"7,273,130,023","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:10:36.044Z] - W[undefined] - [info]: #123 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T10:10:48.016Z] - W[undefined] - [info]: #124 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T10:11:00.015Z] - W[undefined] - [info]: #125 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T10:11:12.015Z] - W[undefined] - [info]: #126 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T10:11:24.015Z] - W[undefined] - [info]: #127 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T10:11:36.016Z] - W[undefined] - [info]: #128 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T10:12:04.090Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T10:12:04.099Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 3 +[2023-05-10T10:12:36.050Z] - W[undefined] - [info]: name: //testUser_2fc0f1c9-4db9-4927-8992-2a79a64e9e2b, address: 5D7uA3PekNwtL7jZgJ3zL2GfjMvYYfyxCpKcznN4pZAPnmW4 +[2023-05-10T10:12:36.056Z] - W[undefined] - [info]: name: //testUser_3e4ca658-e6b9-4167-aae8-fbf0f92c98f6, address: 5GLGxix72QreaGCSNEJ8rdQx1gssADiuEkWypqQ9s1AsPn5E +[2023-05-10T10:12:36.062Z] - W[undefined] - [info]: name: //testUser_3e778d36-a51f-46f8-b25d-dfd10a9b7353, address: 5HNgh8Ykxc4AvRrGXS46UDFgHPe4c62LuvAKB7Z4JbAPNC1P +[2023-05-10T10:12:36.068Z] - W[undefined] - [info]: name: //testUser_cb72f7c4-a032-4b78-97e9-e7e18673ab53, address: 5EvkihtijxbnWmDLkL52iPrbL4PUQ2uJSzZ5wjunDiJUza8R +[2023-05-10T10:12:36.093Z] - W[undefined] - [info]: Ready +[2023-05-10T10:12:36.093Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:13:00.027Z] - W[undefined] - [info]: {"inBlock":"0xf2f09ecdf93c30087fc0eb2cf0220c1f86375c6b7c8fdf9e372e6f7a812f36a3"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: {"inBlock":"0x76473ccf21d378efb20a8002052c8edb945f74d851541e7498fae4630232a678"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T10:13:12.036Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,135"} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","9","3,000,000,000,000,000,002,469,134"] +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","3,000,000,000,000,000,002,469,134","8","3,000,000,000,000,000,002,469,135","9","3,000,000,000,000,000,002,469,134"] +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,220,999,111,666,197,577","tip":"0"} +[2023-05-10T10:13:12.037Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:14:23.602Z] - W[undefined] - [info]: name: //testUser_c7a14fd3-4923-430a-b8af-cc76ce491520, address: 5DPz4LZf4HYA6bVVPDUctj95N57cVnura5qguGiuonKzEcQB +[2023-05-10T10:14:23.607Z] - W[undefined] - [info]: name: //testUser_c10aa070-ceb9-464a-bace-7b998c9ea585, address: 5DqCG6hPkjAf2zHDomCNEjAEieVNsU8paBgMT1YQz1PyHg75 +[2023-05-10T10:14:23.613Z] - W[undefined] - [info]: name: //testUser_5f2fc79f-da97-4d56-8f16-73b7d742105d, address: 5DhRzjVT8LmdCVJPEJQYAdmyxERiKCbsR5fDpyrZ2bjfFSj4 +[2023-05-10T10:14:23.618Z] - W[undefined] - [info]: name: //testUser_2f97d526-c777-4aa2-a5eb-cdb7cc701475, address: 5ESFqqj7neajvoeCcxknaGjJS9GvMjDMcsBH4qdiLMDxvWgs +[2023-05-10T10:14:23.638Z] - W[undefined] - [info]: Ready +[2023-05-10T10:14:23.638Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:14:36.027Z] - W[undefined] - [info]: {"inBlock":"0x992afcaf7f8dc0577cf40b5f134882a359061418c04d8b6163071531e84831e9"} +[2023-05-10T10:14:48.028Z] - W[undefined] - [info]: {"inBlock":"0xbf7a4a72244705c88d3d3f38e13151706fb53091394f8b0e6527fdadbb0693fa"} +[2023-05-10T10:14:48.028Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"6,141,029,121,517,027,863"} +[2023-05-10T10:14:48.028Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T10:14:48.028Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T10:14:48.028Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:14:48.028Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:14:48.028Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:14:48.029Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"6,141,029,121,517,027,863"} +[2023-05-10T10:14:48.029Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"6,141,029,121,517,027,863","tip":"0"} +[2023-05-10T10:14:48.029Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"605,548,207","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:15:49.626Z] - W[undefined] - [info]: name: //testUser_c5c80535-64ab-4631-ace8-730037dbf292, address: 5CRyFQXivMTBE8NsVGtftG55HvjBryGNmK4Uy15DExvBemw7 +[2023-05-10T10:15:49.631Z] - W[undefined] - [info]: name: //testUser_240840f3-3346-4616-803c-5a7e2bcb209b, address: 5E9WmpsSrixEYSDzKomviiNQbqQtteAy1Pb1YU1kiBuwCJC6 +[2023-05-10T10:15:49.636Z] - W[undefined] - [info]: name: //testUser_9583bbb0-ae13-4c75-b337-1412791f5b13, address: 5HMmrKYNrGr6pmtJHRBQJUXsA4oQSS6HKgewAHqpe584JPdW +[2023-05-10T10:15:49.642Z] - W[undefined] - [info]: name: //testUser_f116cf21-5c64-4f6e-8569-61a9a5803fb3, address: 5DPVzAj7X6WySAVoHp9NJmjQexQP7QrQhcqNGWZJreu4fRbK +[2023-05-10T10:15:49.657Z] - W[undefined] - [info]: pool 0-8 has balance of ["0x00000000026eddf3cb48c6f69125ad0e","0x00000000026eddf3cb48c6f69125ad13"]-[0,0] +[2023-05-10T10:15:49.663Z] - W[undefined] - [info]: name: //testUser_4d8c5abe-4d6e-468b-806b-cd49edf72813, address: 5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a +[2023-05-10T10:15:49.670Z] - W[undefined] - [info]: name: //testUser_3fd96812-ca97-4cf8-ac94-5ba1290f2130, address: 5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA +[2023-05-10T10:15:49.677Z] - W[undefined] - [info]: name: //testUser_e0b9b16d-72f5-4958-9b28-e49d135df607, address: 5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX +[2023-05-10T10:15:49.683Z] - W[undefined] - [info]: name: //testUser_15c40eb5-62dd-41f2-9fac-0b018e3cb22a, address: 5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w +[2023-05-10T10:15:49.689Z] - W[undefined] - [info]: name: //testUser_4371b985-0bbf-4377-aa17-9218869fb405, address: 5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9 +[2023-05-10T10:15:49.696Z] - W[undefined] - [info]: name: //testUser_8aa425cf-118f-47a8-8dbc-96fa36dc596c, address: 5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA +[2023-05-10T10:15:49.702Z] - W[undefined] - [info]: name: //testUser_24fd34b2-a223-43e7-bef1-13b8d92eebcb, address: 5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd +[2023-05-10T10:15:49.709Z] - W[undefined] - [info]: name: //testUser_410f6e53-787a-46cd-a437-bf4e1e194a88, address: 5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt +[2023-05-10T10:15:49.715Z] - W[undefined] - [info]: name: //testUser_f3e4b9d3-abe3-4e46-b24b-542f602cb08e, address: 5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF +[2023-05-10T10:15:49.721Z] - W[undefined] - [info]: name: //testUser_d324bcdc-1138-492a-ba0e-336b00c33d40, address: 5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9 +[2023-05-10T10:15:49.728Z] - W[undefined] - [info]: name: //testUser_02d57fbf-e3bb-4f2c-a149-ec7f51fc87fc, address: 5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU +[2023-05-10T10:15:49.734Z] - W[undefined] - [info]: name: //testUser_6b6b5774-2095-475c-9e6d-8be589cc5b2e, address: 5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy +[2023-05-10T10:15:49.741Z] - W[undefined] - [info]: name: //testUser_a7b492a6-6687-4307-b651-dc2d403f72d7, address: 5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr +[2023-05-10T10:15:49.747Z] - W[undefined] - [info]: name: //testUser_dad30a6f-2807-4cf3-b040-cb1b3c625af9, address: 5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR +[2023-05-10T10:15:49.753Z] - W[undefined] - [info]: name: //testUser_7847e533-0aaa-421f-94bf-081ba41b7be3, address: 5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK +[2023-05-10T10:15:49.760Z] - W[undefined] - [info]: name: //testUser_d3b763ea-2f8a-4b45-9c64-3f3b64d876bc, address: 5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3 +[2023-05-10T10:15:49.767Z] - W[undefined] - [info]: name: //testUser_a4a61cfe-7067-444b-8824-fab46429143d, address: 5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj +[2023-05-10T10:15:49.774Z] - W[undefined] - [info]: name: //testUser_b65df04a-0c88-4077-ad23-a084c6338fdf, address: 5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP +[2023-05-10T10:15:49.781Z] - W[undefined] - [info]: name: //testUser_d324ecc5-b4ce-4785-bb12-488b30bff23b, address: 5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv +[2023-05-10T10:15:49.788Z] - W[undefined] - [info]: name: //testUser_6d00792f-bfd0-4ecc-a7e8-f865077b14c0, address: 5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v +[2023-05-10T10:15:49.795Z] - W[undefined] - [info]: name: //testUser_51ac99e1-393c-4470-9169-3d16ac1c8677, address: 5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu +[2023-05-10T10:15:49.801Z] - W[undefined] - [info]: name: //testUser_8c103d6e-097d-4d87-bb39-55cbf711e100, address: 5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm +[2023-05-10T10:15:49.807Z] - W[undefined] - [info]: name: //testUser_38c8c1a7-e1c5-438a-a109-573c456e210c, address: 5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV +[2023-05-10T10:15:49.813Z] - W[undefined] - [info]: name: //testUser_1358def9-d481-421e-944e-16c4713c361f, address: 5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf +[2023-05-10T10:15:49.820Z] - W[undefined] - [info]: name: //testUser_48d75a1d-fc24-458a-ae78-caa851f76acc, address: 5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY +[2023-05-10T10:15:49.826Z] - W[undefined] - [info]: name: //testUser_8314ef17-7728-4ec8-82f5-de756b5f0a1b, address: 5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K +[2023-05-10T10:15:49.833Z] - W[undefined] - [info]: name: //testUser_ac54a0ac-d211-447f-8fa6-62b3fd741304, address: 5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ +[2023-05-10T10:15:49.839Z] - W[undefined] - [info]: name: //testUser_2491a7bc-34ee-457a-97f2-5141212c2ed9, address: 5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19 +[2023-05-10T10:15:49.845Z] - W[undefined] - [info]: name: //testUser_36507072-87ff-47d0-b78b-90754bb0257b, address: 5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC +[2023-05-10T10:15:49.851Z] - W[undefined] - [info]: name: //testUser_713ba051-73b8-4181-b53d-f7afb93d3af8, address: 5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw +[2023-05-10T10:15:49.859Z] - W[undefined] - [info]: name: //testUser_a7c40819-90d2-4262-b12a-b68c23c532db, address: 5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6 +[2023-05-10T10:15:49.865Z] - W[undefined] - [info]: name: //testUser_54a7a722-7e48-4b41-a7eb-b5211d778396, address: 5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7 +[2023-05-10T10:15:49.871Z] - W[undefined] - [info]: name: //testUser_319e5ffd-716c-407f-a9e1-068cdd6b11ed, address: 5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn +[2023-05-10T10:15:49.878Z] - W[undefined] - [info]: name: //testUser_30ec6111-86d2-425e-90d6-2d22e127ec22, address: 5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3 +[2023-05-10T10:15:49.886Z] - W[undefined] - [info]: name: //testUser_559adf12-4f0d-4bfc-a966-8adb07dc9d94, address: 5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn +[2023-05-10T10:15:49.892Z] - W[undefined] - [info]: name: //testUser_0025b785-283e-485e-aff1-b6dbfeb851ed, address: 5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP +[2023-05-10T10:15:49.898Z] - W[undefined] - [info]: name: //testUser_853f34fb-9a3a-4892-a173-0d4ca0fc55f6, address: 5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF +[2023-05-10T10:15:49.905Z] - W[undefined] - [info]: name: //testUser_4572ef6e-35a1-4ff2-8237-809ca7a5f143, address: 5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH +[2023-05-10T10:15:49.911Z] - W[undefined] - [info]: name: //testUser_d86266ac-77b8-447d-8542-ccfe800f8b61, address: 5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG +[2023-05-10T10:15:49.917Z] - W[undefined] - [info]: name: //testUser_fbf5d2cb-69cf-41fe-a24a-ddcaa451917d, address: 5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3 +[2023-05-10T10:15:49.923Z] - W[undefined] - [info]: name: //testUser_960e4af8-34ce-44f1-a8a8-a2cc02f2a5e8, address: 5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw +[2023-05-10T10:15:49.930Z] - W[undefined] - [info]: name: //testUser_7c51ec75-330f-44f6-bda3-e0faabc6e0eb, address: 5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP +[2023-05-10T10:15:49.937Z] - W[undefined] - [info]: name: //testUser_f2712746-0f28-4d10-9958-70e3d7cd21d5, address: 5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h +[2023-05-10T10:15:49.943Z] - W[undefined] - [info]: name: //testUser_2b1078bf-bc17-48e9-9e6e-3c4b08369002, address: 5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN +[2023-05-10T10:15:49.950Z] - W[undefined] - [info]: name: //testUser_80877d9e-a080-4548-9802-15194fff30b0, address: 5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY +[2023-05-10T10:15:49.957Z] - W[undefined] - [info]: name: //testUser_0718bbaf-0247-4a58-b1ad-6f9114f3ece6, address: 5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF +[2023-05-10T10:15:49.963Z] - W[undefined] - [info]: name: //testUser_4f8d8882-9491-492f-ac34-6777cd599747, address: 5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g +[2023-05-10T10:15:49.969Z] - W[undefined] - [info]: name: //testUser_adcfae17-ce7d-4592-a9ae-44f523397f12, address: 5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z +[2023-05-10T10:15:49.974Z] - W[undefined] - [info]: name: //testUser_6a1d63cf-160b-4e6f-bc0f-ccaa247e1c1e, address: 5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR +[2023-05-10T10:15:49.980Z] - W[undefined] - [info]: name: //testUser_54cb5c74-b1fe-4848-9623-36ef96959c65, address: 5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E +[2023-05-10T10:15:49.997Z] - W[undefined] - [info]: Ready +[2023-05-10T10:15:49.997Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:16:12.028Z] - W[undefined] - [info]: {"inBlock":"0xf8448671860638751ef55bed4dbf0e5a6aa318aff226bccd14581bc537f9fabe"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: {"inBlock":"0x8ad5b594ba87e782d3ffa5a4d201398c99e6c880fbc1206a2e2acd04c7d037a5"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,223,430,755,461,933,577,144"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5C4miHYDmQQ69p1ovQFFG7p1f34ArrWwhHsQA8RtsDm9oW4a","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CRmzhLBiTZJEKEWMHNv5vL1wU8ggszFFsULmCryUuoFppJA","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GQrTN2cv3MLzvYXHbwp4srP2oLVNV7B1hL99FYYwkqFjudX","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.190Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EFdWMffdrHL1XTSc3v29G7LHxyj6jZt6Caw1vKe1fz6qd2w","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.191Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ey9LFxUHsU1GaHnf1qqZQEHKeEVc7xk9QGUJ8wJ1Hhqqbn9","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.192Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DvQndkd6fGU374DCaUAPLbcMUPHGSh3kiZz88on2QyQoRNA","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.193Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Fxv14M8Lkey6K8ihpK6aW63T575EyY11ypzmivKGTfYRGjd","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HN8SffnuK2MQMXb4vtmC6Vjd1z8r7bUkTPFFYeUf3PNgnjt","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.194Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ENe8M5otDAbJ9CCbut2kRwPQ8EG7XY7tHwdZyArEerFnaxF","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9"} +[2023-05-10T10:16:24.195Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.196Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CXzzpU7qn36y3aowEEj9q49vuX2qZgj7EcpKCQD6qoQQuJ9","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.197Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CoVqEqUZFabevW9Au2vBaCQemopWVAd9uckZ2pfLSYtR8oU","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.198Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Gaz2s2LLUB3h9KesPiJsa1TZ94edTgMQiP3qq4JoG5oZ8Hy","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Hgm2w4sxZvbPFker8Q5tiHJRGHFqrWNFtiJVR9VdrJ2KDbr","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.199Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ggt2tsYPApAHMoeXykDPC8uT4w7Lv5qRTNgxBX55QvbWuvR","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.200Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G3nKrEUr584D6qycsJUR5KexMoCdSPgDExBybExGXVoVFzK","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.201Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GpKV1r5YPVFTFB61pWLSRozRqWxAspyAxPBkCSj5UyZrhD3","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G6wHmJNHcoZuoheTuQEmHXE8jqEutLBUZfDptXjjTEJRsQj","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CRgjuNWBsZ4vx9oqnMz2NSrqM1fArmAXxsSomsGuyNVAFBP","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv"} +[2023-05-10T10:16:24.218Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GE7X89aRdZ4aGs9JpSo8J4LUZgu55Z84fpRJDrXAngCyzVv","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CoR8YniFeVChdGB2GaeHtV5pVtz9dPvPe88CT9dswvMjN6v","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.219Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DvTwz2SHFdwBfjkXLuMFZtmxpakzj1hdLVcDw4ZY4Do9jKu","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ExgJjCpUR2nrF24xNZE9GqMHSSMA2hR6k9gtyzme8AVPdjm","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.220Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FkC9h8DBzWhJmNCtQkbREcdwzj3b87MMisawZQF85Kqx3BV","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CdM45r46CM1gXJiqt2iw29kGhdWm9wS3tFfuRETqaCECShf","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Dsyvs4QH6ZT3oae45TPQvqpCpWUrAhwB7ww8Hf169oJnkxY","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.222Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.222Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FWdZouHenJQXU9ezcSC2Exh38LFrb5nPMAiWpPjHUeUZ69K","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FCAJRTgtowmrA5DLhzLqo7ev1P5dk37czwVGtQFZYXMjrkQ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DnTKzWBBCzH6ihWnKpYX5J2CYLenXmeZJy9thB1yA42nv19","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.223Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F4GKpcFdTvPysXHG3cz83H9Yx6TXVM4VJzdHGJGJ4uQhqBC","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F7G1faDsNRSgDWQrmzmeqRyMQ8WW3caN3LyX2tpkahh8Ydw","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.224Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EjmiKbYUz2ez3iuVj7f8wd6AbG5FJjzXJiQzQoMYigtKFF6","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5D31mwhiPnqNkqqSaw1ySjQYgdHRUkdujM2jJdE2khWA4NJ7","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DJN67o5nLqAPRJ1v4Lgdo7fHm2i98KbwoeCitsjHySD8vmn","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GmcBnPLvBXi1p2D3AJbg8wZExnn6BLcWkWPMeWp3KNFrbq3","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ge3ghLhc7PNW8r57CdnHbroj4riMfDYnKMfQSk8MqgQtofn","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CUbCuZXbukPiVGwaDW1sSiwxjCi76VrGwz1ukPn5CZBnauP","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF"} +[2023-05-10T10:16:24.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5He1EV8z4RYsnTRQpjtcnTauB6krD55nXgUpEJ7u9yLUYHvF","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ELYAkZXiF81CNzShWghDbJCLSs49a4SUB3Saz2bUqUbRkPH","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ek486GsZYEkcsZMAVukvRvBzmX5cuk37GCxJWCt5AmnsnjG","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.228Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DoBNuuhmEB35zMqvrL7dLuc1t57XxiKcBq8BDRsqHrEDxg3","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.229Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5D4hAipZhnhT42dAzRsLpUfDe4fpy3vCnwWE9xJQxrjfBAtw","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CSPAur5fDgD2GTmHHcFMSPet7hDyLpu4WXxwvfMVwXvBpaP","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Fshyu7UPhHkcoLsMAxn6XUoTEQ8GmZCgn1rY96q96nizg3h","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FxmrEnBF2Vhwvy7jGxTW7FccBk6NMmVbm4TG6pkSa4nCTkN","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ebt7cjKjJSQ39vfLSG7LR2szjG9L6kuVGSAes41zF7dR6pY","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5E6q4MqArSUpP5N7d2HY9HTBbkvCgibPLZRRYYp3dQiMTZUF","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5E6tX22pMLr1w5453VVBcH5zed86We5aTYuSBZvv8b51Q98g","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.232Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F9UMg53w6tYJPmQJnGkTGi6aoehcMtATzq158nq3bmCP84Z","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EJ2EGiVJSiZavp2sZsXCJnAJ3WhaaMkoXMrY97cLcecdsTR","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","150,751,656,166,103,099,718,440,000"] +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.233Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FR8TuM77x8ztQ3jhZJwLPBRXZvfgBRa7tLNfxvZL2bDsx1E","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,223,430,755,461,933,577,144"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"1,223,430,755,461,933,577,144","tip":"0"} +[2023-05-10T10:16:24.235Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"133,778,778,853","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:17:07.842Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T10:18:59.121Z] - W[undefined] - [info]: name: //testUser_c12a6af9-1928-46e4-b7a8-f5e3c04740ce, address: 5FP9cjhZnktrEwdWVN4B3i9ioCYZ7Tu5HShCh2naTGhbr5gn +[2023-05-10T10:18:59.126Z] - W[undefined] - [info]: name: //testUser_3a9d23ad-7861-4297-b981-62746c7b5048, address: 5GMwyZYzXMzb8XQWVTi5rEL2G6mi3BvmqoowgqWpb8RcfiUK +[2023-05-10T10:18:59.132Z] - W[undefined] - [info]: name: //testUser_5acb04b2-d59f-47f6-84dc-aa6baf38647c, address: 5DFUvx6cweV8mj97dB4eY7YPuBYqV8EZaxPEPr8cVnhdeBku +[2023-05-10T10:18:59.137Z] - W[undefined] - [info]: name: //testUser_795579af-6d70-4024-899d-1cbd03fc294b, address: 5FeMpkgiW8zKPktzoMn1YSuYDgJLGkfiywhvwFRbNz1EiBFA +[2023-05-10T10:18:59.160Z] - W[undefined] - [info]: Ready +[2023-05-10T10:18:59.160Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:19:12.027Z] - W[undefined] - [info]: {"inBlock":"0xaf078b477c6840e0b87490d93b413105bf858859ae5b3ede0b5df39ef21002cf"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: {"inBlock":"0x08bf7e9e87877d51e0b6b227db44ab01aacb45f1a6db1062748c7d8735af1fc2"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,135"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T10:19:24.028Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","9","3,000,000,000,000,000,002,469,134"] +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","0","3,000,000,000,000,000,002,469,134","8","3,000,000,000,000,000,002,469,135","9","3,000,000,000,000,000,002,469,134"] +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"26,220,999,111,666,197,577"} +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,220,999,111,666,197,577","tip":"0"} +[2023-05-10T10:19:24.029Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:21:31.658Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T10:29:52.977Z] - W[undefined] - [info]: name: //testUser_d521dad2-4172-4bdb-b2e6-5f01c1a538eb, address: 5H4JfyYU6eaUeb7CTtiUBo9Eg3sRN3eBrbTqtGwdj2FwRnZL +[2023-05-10T10:29:52.982Z] - W[undefined] - [info]: name: //testUser_9e9ad8a4-d24e-4c7d-925b-d3e6af620114, address: 5HZ3dAJPTTSNuSwJf8Ea9WDbmWcJgMSmQESKAtPaRbNNPRKK +[2023-05-10T10:29:52.988Z] - W[undefined] - [info]: name: //testUser_f192ce0c-6285-4b7d-8776-812fada11e24, address: 5EWpy4dhTyMNzLYZUuhACxA381xSKCcz3X1iPGxRmtK7ywFw +[2023-05-10T10:29:52.993Z] - W[undefined] - [info]: name: //testUser_673ad984-c48c-4481-b35c-0200c613dcb4, address: 5FCmn87EBdUvQ5TdEnjbatcF5fv4rYx9v8ePWrKCJ3ou1hHF +[2023-05-10T10:29:53.021Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 12 +[2023-05-10T10:30:24.028Z] - W[undefined] - [info]: [{"event":{"index":"0x0a08","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Withdrawn","metaDocumentation":"[Some balances were withdrawn (e.g. pay for transaction fee)]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0a00","data":[10,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Endowed","metaDocumentation":"[An account was created with some free balance.]","eventData":[{"data":"0x0000000a"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0a","data":[10,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x0000000a"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0d","data":[10,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Issued","metaDocumentation":"[A token was issued.]","eventData":[{"data":"0x0000000a"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x3d00","data":[{"ok":null}]},"phase":{"applyExtrinsic":2},"section":"sudo","method":"Sudid","metaDocumentation":"[A sudo just took place. \\[result\\]]","eventData":[{"data":{"ok":null}}],"error":null},{"event":{"index":"0x0a0a","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0b00","data":["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",0,0]},"phase":{"applyExtrinsic":2},"section":"transactionPayment","method":"TransactionFeePaid","metaDocumentation":"[A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,, has been paid by `who`.]","eventData":[{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000000000000000000000"},{"data":"0x00000000000000000000000000000000"}],"error":null},{"event":{"index":"0x0000","data":[{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}]},"phase":{"applyExtrinsic":2},"section":"system","method":"ExtrinsicSuccess","metaDocumentation":"[An extrinsic completed successfully.]","eventData":[{"lookupName":"FrameSupportDispatchDispatchInfo","data":{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}}],"error":null}] +[2023-05-10T10:30:24.041Z] - W[undefined] - [info]: Ready +[2023-05-10T10:30:24.042Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:30:48.027Z] - W[undefined] - [info]: {"inBlock":"0xfd81cf4f014ed9f23f8baf233b21a67a5f3c8d935fade4832cbd3e32170f2bf6"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: {"inBlock":"0x695716d2bf0d4980f23612227bfe43ad397767ce3b0c30ccbcbae296a1e5933f"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"56,611,936,629,256,965,939"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":{"Err":{"Module":{"index":"19","error":"0x03000000"}}}} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":{"Err":{"Module":{"index":"19","error":"0x00000000"}}}} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.034Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:00.035Z] - W[undefined] - [info]: mangata -> assetRegistry.RegisteredAsset: {"assetId":"11","metadata":{"decimals":"18","name":"LiquidityPoolToken0x0000000B","symbol":"TKN0x00000000-TKN0x0000000A","existentialDeposit":"0","location":null,"additional":{"xcm":null,"xyk":null}}} +[2023-05-10T10:31:00.036Z] - W[undefined] - [info]: mangata -> xyk.PoolCreated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:00.036Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:31:00.036Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:00.036Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:31:00.036Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"56,611,936,629,256,965,939"} +[2023-05-10T10:31:00.036Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"56,611,936,629,256,965,939","tip":"0"} +[2023-05-10T10:31:00.036Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"6,081,250,747","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:31:00.047Z] - W[undefined] - [info]: Ready +[2023-05-10T10:31:00.048Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:31:24.034Z] - W[undefined] - [info]: {"inBlock":"0xfe9a517bf7d314eeb152820ded89d56b75d1bbb934bf5de28bb74c64b7325f4e"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: {"inBlock":"0x2326c2f2422c9494faa4c4c4938d6e2675edd6252e19667af1ccd0b942131128"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"66,094,972,760,695,187,160"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> proofOfStake.PoolPromotionUpdated: ["11","20"] +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:31:36.032Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T10:31:36.033Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.034Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T10:31:36.034Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:31:36.034Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:31:36.034Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:31:36.034Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"66,094,972,760,695,187,160"} +[2023-05-10T10:31:36.034Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"66,094,972,760,695,187,160","tip":"0"} +[2023-05-10T10:31:36.034Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"7,273,130,023","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:31:36.045Z] - W[undefined] - [info]: #228 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T10:33:27.329Z] - W[undefined] - [info]: name: //testUser_35d95bfe-c7af-4b97-9b94-025d276383b3, address: 5GKxTSac2GRM9CxXz8vkHf2JDe669AP5WL5K3oD3ypZ4Met4 +[2023-05-10T10:33:27.335Z] - W[undefined] - [info]: name: //testUser_a011171e-dfe5-4ca7-b6cf-b8089d05d4ec, address: 5GCKoTzarCeNHX3aVYCFszWifimZWpG44V3yqWptmqoXfCJp +[2023-05-10T10:33:27.340Z] - W[undefined] - [info]: name: //testUser_d448ec2d-df7c-4b17-a84a-82870160c412, address: 5HVrVTKByzKLFpHvNWXtgYDFtbv7JZrnyV86HwjEregv9cSg +[2023-05-10T10:33:27.346Z] - W[undefined] - [info]: name: //testUser_cd826c7d-2a3b-43de-92dc-d9e0e3746149, address: 5ExkNMUJPxhqv62NdAHJ5f14yefpQcifvKTetssLuGh7HgVJ +[2023-05-10T10:33:27.360Z] - W[undefined] - [info]: pool 0-10 has balance of ["0x00000000026c62ad77dc602dae000000","0x00000000026c62ad77dc602dae000004"]-[0,0] +[2023-05-10T10:33:27.366Z] - W[undefined] - [info]: name: //testUser_849d72cc-bfc7-405c-80e4-930fdf7b7f82, address: 5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj +[2023-05-10T10:33:27.373Z] - W[undefined] - [info]: name: //testUser_a24f4b96-ea49-475b-9831-9f0c96c60411, address: 5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN +[2023-05-10T10:33:27.383Z] - W[undefined] - [info]: Ready +[2023-05-10T10:33:27.383Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:33:48.027Z] - W[undefined] - [info]: {"inBlock":"0x9b213cc3ccf8e79e16980ab84530cb7d75d3d50de0f85d55056b6f36a49c3df2"} +[2023-05-10T10:34:00.039Z] - W[undefined] - [info]: {"inBlock":"0x0decc777cdfdc904d049abfb75276a277416dc832c857d93f66d98a763b44c73"} +[2023-05-10T10:34:00.039Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"50,643,953,322,896,144,099"} +[2023-05-10T10:34:00.039Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj"} +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","150,752,859,781,750,059,798,758,700"] +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:34:00.040Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:34:00.041Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:34:00.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:34:00.042Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.042Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.042Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.042Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","11","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:34:00.042Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Dsj53ccsb5XnSfHqLpj2U49HoBPgtA2fPFxQ2ZQU57UDcZj","0","3,000,000,000,000,000,000,002,468","10","3,000,000,000,000,000,000,002,469","11","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","150,752,859,781,750,059,798,758,700"] +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:34:00.043Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","11","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GjWaYtfGUJdEGW6UV9MAe2RxhCRAUBVHqbCwyq2jn1vcQAN","0","3,000,000,000,000,000,000,002,468","10","3,000,000,000,000,000,000,002,469","11","3,000,000,000,000,000,000,002,468"] +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"50,643,953,322,896,144,099"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"50,643,953,322,896,144,099","tip":"0"} +[2023-05-10T10:34:00.044Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"5,486,281,477","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:36:39.016Z] - W[undefined] - [info]: name: //testUser_8f30114e-180e-4620-8080-9ecdad85b3cf, address: 5F4QSFFSEffvYNoeau1eSiXeRNvJkCoYKJYHS3rTGWouZnpw +[2023-05-10T10:36:39.021Z] - W[undefined] - [info]: name: //testUser_aaeb7ef4-50a1-469a-bc1b-9489a1a76eff, address: 5CXrfurq8KE4xHNTbQn5kEa3BXAbMLDyGViy9NTSyamBCLnA +[2023-05-10T10:36:39.027Z] - W[undefined] - [info]: name: //testUser_247e98f7-00ea-4579-9a9f-2478b37e4a8c, address: 5EWbJ2n3kDR1tc6ENp3eWp3DdWMDCt3q5L8Wo142mfMxisNn +[2023-05-10T10:36:39.032Z] - W[undefined] - [info]: name: //testUser_afc45987-48bf-4391-a73a-0fda15155360, address: 5GjzR4s4nVqR4vodAvNGr1UkQKoRNWBMmQ3kur1vqhd4RCvF +[2023-05-10T10:36:39.046Z] - W[undefined] - [info]: name: //testUser_0e801e80-ec17-4840-a166-0cb1ffdc6716, address: 5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE +[2023-05-10T10:36:39.052Z] - W[undefined] - [info]: name: //testUser_f2ade72a-af70-454e-b1e9-bd11c512fbe9, address: 5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG +[2023-05-10T10:36:39.062Z] - W[undefined] - [info]: Ready +[2023-05-10T10:36:39.062Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T10:37:00.031Z] - W[undefined] - [info]: {"inBlock":"0xebfd84526c96d9c84e2b358cf8ad2f2810ba7802147ca1645e21968669a9b22c"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: {"inBlock":"0x1e96270d34a956342a503bce2420a5c6649484c72b1b44467f9ca7e7b218aaa2"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"50,573,953,322,896,144,099"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","amount":"1,003,009,027,092,438,300"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","amount":"1,003,009,027,092,438,300"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","1,003,009,027,092,438,300"] +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","1,000,000,000,000,123,400,000"] +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.035Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","9","20,000,000,000,002,468"] +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5E4HMyGuvmj6VYqyGQtBcqE9HXAoTYcN6T9MQYc72mzZwzBE","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","amount":"1,003,009,027,092,438,300"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","amount":"1,003,009,027,092,438,300"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","1,003,009,027,092,438,300"] +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","1,000,000,000,000,123,400,000"] +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","amount":"20,000,000,000,002,468"} +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","9","20,000,000,000,002,468"] +[2023-05-10T10:37:12.036Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GsM4Dmw4fPQhgsnmjHL8CjG3zoSRJUAQCZy7wfkmcf33joG","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-10T10:37:12.037Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T10:37:12.037Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T10:37:12.037Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T10:37:12.037Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"50,573,953,322,896,144,099"} +[2023-05-10T10:37:12.037Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"50,573,953,322,896,144,099","tip":"0"} +[2023-05-10T10:37:12.037Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"5,486,281,477","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T10:39:10.880Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T10:50:23.487Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T11:47:32.071Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:03:48.533Z] - W[undefined] - [info]: name: //testUser_4e414794-e12a-4dc7-9cbc-d18301ec01a5, address: 5Ct4CcSY9u81UaH9CJzFVyNwPwb48my8VXAM47y2TXQVFpiM +[2023-05-10T12:03:48.539Z] - W[undefined] - [info]: name: //testUser_b127ebe1-f04b-413d-a5f3-d6a1f27a1f10, address: 5DUD9Bfw7d925V8wKdxYNxN3SkNoKk1GSmJkbVigPUQzejDd +[2023-05-10T12:03:48.545Z] - W[undefined] - [info]: name: //testUser_07f1670c-7fb1-4770-9b7d-97ff84edada5, address: 5F9kpNNzimuwmoMSmnxJKhVDwKw5YSQiuPGtmYAhvzwvP1js +[2023-05-10T12:03:48.551Z] - W[undefined] - [info]: name: //testUser_3c19a868-7400-4abc-b964-e1039577127e, address: 5Ec2bV16myCHWo5N6yadd21SR2bSJULGskm79QyN4GMjmcLw +[2023-05-10T12:03:48.566Z] - W[undefined] - [info]: name: //testUser_14d26c7a-77fb-420a-85e3-9a5672c8d0d2, address: 5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF +[2023-05-10T12:03:48.572Z] - W[undefined] - [info]: name: //testUser_38855537-305e-447c-a720-a250ba0daaa9, address: 5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP +[2023-05-10T12:03:48.579Z] - W[undefined] - [info]: name: //testUser_9f774b77-6bab-42c5-8542-5d1790047ae8, address: 5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk +[2023-05-10T12:03:48.584Z] - W[undefined] - [info]: name: //testUser_94037171-d18d-41ab-8f9b-fd04dc06c305, address: 5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM +[2023-05-10T12:03:48.590Z] - W[undefined] - [info]: name: //testUser_eda12bcf-f44d-44fe-b67f-df82c64de80d, address: 5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF +[2023-05-10T12:03:48.601Z] - W[undefined] - [info]: Ready +[2023-05-10T12:03:48.601Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T12:04:12.034Z] - W[undefined] - [info]: {"inBlock":"0x48eca2e706d4a5deaeab6e79652e1202ce62d1fe6f79295fede918f5897ee49c"} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: {"inBlock":"0x8b7a6aaecf247ed7cd55662653e7d385b4c00dc66856db178eee79035da5aef6"} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"123,767,815,956,585,983,664"} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF"} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","1,003,009,027,094,634,900"] +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.056Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","1,000,000,000,000,123,400,000"] +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FP9KzGoHoD5XiPUBeV1kBXhx53zMKDmdPAvN1bCymRg7PWF","0","20,000,000,000,002,468","10","20,000,000,000,002,469","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.057Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","1,003,009,027,094,634,900"] +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","1,000,000,000,000,123,400,000"] +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FdsxopYcCc9JVR96u37P2pNwkYwGtTVzhit4KNbzr12sCbP","0","20,000,000,000,002,468","10","20,000,000,000,002,469","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.058Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","1,003,009,027,094,634,900"] +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","1,000,000,000,000,123,400,000"] +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.060Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5H6U1kpDyUrhTS4ECvWeDjQVYbpYESHPo8mH1NrqXgPhXWRk","0","20,000,000,000,002,468","10","20,000,000,000,002,469","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","1,003,009,027,094,634,900"] +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","1,000,000,000,000,123,400,000"] +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.061Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DLDXkeyPfihiHoMTGGyLZcgRe9rQeTrBvar6FBCX2tUU7YM","0","20,000,000,000,002,468","10","20,000,000,000,002,469","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.062Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","amount":"1,003,009,027,094,634,900"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","1,003,009,027,094,634,900"] +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","1,000,000,000,000,123,400,000"] +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","amount":"20,000,000,000,002,468"} +[2023-05-10T12:04:24.063Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.064Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EUd8xE3wAesoGRLKTWXqzGLumXaFX8Nn3CoYi9h3KnHgNiF","0","20,000,000,000,002,468","10","20,000,000,000,002,469","11","20,000,000,000,002,468"] +[2023-05-10T12:04:24.064Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T12:04:24.064Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:04:24.064Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T12:04:24.064Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"123,767,815,956,585,983,664"} +[2023-05-10T12:04:24.064Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"123,767,815,956,585,983,664","tip":"0"} +[2023-05-10T12:04:24.064Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"13,504,562,563","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T12:09:39.251Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:13:05.881Z] - W[undefined] - [info]: name: //testUser_2fbbb680-3ea6-417d-8526-30ada066678e, address: 5CrSZxY8rVF2jmFJq4UvfL7vW2d3rmyriUTJEjP8yZzVcHXP +[2023-05-10T12:13:05.887Z] - W[undefined] - [info]: name: //testUser_170f8288-3d3e-44a2-a6dd-16245b570fd6, address: 5EZ33q9uJc4ysiPdxdrsFMqDmqF6u6bVxJTKJHVnVymGA2nt +[2023-05-10T12:13:05.893Z] - W[undefined] - [info]: name: //testUser_c0480ed8-0368-46a6-b99f-c6a74947c595, address: 5GTzinjSzpVyGp5xmcgqNpqf1wTUwiNmabVHuV9oL7KtRPx1 +[2023-05-10T12:13:05.898Z] - W[undefined] - [info]: name: //testUser_1c6db60e-b41b-4c73-b6ca-13cff2218020, address: 5ECiP6HXraydHRfaJttVQrgWoLGeq4U8G1rt1mUzAB94kX7S +[2023-05-10T12:13:05.901Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:13:59.768Z] - W[undefined] - [info]: name: //testUser_f49c5663-f4a1-4063-b042-ffb1dd589116, address: 5EL4CZ6wP9HSAuCSmdAy8Sd9w5BdKJJRMiuLKQmPiPnSDEAb +[2023-05-10T12:13:59.774Z] - W[undefined] - [info]: name: //testUser_857bf15c-f349-415b-b6d9-98425f2802cc, address: 5HBSECom7zWZgUYXDckkXp931jhwvJjVYjxeiYRuQhXsAuTV +[2023-05-10T12:13:59.779Z] - W[undefined] - [info]: name: //testUser_0bc40612-a425-4957-b97e-5420b7c30947, address: 5FeK3iTipEgaJXVzZFpGr78ouwTwMooNyA1SmvQ5p9nNQZU6 +[2023-05-10T12:13:59.785Z] - W[undefined] - [info]: name: //testUser_7025b4a0-9f4b-4426-8f97-85a278e84cca, address: 5EeZwP3dJytzGZsB1MnQGBfbxvRW9Kta6uj9Q8oPE4Goy9hE +[2023-05-10T12:13:59.788Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:14:27.554Z] - W[undefined] - [info]: name: //testUser_0b09f89f-f36c-4df2-ac53-d40e2a561a92, address: 5FvazePU5P45uNFWR2HAhiDxGdYrj1s4Nz7PQAm4EWghURhQ +[2023-05-10T12:14:27.560Z] - W[undefined] - [info]: name: //testUser_633817ae-3fbc-4101-94f7-12e3bea25d62, address: 5FRX1TWaLmKtF6qz3qCbwb2yX9kofkwDKc5dduo6pTTK65MW +[2023-05-10T12:14:27.566Z] - W[undefined] - [info]: name: //testUser_8288c0de-eb06-425b-b7e9-6e51618ce2d8, address: 5EWS7MEXqt2soq7FMP75Dn8cxVAfScpShjptee38X4ZcdH7c +[2023-05-10T12:14:27.571Z] - W[undefined] - [info]: name: //testUser_305ef8b4-ec05-45aa-8426-d04561765393, address: 5HMyiqtPk8nkQXQBRwXAArs6Fx1ADfvSLfz8v9HRPTVn6ETB +[2023-05-10T12:14:27.573Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:14:27.733Z] - W[undefined] - [info]: name: //testUser_123625a8-7cf8-43e8-be69-833488a5d35d, address: 5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo +[2023-05-10T12:14:27.742Z] - W[undefined] - [info]: name: //testUser_0e55af1a-b720-4a10-afd2-4d2bb15673b3, address: 5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD +[2023-05-10T12:14:27.758Z] - W[undefined] - [info]: Ready +[2023-05-10T12:14:27.759Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T12:14:48.044Z] - W[undefined] - [info]: {"inBlock":"0x3a0ec75ebb6c9a464c3decd9f243f8732b17a470bde25694937f0c43ff1a98f7"} +[2023-05-10T12:15:00.043Z] - W[undefined] - [info]: {"inBlock":"0x491e06cd5cfb6ed06ce7a842acaa50f19c7a477e94acb03635c55cda3fdf84b4"} +[2023-05-10T12:15:00.043Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"50,573,953,322,896,144,099"} +[2023-05-10T12:15:00.044Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo"} +[2023-05-10T12:15:00.044Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"2","who":"5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo","amount":"2,006,018,054,274,180,500"} +[2023-05-10T12:15:00.044Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"2","who":"5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo","amount":"2,006,018,054,274,180,500"} +[2023-05-10T12:15:00.044Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["2","5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo","2,006,018,054,274,180,500"] +[2023-05-10T12:15:00.044Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:15:00.044Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:15:00.044Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FUa52JGG6cv6WD8T855cz9dgEZKcRfefhwc1goGauKs9Bjo","1,000,000,000,000,123,400,000"] +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":{"Err":{"Module":{"index":"13","error":"0x16000000"}}}} +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD"} +[2023-05-10T12:15:00.045Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"2","who":"5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD","amount":"2,006,018,054,274,180,500"} +[2023-05-10T12:15:00.046Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"2","who":"5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD","amount":"2,006,018,054,274,180,500"} +[2023-05-10T12:15:00.046Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["2","5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD","2,006,018,054,274,180,500"] +[2023-05-10T12:15:00.046Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:15:00.046Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD","amount":"1,000,000,000,000,123,400,000"} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GRZPESNVyGm7v2SCbHzh1tsJ39P9Hzjci7c9ab3VPnrzrCD","1,000,000,000,000,123,400,000"] +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":{"Err":{"Module":{"index":"13","error":"0x16000000"}}}} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"50,573,953,322,896,144,099"} +[2023-05-10T12:15:00.047Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"50,573,953,322,896,144,099","tip":"0"} +[2023-05-10T12:15:00.048Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"5,486,281,477","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T12:28:44.885Z] - W[undefined] - [info]: name: //testUser_38056409-007b-4a96-a846-943579b9de4c, address: 5FnZYRYWjnX6XmhKikzseftYZ7u7w2qqXbSAPZUZ5dNpzub7 +[2023-05-10T12:28:44.891Z] - W[undefined] - [info]: name: //testUser_1d389143-3aba-4f56-87ae-fb419d8e3d43, address: 5CtY4FuZaNsLgg237gxLCVcEzi5Nf8UBuS9FBk1prGgWSurN +[2023-05-10T12:28:44.896Z] - W[undefined] - [info]: name: //testUser_3f5584df-dc44-4533-b159-8cb15b600930, address: 5Dec6RFBR3AbL92RpN6iJ8WKiFujiyYfAmWxqZSZDQ47qdXx +[2023-05-10T12:28:44.902Z] - W[undefined] - [info]: name: //testUser_58c3cd9a-2da1-4651-9f9e-e04cf5d420ec, address: 5Dqyim9NLuvVRcZDezqQZUvrdp9fANybMh2BsptH9U12k65x +[2023-05-10T12:28:44.905Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:29:10.893Z] - W[undefined] - [info]: name: //testUser_898bed18-1fbe-47bd-a24c-81a82c0c30d4, address: 5FHXiTkfUK4rdXxDanDt5KXdzz3sRNbm5tK8WPfL9L1TSVfB +[2023-05-10T12:29:10.899Z] - W[undefined] - [info]: name: //testUser_a676cd82-99c9-4de5-9f6e-4a25de3778e0, address: 5EhNSnhQbzouRFZqcN3PhNq7XkcEJgka4VZmTQ1UtjFXcHHA +[2023-05-10T12:29:10.904Z] - W[undefined] - [info]: name: //testUser_7cdf622d-7dc2-4809-ba50-d3aae58469f5, address: 5DPLvUhCLCV4jgRMJpdMeyKEKYE7HwX2mMv4YZbCfyMMnomm +[2023-05-10T12:29:10.910Z] - W[undefined] - [info]: name: //testUser_a448965d-d822-44d8-9f8b-34154272c42d, address: 5FEpG36HGjT2Dots5ceyWEtgW6rVHUuRuwUhw1fxPdyiRwbw +[2023-05-10T12:29:10.913Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:32:49.132Z] - W[undefined] - [info]: name: //testUser_0b3a0b03-2a29-4104-b2b4-3ff8c7025d70, address: 5Hp8WL3GKDpNAedFyNd3jeX46wgVFyUZpFULdWG9xAVoCEw2 +[2023-05-10T12:32:49.138Z] - W[undefined] - [info]: name: //testUser_a6f7826a-9fb9-4cd7-979f-cd99e1ea5e00, address: 5HbSxshZLHdHUazdqEFTSCrmTWfDaZGcCLEeHgS8kPJGs7FR +[2023-05-10T12:32:49.144Z] - W[undefined] - [info]: name: //testUser_1f7bbdae-8f3e-4305-b2cb-2922b8818307, address: 5DX59SNp6ihXVdfT1kX3ggzXvYr2vgG9LFarJYJpFV8CUUa6 +[2023-05-10T12:32:49.149Z] - W[undefined] - [info]: name: //testUser_e3d40761-f6f7-4f71-a289-eab5e024c627, address: 5Hbe5YDFiCGYhtQEVmNsmSr3wtMjpGX5n6rt38B5hczgCpuV +[2023-05-10T12:32:49.151Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:37:50.949Z] - W[undefined] - [info]: name: //testUser_559eeb14-4394-4613-b460-6897068b01c8, address: 5HTj2PP8uSC1JScYzD9aZ9FDWwf3WWx39ZV6N516K9d1QPHT +[2023-05-10T12:37:50.955Z] - W[undefined] - [info]: name: //testUser_8f40219d-3257-460d-95af-1ddd9e3a1801, address: 5DaFwj2PERxCZBp69rAuc4q77ESS1fEwb1EKPJsMD41c8ZpV +[2023-05-10T12:37:50.961Z] - W[undefined] - [info]: name: //testUser_7bd11570-e7d9-46c7-b7d6-5e84ebdc499f, address: 5CXhNYLmfUCHF7ZevU8JqqbBmjJe67G4ijc3mJGgVfytrNPR +[2023-05-10T12:37:50.966Z] - W[undefined] - [info]: name: //testUser_c2528f8f-de28-4b65-9c76-48b3eed83f11, address: 5F6UwFuXYj3HawhgMnKDyqb54WEDqTRu9EBGTAgJD5yYkQNy +[2023-05-10T12:37:50.970Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:37:51.122Z] - W[undefined] - [info]: name: //testUser_b5e930d9-f75c-47b2-a67e-07cd9b24b2ac, address: 5CMATTpBfiRMFHwis2ZJ29WyCF5so58AaXgyhD5D6zgGHKaq +[2023-05-10T12:37:51.131Z] - W[undefined] - [info]: name: //testUser_0876d337-9ea5-4b8c-9d91-af3f3e284ecd, address: 5EUkJrEQiko7CtDL4SW3tQo1SmGkQkkh4vYtXK4wvkZPmkXP +[2023-05-10T12:37:51.137Z] - W[undefined] - [info]: name: //testUser_d9c9eb55-eb0e-4c13-bdf4-211fbb8d9486, address: 5ELfka4dmkKCaATm24BUTQHbFERpovNy83qDv7SgYf5sc41P +[2023-05-10T12:37:51.143Z] - W[undefined] - [info]: name: //testUser_2971d329-c940-40b6-b6e2-6b81d5ed46ab, address: 5DhZ67eDm55KHuH4j3fDi9581wuExekyPneQJjQSY2dVvp7q +[2023-05-10T12:37:51.149Z] - W[undefined] - [info]: name: //testUser_cfad89f3-588b-4909-b719-8cb6d733b73c, address: 5E1pSRzeHbJZWcVkrwYVZA732wpN7E8DZ2yWYPmC6sbVrLxK +[2023-05-10T12:37:51.163Z] - W[undefined] - [info]: Ready +[2023-05-10T12:37:51.164Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T12:38:12.040Z] - W[undefined] - [info]: {"inBlock":"0xf3aea0d81debf79bddaa32101bddf41575f00b1c16ac0c809de9ae4b99273094"} +[2023-05-10T12:38:24.041Z] - W[undefined] - [info]: {"inBlock":"0xe168b9fac366d12c13cf77ea761f20e0ffcd719a2b197586f77e14631ed35f6c"} +[2023-05-10T12:38:24.045Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"23,492,966,005,840,135,095"} +[2023-05-10T12:38:24.045Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CMATTpBfiRMFHwis2ZJ29WyCF5so58AaXgyhD5D6zgGHKaq"} +[2023-05-10T12:38:24.045Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CMATTpBfiRMFHwis2ZJ29WyCF5so58AaXgyhD5D6zgGHKaq","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.045Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CMATTpBfiRMFHwis2ZJ29WyCF5so58AaXgyhD5D6zgGHKaq","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.045Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CMATTpBfiRMFHwis2ZJ29WyCF5so58AaXgyhD5D6zgGHKaq","100,000,000,000,012,340,000"] +[2023-05-10T12:38:24.045Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EUkJrEQiko7CtDL4SW3tQo1SmGkQkkh4vYtXK4wvkZPmkXP"} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EUkJrEQiko7CtDL4SW3tQo1SmGkQkkh4vYtXK4wvkZPmkXP","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EUkJrEQiko7CtDL4SW3tQo1SmGkQkkh4vYtXK4wvkZPmkXP","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EUkJrEQiko7CtDL4SW3tQo1SmGkQkkh4vYtXK4wvkZPmkXP","100,000,000,000,012,340,000"] +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ELfka4dmkKCaATm24BUTQHbFERpovNy83qDv7SgYf5sc41P"} +[2023-05-10T12:38:24.046Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ELfka4dmkKCaATm24BUTQHbFERpovNy83qDv7SgYf5sc41P","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ELfka4dmkKCaATm24BUTQHbFERpovNy83qDv7SgYf5sc41P","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ELfka4dmkKCaATm24BUTQHbFERpovNy83qDv7SgYf5sc41P","100,000,000,000,012,340,000"] +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DhZ67eDm55KHuH4j3fDi9581wuExekyPneQJjQSY2dVvp7q"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DhZ67eDm55KHuH4j3fDi9581wuExekyPneQJjQSY2dVvp7q","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DhZ67eDm55KHuH4j3fDi9581wuExekyPneQJjQSY2dVvp7q","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DhZ67eDm55KHuH4j3fDi9581wuExekyPneQJjQSY2dVvp7q","100,000,000,000,012,340,000"] +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5E1pSRzeHbJZWcVkrwYVZA732wpN7E8DZ2yWYPmC6sbVrLxK"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5E1pSRzeHbJZWcVkrwYVZA732wpN7E8DZ2yWYPmC6sbVrLxK","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5E1pSRzeHbJZWcVkrwYVZA732wpN7E8DZ2yWYPmC6sbVrLxK","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:38:24.049Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5E1pSRzeHbJZWcVkrwYVZA732wpN7E8DZ2yWYPmC6sbVrLxK","100,000,000,000,012,340,000"] +[2023-05-10T12:38:24.049Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:38:24.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:38:24.049Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T12:38:24.049Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"23,492,966,005,840,135,095"} +[2023-05-10T12:38:24.049Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"23,492,966,005,840,135,095","tip":"0"} +[2023-05-10T12:38:24.049Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,464,698,023","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T12:41:34.752Z] - W[undefined] - [info]: name: //testUser_51f55b26-46ea-45fa-ab5a-2a71442a38ee, address: 5DXihQfgF4cVJABGU6aaN8nP96MwEdhHacev7tPR2ya8pFau +[2023-05-10T12:41:34.757Z] - W[undefined] - [info]: name: //testUser_bacbb7c2-2fef-46e3-bccf-cc8ecd2d54c0, address: 5FtGLw7zmXnaxEcHe1sPFGcEER7qAjLaKARt9k3QyVV3dg7A +[2023-05-10T12:41:34.763Z] - W[undefined] - [info]: name: //testUser_61424f1c-97ea-4652-8a3b-ff9b73ac92d5, address: 5FEs2Nwjax3BQvf4SdzQHqax7yozM47CEaMQJPtpxeGo6Ygj +[2023-05-10T12:41:34.768Z] - W[undefined] - [info]: name: //testUser_2730684d-ec52-4d55-ab0d-b3282b8b5097, address: 5G7BChCmijJUL7Eb2K44AdgRhrWcJZ8zDmPf9oWDQmVpFB62 +[2023-05-10T12:41:34.785Z] - W[undefined] - [info]: name: //testUser_006d6319-5818-4af5-8e06-b26e76e1d31e, address: 5GjAqH4VGRHHnLJwjW1Ja7ZNG1JkGD7gmJR9Q82sUAQzFaqZ +[2023-05-10T12:41:34.791Z] - W[undefined] - [info]: name: //testUser_0c3f84f5-1b01-41b1-b213-43068974f708, address: 5HH7XK36ZfEgeAQg32NGVYYRb12JNyN88PNbhq5T8HkdWstb +[2023-05-10T12:41:34.797Z] - W[undefined] - [info]: name: //testUser_bad5ba95-79ed-473c-a545-f2634bef5317, address: 5GEtXiq3Nu1aMr7KLAxUydEf3KzCbWRfa3v984QUrke1JJev +[2023-05-10T12:41:34.803Z] - W[undefined] - [info]: name: //testUser_a13566e7-41fc-47c4-957f-828e17fb827e, address: 5D58GfJdM1ChEU3NL9BeR35Ag7vCb6Q54sJrqoFD8M7HHpWM +[2023-05-10T12:41:34.809Z] - W[undefined] - [info]: name: //testUser_7341e0f5-3dfa-41a3-9f88-79a3ed3cb48f, address: 5C5G7ND4dDaMMrsE8CQHew8x2Lv7kBWEXGsHMB95q8jFizYC +[2023-05-10T12:41:34.815Z] - W[undefined] - [info]: name: //testUser_e3e91060-e605-4dca-87f4-fc7132f6d359, address: 5Chcg4LZ3DFbzXehmVTKjpeJVvhWoo8VetrqXuwQgfeSQwWL +[2023-05-10T12:41:34.821Z] - W[undefined] - [info]: name: //testUser_f386afdf-45c3-43e1-9ccd-e79b37e68015, address: 5DsmD4hmhYz6RF1UmG5njwsUoK4xEFwdryXzg4DtCpnW1W8J +[2023-05-10T12:41:34.826Z] - W[undefined] - [info]: name: //testUser_e29d50e3-8428-46a8-805d-c561faeab217, address: 5HbN7qyvwsRFmUGWA2KJgGfcCMvBQWPon7fk4sX3zpvkD8wd +[2023-05-10T12:41:34.832Z] - W[undefined] - [info]: name: //testUser_61019e10-6d9f-48f0-a244-9d590762f582, address: 5EfMpD9m22591QgPscEMdL6MgDwJ1kmjhDkLxiYnGXApeRLw +[2023-05-10T12:41:34.839Z] - W[undefined] - [info]: name: //testUser_66f83bf0-77f2-43aa-94d8-16934b0cf8fe, address: 5FqAHNsKsTZs2pxQ6idbVq93m4AwuWJQx7Z98EpPB1WRViuq +[2023-05-10T12:41:34.844Z] - W[undefined] - [info]: name: //testUser_8f3ae3af-572c-4533-9933-b1388f274dad, address: 5D2CsfK7u7PCpwGUT7rVzCzrSer987dLsW9SLBrX2tsiLbR5 +[2023-05-10T12:41:34.850Z] - W[undefined] - [info]: name: //testUser_6fbaa842-d99e-46c7-a06c-a2f1ef2f1054, address: 5F1qo4kjmdxrHPANVvhxn4nj2CjfU5BvkVC2eXPkfLwFqYAZ +[2023-05-10T12:41:34.855Z] - W[undefined] - [info]: name: //testUser_ad4200c3-d5b7-41ca-8e93-9f2925961dec, address: 5HgPQVWo4sW9hv5RCe8xHXDVmNJiJxDVZRLAQ6yGpfgF9C3t +[2023-05-10T12:41:34.862Z] - W[undefined] - [info]: name: //testUser_70b65602-feb4-41e0-a8cc-b0a11a5a89a0, address: 5Cu2AQsqh3w3gWCEFi3pgYEM1R2d1iXHzs9hCLyEkEJdwPN1 +[2023-05-10T12:41:34.868Z] - W[undefined] - [info]: name: //testUser_f62a06b5-823b-463e-ba92-d6b01573240a, address: 5EPZgoqR4GeCp8ANzY1wZPr1jgi6fcSTp7PGfn9p4q6ZBVhT +[2023-05-10T12:41:34.874Z] - W[undefined] - [info]: name: //testUser_ef7c0415-ddb6-42ee-9b52-c2b6a4bb3e5b, address: 5DPbkeKJWknQxus6rdTcVPt5w2AfuVdNQbua94sZ8mxaoyig +[2023-05-10T12:41:34.879Z] - W[undefined] - [info]: name: //testUser_93ad7808-15d3-468e-aae0-46c9f0eeef96, address: 5CFegQGh1g4x3cWEKBkLF7QousjQNeEkzzHzgQskJxn2Yx3Z +[2023-05-10T12:41:34.885Z] - W[undefined] - [info]: name: //testUser_91d32f07-63e5-4f04-a1e5-5d97c99f6422, address: 5GVx2osyM8g6TprD4jFdxNR7uHUJn9rDq5CbB3TZwdJj6YeM +[2023-05-10T12:41:34.891Z] - W[undefined] - [info]: name: //testUser_bda81bbc-29ff-4b97-b945-c2f79eb55dda, address: 5DWhMgKrVw6JTddjxQR5eYX7ZycMhK4iK6o6BZN6nP6Aw1LL +[2023-05-10T12:41:34.897Z] - W[undefined] - [info]: name: //testUser_ccdc5583-2838-4fae-bf62-823397073c77, address: 5CY9rhGco5581PmzbFdcQSLmAnvSnP7vxYi9v1uNTRYjcwFx +[2023-05-10T12:41:34.903Z] - W[undefined] - [info]: name: //testUser_c16c9d84-8411-4299-aa5b-1bd203b2b5a3, address: 5EFYNqz8e11hsz4vVHyfoze8jmSUt4FTTa6cCmNQkWuC3YmT +[2023-05-10T12:41:34.909Z] - W[undefined] - [info]: name: //testUser_c9067783-9914-4a16-87ce-ede78f00aba3, address: 5Hovd4UtxqVKaqfk5FGXssdxwBXAHh7Y6R6LSRQ5vZ2v2J5z +[2023-05-10T12:41:34.916Z] - W[undefined] - [info]: name: //testUser_2834b753-3ce7-4808-baf0-36adcafb426c, address: 5CBBFugibPVUFvLW1d82Sw77skMJUG8ZcuXrYGToN3wR5c54 +[2023-05-10T12:41:34.922Z] - W[undefined] - [info]: name: //testUser_c66a2081-f6ae-4e2b-9abb-8d03545a3830, address: 5Cr7hs4RetPBh6oBkPJTK8ibNBM4vEXpFzCnZdTZjxu3xnKU +[2023-05-10T12:41:34.927Z] - W[undefined] - [info]: name: //testUser_c3bc205d-2249-4690-9b63-c89c56dc7c67, address: 5DJdSyt13dDGvnAMXENovzuo3hBGvBBJd6V94ebejn2bmZpq +[2023-05-10T12:41:34.933Z] - W[undefined] - [info]: name: //testUser_634d2f11-9f40-4bfd-875e-b9c0ae59b0d7, address: 5HBAHfH2UR1sj886cmSRse91wJZ3upVRuJ3DAhEGpqN81x5R +[2023-05-10T12:41:34.939Z] - W[undefined] - [info]: name: //testUser_ee39eaf5-eb31-4ebb-9f4a-1b6882eb69d3, address: 5Dekq5UM6JUtwquprNcNuWRDEjz8UUvZcxsNYbrck5JAQd1S +[2023-05-10T12:41:34.944Z] - W[undefined] - [info]: name: //testUser_071e4bd2-d391-4c37-b4ed-3098ee421789, address: 5G1NLF3NstogCJ5W2cZzRcXoDq1UAqeX3KZNbBhHCaG2J4A7 +[2023-05-10T12:41:34.950Z] - W[undefined] - [info]: name: //testUser_64c325fd-e1bc-4a08-ae62-f4e2dec995b3, address: 5FcJDjgFPgJ3h5uYn3zMGhfMjx4ePJSuuV98wqTiiqakrYpp +[2023-05-10T12:41:34.955Z] - W[undefined] - [info]: name: //testUser_2a8a2114-64c9-45d4-b0f3-49ca5ee9e10c, address: 5GjQUANBqXFHDNf8vLuACZViiminw9cXkYwyAoKGFEa4k2xy +[2023-05-10T12:41:34.962Z] - W[undefined] - [info]: name: //testUser_97a7dcfa-cdf1-4943-9c11-63e2fb9a6319, address: 5Gb9o5JXmZZqJwaQYJst1a5bxp3creocdpQ1ro8HHocjEECA +[2023-05-10T12:41:34.967Z] - W[undefined] - [info]: name: //testUser_c005ff6b-b873-41ee-ab57-66cbbca545b2, address: 5CMGBC9c8MnU2fdxGXH1MXDdiZkbmGNvX56bSxSfbxyGFywi +[2023-05-10T12:41:34.973Z] - W[undefined] - [info]: name: //testUser_f29b811c-ef95-4326-b1bd-fefa888a0e12, address: 5E4UpDUz6mJBvwRkd3kz7UsSSjVKid66dqh93Vs2jxT79bRf +[2023-05-10T12:41:34.979Z] - W[undefined] - [info]: name: //testUser_ce794a98-828d-435a-afb2-5a50258bd621, address: 5FkKNTpPjMeLsHMwJPcQeGZ1Mb1Ymgj3Fc15Dm9koRoWuwgF +[2023-05-10T12:41:34.985Z] - W[undefined] - [info]: name: //testUser_6bf41446-139d-4e80-801c-3880212c0efc, address: 5Ca5wsuKn6BxP8c1tGpRa7xT6q3dZgFycXA8BPRPtdC27Sij +[2023-05-10T12:41:34.990Z] - W[undefined] - [info]: name: //testUser_f51f5469-804d-42b5-8fec-7311bacdd48e, address: 5EUn7xuu2GuynELjWLtXaBVYitk54HpLEzr4Xamt6ne8nbAE +[2023-05-10T12:41:34.996Z] - W[undefined] - [info]: name: //testUser_e80745c2-64a1-4ffc-8abe-67ce3177ccd8, address: 5ERDycemvHin9DcfMLotaxc8MexQNBWu3geno4zNWb26FuZi +[2023-05-10T12:41:35.001Z] - W[undefined] - [info]: name: //testUser_bb6662d3-e3b4-466a-8e4f-e2b8897c311d, address: 5D7y5CVhXshLVdFp3w1iXPGbvjqZXFLxwFXQC7hmo9hip7BF +[2023-05-10T12:41:35.008Z] - W[undefined] - [info]: name: //testUser_b2ea4329-a09f-46b0-b5fe-576f28f9bb77, address: 5GhA71rKGWZfNDSkvwNjfqwzqvoJMp1rHxtQNTqP26Zi994D +[2023-05-10T12:41:35.013Z] - W[undefined] - [info]: name: //testUser_da3cc54b-0268-4ed3-8bdb-69563789b6be, address: 5HWQuUpSyKVdfsX7ojjMf3oJX7ughgGUPRRenBmucMtAGxdi +[2023-05-10T12:41:35.019Z] - W[undefined] - [info]: name: //testUser_993a1231-539f-4a5b-8e50-d8a6927dfb74, address: 5F76impYA5b7xigMSZTqdbAgX8gLTwXd6A6PV2cjYG54wU9K +[2023-05-10T12:41:35.025Z] - W[undefined] - [info]: name: //testUser_6014fd6c-58af-4e69-b6f9-6208fbd3974c, address: 5FNmWStjqtNa7zDMNLYBrhj7AHywisDrXJ5Duj6Xzam9QVPd +[2023-05-10T12:41:35.030Z] - W[undefined] - [info]: name: //testUser_247ff6ec-8030-4cad-9b13-5cfcbef58350, address: 5GgkuWhsf8LRFvxZNUVgbeRUk81HBHswjuLxdaHtS16fAWRW +[2023-05-10T12:41:35.036Z] - W[undefined] - [info]: name: //testUser_b54e3a38-d94a-4753-8a57-bb465998bf92, address: 5HB6Xmv4tcme4xfxpG82Q562SCd7esgDZz6zYJJ9oeHNC4LB +[2023-05-10T12:41:35.042Z] - W[undefined] - [info]: name: //testUser_08fe1671-661a-4ab3-b395-4abeaa63cc2c, address: 5HVx2DE86PCRHezS6vf6tmfC9KWMXuyVpPLASY76146tsDD6 +[2023-05-10T12:41:35.049Z] - W[undefined] - [info]: name: //testUser_3e24b314-dfa8-49d6-b31c-785785f0be46, address: 5DysY4qEGKYaPPujgSXribJMey6HrtDyTVYtfJo45nZfsN8N +[2023-05-10T12:41:35.055Z] - W[undefined] - [info]: name: //testUser_b2a01979-d04c-4aa0-b191-0df029ef383c, address: 5DZmtd1gitWNmGVboikfy1bsywdg3nPhuYbHMiQhYTAw9CvY +[2023-05-10T12:41:35.062Z] - W[undefined] - [info]: name: //testUser_1439357a-cadc-43fd-928b-75470c081311, address: 5Chbj8rh3EiDpaNVCP5HUVYupdGzb5EqhTZrqc9JACB3PcQJ +[2023-05-10T12:41:35.068Z] - W[undefined] - [info]: name: //testUser_f5beb9c4-25a0-4a69-8bc6-bfb13dfe3e85, address: 5EnZPgZQCuRjiBwAyEe2nBFYZoyfd3685LafSidxLYRCZx3u +[2023-05-10T12:41:35.074Z] - W[undefined] - [info]: name: //testUser_8b42f9a1-e4e9-4188-b6cc-e17f2f939997, address: 5HYMcGcy9G1NcSY6Q7bd5E5Uz18Y3A63qbPQno7WhBJjJ5Ww +[2023-05-10T12:41:35.086Z] - W[undefined] - [info]: Ready +[2023-05-10T12:41:35.086Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJGGG9rRK9uCmiKypnnni3QNhiQZKxgBhRM5Y5A8hkGcm","12D3KooWCvfnugkQEfaYHzy9a1WdWfhUt8kX8su58op4CskZ6Gfn","12D3KooWA5XNhre2YqVWnRJAkP3pxFeCs5WbW2emrXrejVoqyK6M","12D3KooWDKThvpvcjxiNGnEKiV2K9S66i4vJvw7xKFovnwyskacF","12D3KooWF3QwaEoR1MEuPsRZxvUhyGpFNBKd2dMoNpovndE3r3XC"]} +[2023-05-10T12:41:48.036Z] - W[undefined] - [info]: {"inBlock":"0xd3a0528b789574a4251188db70270c8625175aec7169533a34b0aaf6b8fe8359"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: {"inBlock":"0x1f91fddfb261993e4d4efa59fbf3715c8c08c460e692daf7f542184e2b116926"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"218,927,255,954,475,091,452"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GjAqH4VGRHHnLJwjW1Ja7ZNG1JkGD7gmJR9Q82sUAQzFaqZ"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GjAqH4VGRHHnLJwjW1Ja7ZNG1JkGD7gmJR9Q82sUAQzFaqZ","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GjAqH4VGRHHnLJwjW1Ja7ZNG1JkGD7gmJR9Q82sUAQzFaqZ","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GjAqH4VGRHHnLJwjW1Ja7ZNG1JkGD7gmJR9Q82sUAQzFaqZ","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HH7XK36ZfEgeAQg32NGVYYRb12JNyN88PNbhq5T8HkdWstb"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HH7XK36ZfEgeAQg32NGVYYRb12JNyN88PNbhq5T8HkdWstb","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HH7XK36ZfEgeAQg32NGVYYRb12JNyN88PNbhq5T8HkdWstb","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HH7XK36ZfEgeAQg32NGVYYRb12JNyN88PNbhq5T8HkdWstb","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.119Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GEtXiq3Nu1aMr7KLAxUydEf3KzCbWRfa3v984QUrke1JJev"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GEtXiq3Nu1aMr7KLAxUydEf3KzCbWRfa3v984QUrke1JJev","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GEtXiq3Nu1aMr7KLAxUydEf3KzCbWRfa3v984QUrke1JJev","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GEtXiq3Nu1aMr7KLAxUydEf3KzCbWRfa3v984QUrke1JJev","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5D58GfJdM1ChEU3NL9BeR35Ag7vCb6Q54sJrqoFD8M7HHpWM"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5D58GfJdM1ChEU3NL9BeR35Ag7vCb6Q54sJrqoFD8M7HHpWM","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5D58GfJdM1ChEU3NL9BeR35Ag7vCb6Q54sJrqoFD8M7HHpWM","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5D58GfJdM1ChEU3NL9BeR35Ag7vCb6Q54sJrqoFD8M7HHpWM","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5C5G7ND4dDaMMrsE8CQHew8x2Lv7kBWEXGsHMB95q8jFizYC"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5C5G7ND4dDaMMrsE8CQHew8x2Lv7kBWEXGsHMB95q8jFizYC","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5C5G7ND4dDaMMrsE8CQHew8x2Lv7kBWEXGsHMB95q8jFizYC","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5C5G7ND4dDaMMrsE8CQHew8x2Lv7kBWEXGsHMB95q8jFizYC","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Chcg4LZ3DFbzXehmVTKjpeJVvhWoo8VetrqXuwQgfeSQwWL"} +[2023-05-10T12:42:00.120Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Chcg4LZ3DFbzXehmVTKjpeJVvhWoo8VetrqXuwQgfeSQwWL","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Chcg4LZ3DFbzXehmVTKjpeJVvhWoo8VetrqXuwQgfeSQwWL","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Chcg4LZ3DFbzXehmVTKjpeJVvhWoo8VetrqXuwQgfeSQwWL","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DsmD4hmhYz6RF1UmG5njwsUoK4xEFwdryXzg4DtCpnW1W8J"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DsmD4hmhYz6RF1UmG5njwsUoK4xEFwdryXzg4DtCpnW1W8J","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DsmD4hmhYz6RF1UmG5njwsUoK4xEFwdryXzg4DtCpnW1W8J","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DsmD4hmhYz6RF1UmG5njwsUoK4xEFwdryXzg4DtCpnW1W8J","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HbN7qyvwsRFmUGWA2KJgGfcCMvBQWPon7fk4sX3zpvkD8wd"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HbN7qyvwsRFmUGWA2KJgGfcCMvBQWPon7fk4sX3zpvkD8wd","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HbN7qyvwsRFmUGWA2KJgGfcCMvBQWPon7fk4sX3zpvkD8wd","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HbN7qyvwsRFmUGWA2KJgGfcCMvBQWPon7fk4sX3zpvkD8wd","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EfMpD9m22591QgPscEMdL6MgDwJ1kmjhDkLxiYnGXApeRLw"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EfMpD9m22591QgPscEMdL6MgDwJ1kmjhDkLxiYnGXApeRLw","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EfMpD9m22591QgPscEMdL6MgDwJ1kmjhDkLxiYnGXApeRLw","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EfMpD9m22591QgPscEMdL6MgDwJ1kmjhDkLxiYnGXApeRLw","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.121Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FqAHNsKsTZs2pxQ6idbVq93m4AwuWJQx7Z98EpPB1WRViuq"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FqAHNsKsTZs2pxQ6idbVq93m4AwuWJQx7Z98EpPB1WRViuq","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FqAHNsKsTZs2pxQ6idbVq93m4AwuWJQx7Z98EpPB1WRViuq","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FqAHNsKsTZs2pxQ6idbVq93m4AwuWJQx7Z98EpPB1WRViuq","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5D2CsfK7u7PCpwGUT7rVzCzrSer987dLsW9SLBrX2tsiLbR5"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5D2CsfK7u7PCpwGUT7rVzCzrSer987dLsW9SLBrX2tsiLbR5","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5D2CsfK7u7PCpwGUT7rVzCzrSer987dLsW9SLBrX2tsiLbR5","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5D2CsfK7u7PCpwGUT7rVzCzrSer987dLsW9SLBrX2tsiLbR5","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F1qo4kjmdxrHPANVvhxn4nj2CjfU5BvkVC2eXPkfLwFqYAZ"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F1qo4kjmdxrHPANVvhxn4nj2CjfU5BvkVC2eXPkfLwFqYAZ","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F1qo4kjmdxrHPANVvhxn4nj2CjfU5BvkVC2eXPkfLwFqYAZ","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F1qo4kjmdxrHPANVvhxn4nj2CjfU5BvkVC2eXPkfLwFqYAZ","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.122Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HgPQVWo4sW9hv5RCe8xHXDVmNJiJxDVZRLAQ6yGpfgF9C3t"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HgPQVWo4sW9hv5RCe8xHXDVmNJiJxDVZRLAQ6yGpfgF9C3t","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HgPQVWo4sW9hv5RCe8xHXDVmNJiJxDVZRLAQ6yGpfgF9C3t","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HgPQVWo4sW9hv5RCe8xHXDVmNJiJxDVZRLAQ6yGpfgF9C3t","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Cu2AQsqh3w3gWCEFi3pgYEM1R2d1iXHzs9hCLyEkEJdwPN1"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Cu2AQsqh3w3gWCEFi3pgYEM1R2d1iXHzs9hCLyEkEJdwPN1","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Cu2AQsqh3w3gWCEFi3pgYEM1R2d1iXHzs9hCLyEkEJdwPN1","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Cu2AQsqh3w3gWCEFi3pgYEM1R2d1iXHzs9hCLyEkEJdwPN1","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EPZgoqR4GeCp8ANzY1wZPr1jgi6fcSTp7PGfn9p4q6ZBVhT"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EPZgoqR4GeCp8ANzY1wZPr1jgi6fcSTp7PGfn9p4q6ZBVhT","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EPZgoqR4GeCp8ANzY1wZPr1jgi6fcSTp7PGfn9p4q6ZBVhT","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EPZgoqR4GeCp8ANzY1wZPr1jgi6fcSTp7PGfn9p4q6ZBVhT","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DPbkeKJWknQxus6rdTcVPt5w2AfuVdNQbua94sZ8mxaoyig"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DPbkeKJWknQxus6rdTcVPt5w2AfuVdNQbua94sZ8mxaoyig","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.123Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DPbkeKJWknQxus6rdTcVPt5w2AfuVdNQbua94sZ8mxaoyig","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DPbkeKJWknQxus6rdTcVPt5w2AfuVdNQbua94sZ8mxaoyig","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CFegQGh1g4x3cWEKBkLF7QousjQNeEkzzHzgQskJxn2Yx3Z"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CFegQGh1g4x3cWEKBkLF7QousjQNeEkzzHzgQskJxn2Yx3Z","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CFegQGh1g4x3cWEKBkLF7QousjQNeEkzzHzgQskJxn2Yx3Z","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CFegQGh1g4x3cWEKBkLF7QousjQNeEkzzHzgQskJxn2Yx3Z","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GVx2osyM8g6TprD4jFdxNR7uHUJn9rDq5CbB3TZwdJj6YeM"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GVx2osyM8g6TprD4jFdxNR7uHUJn9rDq5CbB3TZwdJj6YeM","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GVx2osyM8g6TprD4jFdxNR7uHUJn9rDq5CbB3TZwdJj6YeM","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GVx2osyM8g6TprD4jFdxNR7uHUJn9rDq5CbB3TZwdJj6YeM","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DWhMgKrVw6JTddjxQR5eYX7ZycMhK4iK6o6BZN6nP6Aw1LL"} +[2023-05-10T12:42:00.124Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DWhMgKrVw6JTddjxQR5eYX7ZycMhK4iK6o6BZN6nP6Aw1LL","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DWhMgKrVw6JTddjxQR5eYX7ZycMhK4iK6o6BZN6nP6Aw1LL","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DWhMgKrVw6JTddjxQR5eYX7ZycMhK4iK6o6BZN6nP6Aw1LL","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CY9rhGco5581PmzbFdcQSLmAnvSnP7vxYi9v1uNTRYjcwFx"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CY9rhGco5581PmzbFdcQSLmAnvSnP7vxYi9v1uNTRYjcwFx","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CY9rhGco5581PmzbFdcQSLmAnvSnP7vxYi9v1uNTRYjcwFx","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CY9rhGco5581PmzbFdcQSLmAnvSnP7vxYi9v1uNTRYjcwFx","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EFYNqz8e11hsz4vVHyfoze8jmSUt4FTTa6cCmNQkWuC3YmT"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EFYNqz8e11hsz4vVHyfoze8jmSUt4FTTa6cCmNQkWuC3YmT","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EFYNqz8e11hsz4vVHyfoze8jmSUt4FTTa6cCmNQkWuC3YmT","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EFYNqz8e11hsz4vVHyfoze8jmSUt4FTTa6cCmNQkWuC3YmT","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.125Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.126Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Hovd4UtxqVKaqfk5FGXssdxwBXAHh7Y6R6LSRQ5vZ2v2J5z"} +[2023-05-10T12:42:00.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Hovd4UtxqVKaqfk5FGXssdxwBXAHh7Y6R6LSRQ5vZ2v2J5z","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Hovd4UtxqVKaqfk5FGXssdxwBXAHh7Y6R6LSRQ5vZ2v2J5z","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Hovd4UtxqVKaqfk5FGXssdxwBXAHh7Y6R6LSRQ5vZ2v2J5z","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CBBFugibPVUFvLW1d82Sw77skMJUG8ZcuXrYGToN3wR5c54"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CBBFugibPVUFvLW1d82Sw77skMJUG8ZcuXrYGToN3wR5c54","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CBBFugibPVUFvLW1d82Sw77skMJUG8ZcuXrYGToN3wR5c54","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CBBFugibPVUFvLW1d82Sw77skMJUG8ZcuXrYGToN3wR5c54","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Cr7hs4RetPBh6oBkPJTK8ibNBM4vEXpFzCnZdTZjxu3xnKU"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Cr7hs4RetPBh6oBkPJTK8ibNBM4vEXpFzCnZdTZjxu3xnKU","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Cr7hs4RetPBh6oBkPJTK8ibNBM4vEXpFzCnZdTZjxu3xnKU","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Cr7hs4RetPBh6oBkPJTK8ibNBM4vEXpFzCnZdTZjxu3xnKU","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DJdSyt13dDGvnAMXENovzuo3hBGvBBJd6V94ebejn2bmZpq"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DJdSyt13dDGvnAMXENovzuo3hBGvBBJd6V94ebejn2bmZpq","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DJdSyt13dDGvnAMXENovzuo3hBGvBBJd6V94ebejn2bmZpq","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DJdSyt13dDGvnAMXENovzuo3hBGvBBJd6V94ebejn2bmZpq","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HBAHfH2UR1sj886cmSRse91wJZ3upVRuJ3DAhEGpqN81x5R"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HBAHfH2UR1sj886cmSRse91wJZ3upVRuJ3DAhEGpqN81x5R","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HBAHfH2UR1sj886cmSRse91wJZ3upVRuJ3DAhEGpqN81x5R","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HBAHfH2UR1sj886cmSRse91wJZ3upVRuJ3DAhEGpqN81x5R","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Dekq5UM6JUtwquprNcNuWRDEjz8UUvZcxsNYbrck5JAQd1S"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Dekq5UM6JUtwquprNcNuWRDEjz8UUvZcxsNYbrck5JAQd1S","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Dekq5UM6JUtwquprNcNuWRDEjz8UUvZcxsNYbrck5JAQd1S","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Dekq5UM6JUtwquprNcNuWRDEjz8UUvZcxsNYbrck5JAQd1S","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G1NLF3NstogCJ5W2cZzRcXoDq1UAqeX3KZNbBhHCaG2J4A7"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G1NLF3NstogCJ5W2cZzRcXoDq1UAqeX3KZNbBhHCaG2J4A7","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G1NLF3NstogCJ5W2cZzRcXoDq1UAqeX3KZNbBhHCaG2J4A7","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G1NLF3NstogCJ5W2cZzRcXoDq1UAqeX3KZNbBhHCaG2J4A7","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.128Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FcJDjgFPgJ3h5uYn3zMGhfMjx4ePJSuuV98wqTiiqakrYpp"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FcJDjgFPgJ3h5uYn3zMGhfMjx4ePJSuuV98wqTiiqakrYpp","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FcJDjgFPgJ3h5uYn3zMGhfMjx4ePJSuuV98wqTiiqakrYpp","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FcJDjgFPgJ3h5uYn3zMGhfMjx4ePJSuuV98wqTiiqakrYpp","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GjQUANBqXFHDNf8vLuACZViiminw9cXkYwyAoKGFEa4k2xy"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GjQUANBqXFHDNf8vLuACZViiminw9cXkYwyAoKGFEa4k2xy","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GjQUANBqXFHDNf8vLuACZViiminw9cXkYwyAoKGFEa4k2xy","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GjQUANBqXFHDNf8vLuACZViiminw9cXkYwyAoKGFEa4k2xy","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Gb9o5JXmZZqJwaQYJst1a5bxp3creocdpQ1ro8HHocjEECA"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Gb9o5JXmZZqJwaQYJst1a5bxp3creocdpQ1ro8HHocjEECA","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Gb9o5JXmZZqJwaQYJst1a5bxp3creocdpQ1ro8HHocjEECA","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Gb9o5JXmZZqJwaQYJst1a5bxp3creocdpQ1ro8HHocjEECA","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CMGBC9c8MnU2fdxGXH1MXDdiZkbmGNvX56bSxSfbxyGFywi"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CMGBC9c8MnU2fdxGXH1MXDdiZkbmGNvX56bSxSfbxyGFywi","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.129Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CMGBC9c8MnU2fdxGXH1MXDdiZkbmGNvX56bSxSfbxyGFywi","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CMGBC9c8MnU2fdxGXH1MXDdiZkbmGNvX56bSxSfbxyGFywi","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5E4UpDUz6mJBvwRkd3kz7UsSSjVKid66dqh93Vs2jxT79bRf"} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5E4UpDUz6mJBvwRkd3kz7UsSSjVKid66dqh93Vs2jxT79bRf","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5E4UpDUz6mJBvwRkd3kz7UsSSjVKid66dqh93Vs2jxT79bRf","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5E4UpDUz6mJBvwRkd3kz7UsSSjVKid66dqh93Vs2jxT79bRf","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.130Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FkKNTpPjMeLsHMwJPcQeGZ1Mb1Ymgj3Fc15Dm9koRoWuwgF"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FkKNTpPjMeLsHMwJPcQeGZ1Mb1Ymgj3Fc15Dm9koRoWuwgF","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FkKNTpPjMeLsHMwJPcQeGZ1Mb1Ymgj3Fc15Dm9koRoWuwgF","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FkKNTpPjMeLsHMwJPcQeGZ1Mb1Ymgj3Fc15Dm9koRoWuwgF","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ca5wsuKn6BxP8c1tGpRa7xT6q3dZgFycXA8BPRPtdC27Sij"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ca5wsuKn6BxP8c1tGpRa7xT6q3dZgFycXA8BPRPtdC27Sij","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ca5wsuKn6BxP8c1tGpRa7xT6q3dZgFycXA8BPRPtdC27Sij","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ca5wsuKn6BxP8c1tGpRa7xT6q3dZgFycXA8BPRPtdC27Sij","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EUn7xuu2GuynELjWLtXaBVYitk54HpLEzr4Xamt6ne8nbAE"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EUn7xuu2GuynELjWLtXaBVYitk54HpLEzr4Xamt6ne8nbAE","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EUn7xuu2GuynELjWLtXaBVYitk54HpLEzr4Xamt6ne8nbAE","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EUn7xuu2GuynELjWLtXaBVYitk54HpLEzr4Xamt6ne8nbAE","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ERDycemvHin9DcfMLotaxc8MexQNBWu3geno4zNWb26FuZi"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ERDycemvHin9DcfMLotaxc8MexQNBWu3geno4zNWb26FuZi","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.131Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ERDycemvHin9DcfMLotaxc8MexQNBWu3geno4zNWb26FuZi","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ERDycemvHin9DcfMLotaxc8MexQNBWu3geno4zNWb26FuZi","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5D7y5CVhXshLVdFp3w1iXPGbvjqZXFLxwFXQC7hmo9hip7BF"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5D7y5CVhXshLVdFp3w1iXPGbvjqZXFLxwFXQC7hmo9hip7BF","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5D7y5CVhXshLVdFp3w1iXPGbvjqZXFLxwFXQC7hmo9hip7BF","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5D7y5CVhXshLVdFp3w1iXPGbvjqZXFLxwFXQC7hmo9hip7BF","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GhA71rKGWZfNDSkvwNjfqwzqvoJMp1rHxtQNTqP26Zi994D"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GhA71rKGWZfNDSkvwNjfqwzqvoJMp1rHxtQNTqP26Zi994D","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GhA71rKGWZfNDSkvwNjfqwzqvoJMp1rHxtQNTqP26Zi994D","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GhA71rKGWZfNDSkvwNjfqwzqvoJMp1rHxtQNTqP26Zi994D","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HWQuUpSyKVdfsX7ojjMf3oJX7ughgGUPRRenBmucMtAGxdi"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HWQuUpSyKVdfsX7ojjMf3oJX7ughgGUPRRenBmucMtAGxdi","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HWQuUpSyKVdfsX7ojjMf3oJX7ughgGUPRRenBmucMtAGxdi","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HWQuUpSyKVdfsX7ojjMf3oJX7ughgGUPRRenBmucMtAGxdi","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.132Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F76impYA5b7xigMSZTqdbAgX8gLTwXd6A6PV2cjYG54wU9K"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F76impYA5b7xigMSZTqdbAgX8gLTwXd6A6PV2cjYG54wU9K","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F76impYA5b7xigMSZTqdbAgX8gLTwXd6A6PV2cjYG54wU9K","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F76impYA5b7xigMSZTqdbAgX8gLTwXd6A6PV2cjYG54wU9K","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FNmWStjqtNa7zDMNLYBrhj7AHywisDrXJ5Duj6Xzam9QVPd"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FNmWStjqtNa7zDMNLYBrhj7AHywisDrXJ5Duj6Xzam9QVPd","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FNmWStjqtNa7zDMNLYBrhj7AHywisDrXJ5Duj6Xzam9QVPd","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FNmWStjqtNa7zDMNLYBrhj7AHywisDrXJ5Duj6Xzam9QVPd","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GgkuWhsf8LRFvxZNUVgbeRUk81HBHswjuLxdaHtS16fAWRW"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GgkuWhsf8LRFvxZNUVgbeRUk81HBHswjuLxdaHtS16fAWRW","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GgkuWhsf8LRFvxZNUVgbeRUk81HBHswjuLxdaHtS16fAWRW","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GgkuWhsf8LRFvxZNUVgbeRUk81HBHswjuLxdaHtS16fAWRW","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HB6Xmv4tcme4xfxpG82Q562SCd7esgDZz6zYJJ9oeHNC4LB"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HB6Xmv4tcme4xfxpG82Q562SCd7esgDZz6zYJJ9oeHNC4LB","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HB6Xmv4tcme4xfxpG82Q562SCd7esgDZz6zYJJ9oeHNC4LB","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HB6Xmv4tcme4xfxpG82Q562SCd7esgDZz6zYJJ9oeHNC4LB","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.133Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HVx2DE86PCRHezS6vf6tmfC9KWMXuyVpPLASY76146tsDD6"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HVx2DE86PCRHezS6vf6tmfC9KWMXuyVpPLASY76146tsDD6","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HVx2DE86PCRHezS6vf6tmfC9KWMXuyVpPLASY76146tsDD6","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HVx2DE86PCRHezS6vf6tmfC9KWMXuyVpPLASY76146tsDD6","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DysY4qEGKYaPPujgSXribJMey6HrtDyTVYtfJo45nZfsN8N"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DysY4qEGKYaPPujgSXribJMey6HrtDyTVYtfJo45nZfsN8N","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DysY4qEGKYaPPujgSXribJMey6HrtDyTVYtfJo45nZfsN8N","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DysY4qEGKYaPPujgSXribJMey6HrtDyTVYtfJo45nZfsN8N","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.134Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DZmtd1gitWNmGVboikfy1bsywdg3nPhuYbHMiQhYTAw9CvY"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DZmtd1gitWNmGVboikfy1bsywdg3nPhuYbHMiQhYTAw9CvY","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DZmtd1gitWNmGVboikfy1bsywdg3nPhuYbHMiQhYTAw9CvY","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DZmtd1gitWNmGVboikfy1bsywdg3nPhuYbHMiQhYTAw9CvY","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Chbj8rh3EiDpaNVCP5HUVYupdGzb5EqhTZrqc9JACB3PcQJ"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Chbj8rh3EiDpaNVCP5HUVYupdGzb5EqhTZrqc9JACB3PcQJ","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Chbj8rh3EiDpaNVCP5HUVYupdGzb5EqhTZrqc9JACB3PcQJ","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Chbj8rh3EiDpaNVCP5HUVYupdGzb5EqhTZrqc9JACB3PcQJ","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.135Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EnZPgZQCuRjiBwAyEe2nBFYZoyfd3685LafSidxLYRCZx3u"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EnZPgZQCuRjiBwAyEe2nBFYZoyfd3685LafSidxLYRCZx3u","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EnZPgZQCuRjiBwAyEe2nBFYZoyfd3685LafSidxLYRCZx3u","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EnZPgZQCuRjiBwAyEe2nBFYZoyfd3685LafSidxLYRCZx3u","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HYMcGcy9G1NcSY6Q7bd5E5Uz18Y3A63qbPQno7WhBJjJ5Ww"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HYMcGcy9G1NcSY6Q7bd5E5Uz18Y3A63qbPQno7WhBJjJ5Ww","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HYMcGcy9G1NcSY6Q7bd5E5Uz18Y3A63qbPQno7WhBJjJ5Ww","amount":"100,000,000,000,012,340,000"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HYMcGcy9G1NcSY6Q7bd5E5Uz18Y3A63qbPQno7WhBJjJ5Ww","100,000,000,000,012,340,000"] +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"218,927,255,954,475,091,452"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"218,927,255,954,475,091,452","tip":"0"} +[2023-05-10T12:42:00.136Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"23,380,133,453","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T12:43:20.703Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T12:43:20.712Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 31 +[2023-05-10T14:47:35.585Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T14:47:35.594Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 37 +[2023-05-10T14:58:50.496Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:01:11.377Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:16:40.410Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:16:40.552Z] - W[undefined] - [info]: name: //testUser_75a6d94e-2029-4964-857f-dbf65403739a, address: 5CoW4ir1RvDynoW7vEk2gKTrmaD7aTgsFXECnD41wtFMSK4A +[2023-05-10T15:16:40.558Z] - W[undefined] - [info]: name: //testUser_87252d8c-a97c-40c2-b895-08564a1fcde2, address: 5FH8QB1d74mY7iq8MzXbVUXntKSE3DxdfJRTzYFBnMwJZpD8 +[2023-05-10T15:16:40.563Z] - W[undefined] - [info]: name: //testUser_5269ce9a-c708-4b3e-8b82-a481dd59aafe, address: 5FC2qD322j1AsSYHaXcfhZj3A4UpjBQeEAfc4rNXSRW4ZiBL +[2023-05-10T15:16:40.569Z] - W[undefined] - [info]: name: //testUser_64c4b590-3639-40d4-bbe0-412937b36a87, address: 5FgtWCUqKazsF9WzYgeQEFrmvH2RDRd8xYapGVuzoDoN7nuw +[2023-05-10T15:16:40.602Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 0 +[2023-05-10T15:17:12.055Z] - W[undefined] - [info]: [{"event":{"index":"0x0a08","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Withdrawn","metaDocumentation":"[Some balances were withdrawn (e.g. pay for transaction fee)]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0a00","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Endowed","metaDocumentation":"[An account was created with some free balance.]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0a","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0d","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Issued","metaDocumentation":"[A token was issued.]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x3d00","data":[{"ok":null}]},"phase":{"applyExtrinsic":2},"section":"sudo","method":"Sudid","metaDocumentation":"[A sudo just took place. \\[result\\]]","eventData":[{"data":{"ok":null}}],"error":null},{"event":{"index":"0x0a0a","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0b00","data":["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",0,0]},"phase":{"applyExtrinsic":2},"section":"transactionPayment","method":"TransactionFeePaid","metaDocumentation":"[A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,, has been paid by `who`.]","eventData":[{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000000000000000000000"},{"data":"0x00000000000000000000000000000000"}],"error":null},{"event":{"index":"0x0000","data":[{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}]},"phase":{"applyExtrinsic":2},"section":"system","method":"ExtrinsicSuccess","metaDocumentation":"[An extrinsic completed successfully.]","eventData":[{"lookupName":"FrameSupportDispatchDispatchInfo","data":{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}}],"error":null}] +[2023-05-10T15:17:12.093Z] - W[undefined] - [info]: Ready +[2023-05-10T15:17:12.094Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:17:36.064Z] - W[undefined] - [info]: {"inBlock":"0x627ffd3cc105a777e75f303e0462c0e61338584320546b67644d14716f0485e1"} +[2023-05-10T15:17:48.055Z] - W[undefined] - [info]: {"inBlock":"0x15e67fba799fe68b3baefb87fc203ce010021aa8f5b287b5b55922dfb5523442"} +[2023-05-10T15:17:48.056Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"56,611,936,629,256,965,939"} +[2023-05-10T15:17:48.056Z] - W[undefined] - [info]: mangata -> issuance.TGEFinalized: {} +[2023-05-10T15:17:48.056Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.056Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> issuance.IssuanceConfigInitialized: [{"cap":"4,000,000,000,000,000,000,000,000,000","issuanceAtInit":"780,000,000,000,000,023,420,993,536","linearIssuanceBlocks":"13,140,000","liquidityMiningSplit":"55.55%","stakingSplit":"44.44%","totalCrowdloanAllocation":"330,000,000,000,000,000,000,000,000"}] +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.057Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.058Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.059Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.060Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.060Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.060Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> assetRegistry.RegisteredAsset: {"assetId":"9","metadata":{"decimals":"18","name":"LiquidityPoolToken0x00000009","symbol":"TKN0x00000000-TKN0x00000008","existentialDeposit":"0","location":null,"additional":{"xcm":null,"xyk":null}}} +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> xyk.PoolCreated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:17:48.061Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:17:48.062Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:17:48.062Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:17:48.062Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"56,611,936,629,256,965,939"} +[2023-05-10T15:17:48.062Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"56,611,936,629,256,965,939","tip":"0"} +[2023-05-10T15:17:48.062Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"6,081,250,747","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:17:48.094Z] - W[undefined] - [info]: Ready +[2023-05-10T15:17:48.094Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:18:12.038Z] - W[undefined] - [info]: {"inBlock":"0x5e6e8a084c91d54335e52595a54fa8e0908d197a7a367bd1fe812c0fcf51139d"} +[2023-05-10T15:18:24.048Z] - W[undefined] - [info]: {"inBlock":"0x2589cc036976fcf3998e7058c91ae22013a5e7acfca98136659fb3105c535289"} +[2023-05-10T15:18:24.048Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"66,094,972,760,695,187,160"} +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> proofOfStake.PoolPromotionUpdated: ["9","20"] +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.049Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.050Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.051Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"66,094,972,760,695,187,160"} +[2023-05-10T15:18:24.052Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"66,094,972,760,695,187,160","tip":"0"} +[2023-05-10T15:18:24.053Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"7,273,130,023","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:18:24.056Z] - W[undefined] - [info]: #64 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T15:18:36.018Z] - W[undefined] - [info]: #65 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T15:18:48.014Z] - W[undefined] - [info]: #66 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T15:19:00.016Z] - W[undefined] - [info]: #67 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T15:19:12.016Z] - W[undefined] - [info]: #68 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-10T15:19:43.397Z] - W[undefined] - [info]: name: //testUser_f460a23c-3d8f-4ce8-94f7-3e3f04c51e28, address: 5GMq5b26cbvbbfPTqNpQ6bm3JcZDH5uYFw95DcPcEnfrenfC +[2023-05-10T15:19:43.403Z] - W[undefined] - [info]: name: //testUser_58124832-02a7-4ec4-a011-92cb522d3ed3, address: 5GsZu7i1nnRkNeM4VCZknTZtb58z716CjNmqzwdiUU3KNEdZ +[2023-05-10T15:19:43.408Z] - W[undefined] - [info]: name: //testUser_9f2fe00f-23bb-4061-bf0a-d63b28693899, address: 5DRwxUMtftsAW3X1hv3eipYhrydrBgAiJjA9aNKUuogAabvJ +[2023-05-10T15:19:43.414Z] - W[undefined] - [info]: name: //testUser_4c6e1678-d867-423a-b329-0b0400e228be, address: 5DPi7RNgw9B5nLx6fAUS12SvPTEbFN2g7QfhVEEqvEFkwT7W +[2023-05-10T15:19:43.442Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 3 +[2023-05-10T15:20:12.050Z] - W[undefined] - [info]: [{"event":{"index":"0x0a08","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Withdrawn","metaDocumentation":"[Some balances were withdrawn (e.g. pay for transaction fee)]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0a00","data":[10,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Endowed","metaDocumentation":"[An account was created with some free balance.]","eventData":[{"data":"0x0000000a"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0a","data":[10,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x0000000a"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0d","data":[10,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Issued","metaDocumentation":"[A token was issued.]","eventData":[{"data":"0x0000000a"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x3d00","data":[{"ok":null}]},"phase":{"applyExtrinsic":2},"section":"sudo","method":"Sudid","metaDocumentation":"[A sudo just took place. \\[result\\]]","eventData":[{"data":{"ok":null}}],"error":null},{"event":{"index":"0x0a0a","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0b00","data":["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",0,0]},"phase":{"applyExtrinsic":2},"section":"transactionPayment","method":"TransactionFeePaid","metaDocumentation":"[A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,, has been paid by `who`.]","eventData":[{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000000000000000000000"},{"data":"0x00000000000000000000000000000000"}],"error":null},{"event":{"index":"0x0000","data":[{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}]},"phase":{"applyExtrinsic":2},"section":"system","method":"ExtrinsicSuccess","metaDocumentation":"[An extrinsic completed successfully.]","eventData":[{"lookupName":"FrameSupportDispatchDispatchInfo","data":{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}}],"error":null}] +[2023-05-10T15:20:12.064Z] - W[undefined] - [info]: Ready +[2023-05-10T15:20:12.065Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:20:36.040Z] - W[undefined] - [info]: {"inBlock":"0xd6b0ec11b9fe17011b460ae6e496e186fd03e3440a2956ae1fef9dd9fdb73fbe"} +[2023-05-10T15:20:48.045Z] - W[undefined] - [info]: {"inBlock":"0x6e095c1dd185901b693ba293e76df3130ef6b7da78f80be2896e50bef2766336"} +[2023-05-10T15:20:48.045Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"56,611,936,629,256,965,939"} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":{"Err":{"Module":{"index":"19","error":"0x03000000"}}}} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":{"Err":{"Module":{"index":"19","error":"0x00000000"}}}} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.046Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.047Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.047Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.047Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.047Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"10","who":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> assetRegistry.RegisteredAsset: {"assetId":"11","metadata":{"decimals":"18","name":"LiquidityPoolToken0x0000000B","symbol":"TKN0x00000000-TKN0x0000000A","existentialDeposit":"0","location":null,"additional":{"xcm":null,"xyk":null}}} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> xyk.PoolCreated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"56,611,936,629,256,965,939"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"56,611,936,629,256,965,939","tip":"0"} +[2023-05-10T15:20:48.049Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"6,081,250,747","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:20:48.063Z] - W[undefined] - [info]: Ready +[2023-05-10T15:20:48.063Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:21:24.033Z] - W[undefined] - [info]: {"inBlock":"0x7f8b8e7404b9774c2eedfecec73920fcb676ee091e2ce07b24b79ba48514164a"} +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: {"inBlock":"0xda13a3d0780e94a198ae75cdbfe73a58b0bc6795b30924d982d73670b16f9c20"} +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"66,094,972,760,695,187,160"} +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: mangata -> proofOfStake.PoolPromotionUpdated: ["11","20"] +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:21:36.057Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.058Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:21:36.059Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:21:36.059Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.059Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:21:36.059Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.059Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.059Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.059Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.060Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","150,000,000,000,000,000,000,000,000","10","150,000,000,000,000,000,000,000,001","11","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:21:36.061Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:21:36.061Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:21:36.061Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:21:36.061Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"66,094,972,760,695,187,160"} +[2023-05-10T15:21:36.061Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"66,094,972,760,695,187,160","tip":"0"} +[2023-05-10T15:21:36.061Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"7,273,130,023","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:21:36.074Z] - W[undefined] - [info]: #80 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:21:48.017Z] - W[undefined] - [info]: #81 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:22:00.016Z] - W[undefined] - [info]: #82 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:22:12.016Z] - W[undefined] - [info]: #83 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:22:24.016Z] - W[undefined] - [info]: #84 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:22:36.016Z] - W[undefined] - [info]: #85 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:22:48.016Z] - W[undefined] - [info]: #86 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:23:00.014Z] - W[undefined] - [info]: #87 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:23:12.018Z] - W[undefined] - [info]: #88 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP11) - no rewards yet +[2023-05-10T15:23:24.017Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:23:24.028Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 6 +[2023-05-10T15:24:00.051Z] - W[undefined] - [info]: name: //testUser_9f74b23d-84dd-46bc-b181-5e478a3c162e, address: 5HBEiUAPUAd4pzRQwpm8Lyve43zWvcqyA9KfPgJa4HkMdwk9 +[2023-05-10T15:24:00.057Z] - W[undefined] - [info]: name: //testUser_7828c0d0-8c79-4597-885c-4f996aa6a583, address: 5HEM61ykGnBgwBdbDoJR4TuSEg2dvHw4CGJLyyW6T96SEU9z +[2023-05-10T15:24:00.064Z] - W[undefined] - [info]: name: //testUser_b70391da-fea3-43b3-9b08-a80a6bfccbf5, address: 5HGXNeTPLEXXHfqLEJTAPBU1Hs1fbKReXojZoQrkPeoJ8J7b +[2023-05-10T15:24:00.069Z] - W[undefined] - [info]: name: //testUser_94060ffe-baee-491b-867c-d8ff25c0c57d, address: 5FsFJtPui2mfh6sviqAwZH5Ei2hLZL4kD18B7fknR1op9DFD +[2023-05-10T15:24:00.093Z] - W[undefined] - [info]: Ready +[2023-05-10T15:24:00.094Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:24:24.034Z] - W[undefined] - [info]: {"inBlock":"0x9a9e65ae95241e7c9a041a1df7878a0f4960d6832cbc5b19ede9ffe093b347d1"} +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: {"inBlock":"0x061d223fc2129afd194461d5c19565d82404504ff6686b0ed9f1003fa9035a77"} +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"10","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["10","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T15:24:36.035Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:24:36.036Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:24:36.036Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"10","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,135"} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"11","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","11","3,000,000,000,000,000,002,469,134"] +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","3,000,000,000,000,000,002,469,134","10","3,000,000,000,000,000,002,469,135","11","3,000,000,000,000,000,002,469,134"] +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"26,220,999,111,666,197,577"} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,220,999,111,666,197,577","tip":"0"} +[2023-05-10T15:24:36.037Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:28:03.531Z] - W[undefined] - [info]: name: //testUser_66d05992-d4ee-4e41-8225-2f0d0686d64d, address: 5ExZQZKfJqAQEDBX5ftX1draHoPHnTCEXaM1k2FsGgU6qn7z +[2023-05-10T15:28:03.537Z] - W[undefined] - [info]: name: //testUser_4d939ccc-7803-45a9-acab-b8a0c1f9f77d, address: 5DXboBtN8Zvs4BsYaAgH8qwq7KwvjrdW6Eo5R3wzvDN1tsBo +[2023-05-10T15:28:03.542Z] - W[undefined] - [info]: name: //testUser_57f9c40e-9dfa-4b6e-940b-086dda68d2c3, address: 5DyvzTwXEBJ81tD8tC1LMrzYpR3rTaUvnR3NKufN4sNXV5yM +[2023-05-10T15:28:03.547Z] - W[undefined] - [info]: name: //testUser_865f476a-9307-4acf-aee4-0b144eab9f4a, address: 5Cr2suUf1ggmqjydGpLkS2fxxWdscWddznSnLXtfBjmJoRxx +[2023-05-10T15:28:03.564Z] - W[undefined] - [info]: pool 0-undefined has balance of [0,0]-[0,0] +[2023-05-10T15:28:37.343Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:28:37.480Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 8 +[2023-05-10T15:30:34.821Z] - W[undefined] - [info]: name: //testUser_caa7144b-bfed-4022-92f8-4e88cc0cc454, address: 5CA9kJkXNW7i24Zg5QWDGb528cCGKKxnrNM58XPDGxf2gnYF +[2023-05-10T15:30:34.827Z] - W[undefined] - [info]: name: //testUser_cf2fe2a5-636e-4b4f-ab04-dd3e26fb4871, address: 5Eq9yAd7XfskujSMfBywpDZWdy6gHHBcBNVbXUshgfXGfC38 +[2023-05-10T15:30:34.833Z] - W[undefined] - [info]: name: //testUser_e0eb570e-841f-4e12-badd-2b2a2da2b4f4, address: 5EvqTvw3kzA2LDGZ11jDgVbdbdBCvJmaXD57yCa9Cg8Yp5Ns +[2023-05-10T15:30:34.838Z] - W[undefined] - [info]: name: //testUser_576f1b0b-3940-4fff-8920-c1c956324af3, address: 5CzR1pYUKjRF2u7XCKB6HJv44i2YGeCU9gmvkEUwC7dqX4Xc +[2023-05-10T15:30:34.839Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:30:34.858Z] - W[undefined] - [info]: pool 0-8 has balance of ["0x00000000026c62ad77dc602dae000000","0x00000000026c62ad77dc602dae000004"]-[0,0] +[2023-05-10T15:30:34.865Z] - W[undefined] - [info]: name: //testUser_a1e615fc-b628-478e-a182-398493a17a7e, address: 5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ +[2023-05-10T15:30:34.874Z] - W[undefined] - [info]: name: //testUser_3a100ede-6777-4a89-97e6-47325b30cc0d, address: 5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci +[2023-05-10T15:30:34.881Z] - W[undefined] - [info]: name: //testUser_a8644f0c-a2c2-43b8-915e-e155b2846098, address: 5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh +[2023-05-10T15:30:34.888Z] - W[undefined] - [info]: name: //testUser_0e8e5c80-5332-4d73-a0d3-b78c534aa026, address: 5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN +[2023-05-10T15:30:34.895Z] - W[undefined] - [info]: name: //testUser_a3baac92-4a0d-4474-960f-46a1c9ce5c68, address: 5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk +[2023-05-10T15:30:34.902Z] - W[undefined] - [info]: name: //testUser_0a099f11-83d7-47d9-9132-334cb2517a4c, address: 5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr +[2023-05-10T15:30:34.908Z] - W[undefined] - [info]: name: //testUser_cc157544-76bf-4a5d-8048-27b47686a9d4, address: 5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166 +[2023-05-10T15:30:34.916Z] - W[undefined] - [info]: name: //testUser_79c0a68f-e87c-41af-9fd0-794204539035, address: 5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB +[2023-05-10T15:30:34.922Z] - W[undefined] - [info]: name: //testUser_fd2cd8bf-25db-4507-bd65-2c58bc333752, address: 5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7 +[2023-05-10T15:30:34.929Z] - W[undefined] - [info]: name: //testUser_75e5021d-1659-4952-8c89-8bdc6f4dab18, address: 5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt +[2023-05-10T15:30:34.937Z] - W[undefined] - [info]: name: //testUser_c6abca97-570f-4ad9-a60e-1838c25675a5, address: 5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz +[2023-05-10T15:30:34.946Z] - W[undefined] - [info]: name: //testUser_7ef4e25f-49a4-436e-a0ef-6dbda5b44b27, address: 5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ +[2023-05-10T15:30:34.953Z] - W[undefined] - [info]: name: //testUser_592d542b-6c2a-4a85-81fa-f34d078ebeab, address: 5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD +[2023-05-10T15:30:34.961Z] - W[undefined] - [info]: name: //testUser_9e4b4ad5-a73a-45ac-b20c-86e205006e1f, address: 5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1 +[2023-05-10T15:30:34.967Z] - W[undefined] - [info]: name: //testUser_9428294e-37c1-49ea-80e7-98757148c569, address: 5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC +[2023-05-10T15:30:34.974Z] - W[undefined] - [info]: name: //testUser_79f402a1-863f-4b6c-8480-10ca8211c3d6, address: 5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ +[2023-05-10T15:30:34.981Z] - W[undefined] - [info]: name: //testUser_a4c56808-194e-406c-b666-906705da3e49, address: 5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5 +[2023-05-10T15:30:34.988Z] - W[undefined] - [info]: name: //testUser_b86e64d8-e6b7-4435-a7af-f5d8b24ebed1, address: 5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK +[2023-05-10T15:30:34.994Z] - W[undefined] - [info]: name: //testUser_0abbc10a-df26-4ab0-aca7-45584f993f9c, address: 5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M +[2023-05-10T15:30:35.001Z] - W[undefined] - [info]: name: //testUser_61831586-2e07-441c-bbaf-d6d17885a0c3, address: 5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe +[2023-05-10T15:30:35.008Z] - W[undefined] - [info]: name: //testUser_f05b7716-dd41-40d8-8de1-a68a3e6dc1ce, address: 5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a +[2023-05-10T15:30:35.014Z] - W[undefined] - [info]: name: //testUser_cde4492e-d2f6-4b69-82ba-c08e558bf404, address: 5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL +[2023-05-10T15:30:35.020Z] - W[undefined] - [info]: name: //testUser_6abe4693-8985-48b1-8ae8-e93dd461b305, address: 5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi +[2023-05-10T15:30:35.026Z] - W[undefined] - [info]: name: //testUser_957ba5a6-75fa-45b1-9fba-210fa7bd6cec, address: 5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS +[2023-05-10T15:30:35.033Z] - W[undefined] - [info]: name: //testUser_388315ac-7d56-447c-90fc-ba560e670e9b, address: 5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo +[2023-05-10T15:30:35.041Z] - W[undefined] - [info]: name: //testUser_f44e7f58-f3de-4cf2-a916-a3a7b071b2af, address: 5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ +[2023-05-10T15:30:35.049Z] - W[undefined] - [info]: name: //testUser_53502401-fd23-4172-a3fb-af0aa1a8d5d9, address: 5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG +[2023-05-10T15:30:35.055Z] - W[undefined] - [info]: name: //testUser_89d5416d-510a-41a5-bf26-2af46da1d58e, address: 5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t +[2023-05-10T15:30:35.062Z] - W[undefined] - [info]: name: //testUser_7454a53b-df62-46a8-bb1e-003cbcdd06c7, address: 5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d +[2023-05-10T15:30:35.070Z] - W[undefined] - [info]: name: //testUser_1ba65070-4115-4dbf-b666-98d0639ac871, address: 5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni +[2023-05-10T15:30:35.088Z] - W[undefined] - [info]: Ready +[2023-05-10T15:30:35.088Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:30:48.040Z] - W[undefined] - [info]: {"inBlock":"0x61aab0f4ee350419e5b9123014ea18d980c452a1317eb8277618919d03c40836"} +[2023-05-10T15:31:00.153Z] - W[undefined] - [info]: {"inBlock":"0xe95e3cd935b00ae6a2711b89365ec58a5ae88d0616cad05792f1a9a206603333"} +[2023-05-10T15:31:00.153Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"734,771,671,237,334,646,709"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.154Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GF92nw9Jd2BsjwNQCTw35Zy5MxGsnKG7MMJnuVaQttazsQQ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EPDiHQ4KXJr4QDikP37w1cvWqGc4mbkeqBFFDoKPnybB8ci","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.156Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5E5GLac3DgncwdMRVid5Vsic2KzjR8StuXKDQ4ZwcxLEiyNh","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.157Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GRbZxw4zqU6HoBKG4qc3CsYa941H3RJzMVqexXBEF4rVCvN","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.158Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EPZz9DU1YdwfwFSUYTpotqTYhEM4Ycz3z2GYZyEDWsyEMLk","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr"} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.159Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.161Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.161Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.161Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GWvxHK1WDBkDRiJJKyuHwFuD3cXnZXwRhNE18zT6pL3ZyMr","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.161Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.163Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.163Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.163Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EUbV9NTaZwAJuTm5gTeKw8v76NcQRyFgPSmwiWps9EEk166","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.163Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.163Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB"} +[2023-05-10T15:31:00.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DheYqSP7aU2cYsEttBZfcHgvtmTvWLyyY1tge7G4jHWtQuB","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.164Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.165Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FCrwYvsNMRFCSrVr3yboADVVBpdw7gaEH1U6XApfZy3LaN7","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GGpjwaAFpXZ5oS9oE9KgHjY1L1XVouQhhUE6VCCzN6ywdLt","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CFtfLTsHnyj7vArxTAWbS6NbFAwG5nx91VhdU4LQrkezpxz","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.167Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CB35jcjtKUBx6BscoP44epvmQ2hFprpYAxg5yqKyzLfkpFZ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CJMSRki6oXh52NNRa8mfxW3wD9ynqTtV83zTn3ZfTsVBaQD","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.169Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5H1osdWNCGKaLUzrWTgUxuEm521pcUiNCvAmesMRmnmQovh1","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CzJaoNYhUqhARviTs6qPZim7LqtpsmYbpTVV39vzmXDe9ZC","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.171Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F4yTnTWUb62Zk4P4oxYFEpFKvbZsN6mCCG4VUUhtun43zmJ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Cu2PGB8LaqXuvoxzH5JG63DpcTPE4dhiSUs72iVgnQ8TME5","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F247VooRxNdt2hCKvgWGq7zBSvspZpNh3QK99MZit6arfXK","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GBqUDbiAnXkVSEWcgDr2hp4JufdPJLEYMEb8M4wZ7uier3M","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5E2S458oSmLuaD89Y3JmBknNCYXEpUUxHiSyHj8nqJEcBhDe","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5H1K5gdaYyj9kwQwutN3h52vPCcNfwK8wdtZMfsMwTNP212a","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CLhS8A5V7VarVNqdZgiYPTmifz2CAdq4rur6YzybmaSQ8iL","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.185Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GA1vkeeJjB9FH7maQSDFNvXhNGjXa4eDQCDeYYPN8CYoQMi","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ChhsgJPHww8y4hCN7KyzmdqnRk9Nx2aBsbMhfXW3SdaZfbS","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DFDFNcNTtFamzR8w2XCgizPUYyHjg4NUV9e7Cxz7NGVfHAo","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HQfv3kTRRarXFbUjwyaFkKWPCzxGVJGAzYnfM2NwxEz5GaZ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G4SXGQo5hZmR4mGt922JQ7FXfeuNGJRNnopmsb2NBZJbaeG","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.188Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CRufk1ua8f1cZMRcGsQqFbYDxJfdxMFE2fP8D5eE8bS281t","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ct8m5CTi5YmDJpz9nj6TvX7YWvSAwmTMmXNv72fZ6btbw4d","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","amount":"150,752,859,781,750,059,798,758,700"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","150,752,859,781,750,059,798,758,700"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CLfiqE13HnENEno6njKuXu8eadqe2Bfjs91GLMPyBPNk3Ni","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"734,771,671,237,334,646,709"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"734,771,671,237,334,646,709","tip":"0"} +[2023-05-10T15:31:00.189Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"80,323,571,613","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:32:04.092Z] - W[undefined] - [info]: name: //testUser_ce7314ea-509f-48ce-b1e1-0fb4a3f650e6, address: 5C4tY6Job4nxrNtJjCwQ1p1RqQG1YEh1jpYr9gs9W62AD5C5 +[2023-05-10T15:32:04.098Z] - W[undefined] - [info]: name: //testUser_3f26ad8d-b6ee-4a4d-9baa-0ec41fa878a5, address: 5EFR6CmCTbXvjgbk4xCVr8n6APKRqswqGxnqiA6Pu5dJ3EXF +[2023-05-10T15:32:04.103Z] - W[undefined] - [info]: name: //testUser_68e06855-6a3c-4513-baee-cf129f2ad296, address: 5FWcemxKQ9uNd5DLaV3qGuLjgBzcA6iSdgaZ72b6fbQnEFAX +[2023-05-10T15:32:04.108Z] - W[undefined] - [info]: name: //testUser_fdaf2a9f-421d-4de9-8228-67d050525258, address: 5CkE5e9MiuywzZBXQ41MguBkXfc66XunPoBVRaUfVEyG1HLC +[2023-05-10T15:32:04.122Z] - W[undefined] - [info]: pool 0-8 has balance of ["0x0000000002b6d4eb3e906bb848012138","0x0000000002b6d4eb3e906bb84801215a"]-[0,0] +[2023-05-10T15:32:04.129Z] - W[undefined] - [info]: name: //testUser_53333a9a-6206-40ec-9207-8c7b0c323fc0, address: 5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG +[2023-05-10T15:32:04.136Z] - W[undefined] - [info]: name: //testUser_abc86262-fdcf-4afa-bd04-c7b42372ed01, address: 5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx +[2023-05-10T15:32:04.143Z] - W[undefined] - [info]: name: //testUser_e65942b0-6874-4784-a0aa-178522d91c49, address: 5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK +[2023-05-10T15:32:04.150Z] - W[undefined] - [info]: name: //testUser_7758aa8c-6d58-4f45-9e7a-082caeca32b4, address: 5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb +[2023-05-10T15:32:04.157Z] - W[undefined] - [info]: name: //testUser_95b58d2f-825a-4004-bac9-4babc7b1bce9, address: 5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ +[2023-05-10T15:32:04.163Z] - W[undefined] - [info]: name: //testUser_450422c2-16d2-4a20-9354-dc7a02e48015, address: 5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x +[2023-05-10T15:32:04.170Z] - W[undefined] - [info]: name: //testUser_88133766-3e3f-4270-9847-16a042657c32, address: 5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM +[2023-05-10T15:32:04.176Z] - W[undefined] - [info]: name: //testUser_8be6b5c0-2eca-4ebb-a759-d81f2f6dae22, address: 5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK +[2023-05-10T15:32:04.182Z] - W[undefined] - [info]: name: //testUser_1f0432e2-dd7d-4107-9a8f-a1b31c0e3da4, address: 5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9 +[2023-05-10T15:32:04.188Z] - W[undefined] - [info]: name: //testUser_8fb0417e-b2d6-45ed-9f05-dc8bbf9794d9, address: 5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm +[2023-05-10T15:32:04.199Z] - W[undefined] - [info]: Ready +[2023-05-10T15:32:04.199Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:32:24.038Z] - W[undefined] - [info]: {"inBlock":"0x8fc8d66cf6cf540ffdbd842c465a652fc6753752301f47f8148820e4ba4739e4"} +[2023-05-10T15:32:36.067Z] - W[undefined] - [info]: {"inBlock":"0x07aef51995130b96671652204bbc9d6f3b6416810826f7028d35d3c02a0c377d"} +[2023-05-10T15:32:36.067Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"246,107,587,012,735,716,273"} +[2023-05-10T15:32:36.067Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG"} +[2023-05-10T15:32:36.067Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DF5rkL5fD6oPKCSSxHQgZqJh4yQ6t67bK7aXBW257WJ33FG","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.068Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.069Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FZdkBZmyXA47F3eKKdqaDJDaHfshWgshAj1N6wb2zCTaJBx","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.070Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DPCmNbc6YsYaJ4VWefzC9BG9HePfn4DhAttU6Mxo2R3nNoK","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.071Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DPSzg1ZHjYocrhb7fDohQDTAnXjHCMF92d3GjYzZCEcoQyb","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.072Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.073Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.073Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Cif58QN3HY7a1CPEQMn1XNZJHBJCfz4mzm6S9mE1pFWoWDZ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x"} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.074Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.075Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HmX5V5HPAR4SjdEm2roAK52NfYhhi2QNv7iuVpzmqY9Fm3x","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.076Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Dr6ZyP6BsAYgqRo6MA6gpcsgKTTcfHuVm1L4c9hkYR9eBQM","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.077Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GF9s8CH4wzbKd649gLqqv8CQj7GnguA8DFqu1E24ZJNzPKK","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.078Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EcBPWZRHnb7ESo8FQGpYHVETckE2KHhMJfQh5Q5pA24snf9","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm"} +[2023-05-10T15:32:36.079Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","amount":"150,720,497,808,272,761,038,157,800"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","150,720,497,808,272,761,038,157,800"] +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.080Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EjtKFfSG3qkQzBGGw56YvxyabZ4Fzp3LwunkDQg5ZpNAyVm","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:32:36.081Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:32:36.081Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:32:36.081Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:32:36.081Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"246,107,587,012,735,716,273"} +[2023-05-10T15:32:36.081Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"246,107,587,012,735,716,273","tip":"0"} +[2023-05-10T15:32:36.081Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"26,868,364,373","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:35:12.491Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:35:30.299Z] - W[undefined] - [info]: name: //testUser_aea5c858-2c11-4bc3-8d82-83f8c3fd5bc2, address: 5FqLpNBvKyWy1AwtAG9zL6HJAnZ78uJQ6SBRTYyJUAuMQqbX +[2023-05-10T15:35:30.305Z] - W[undefined] - [info]: name: //testUser_5b7d0cc6-9896-4ca5-8640-15ff167765e4, address: 5GhD1EfcCQ7JWkiHbP8cJjwu4vi5FL5s5kKy8dggajVk51Lw +[2023-05-10T15:35:30.310Z] - W[undefined] - [info]: name: //testUser_59e2d0dc-8cc7-4663-af4d-284e7ec8fd61, address: 5HdKPyZyP3Egt7bH9D7karGkWgUQiwDpnnVFGvKjKmMoayPV +[2023-05-10T15:35:30.315Z] - W[undefined] - [info]: name: //testUser_ec6876cb-c762-4aac-a4b0-f7e647e71073, address: 5HVp7y8MU3wujaVXmtXUqrimmDg8XA386CfJ6dF9nUQJgDjA +[2023-05-10T15:35:30.338Z] - W[undefined] - [info]: Ready +[2023-05-10T15:35:30.338Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:35:48.030Z] - W[undefined] - [info]: {"inBlock":"0xc08ed6eb354dd6da0632d01836ea9f872110766497a9dbb77754196fdf71dcf6"} +[2023-05-10T15:36:00.046Z] - W[undefined] - [info]: {"inBlock":"0x7887ae1234eb0ebc193944b3ff3d12b0485975e10951af7192a055ef0bb5ceb7"} +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T15:36:00.047Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:36:00.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:36:00.048Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:36:00.048Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,135"} +[2023-05-10T15:36:00.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:36:00.048Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:36:00.048Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","9","3,000,000,000,000,000,002,469,134"] +[2023-05-10T15:36:00.049Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","0","3,000,000,000,000,000,002,469,134","8","3,000,000,000,000,000,002,469,135","9","3,000,000,000,000,000,002,469,134"] +[2023-05-10T15:36:00.049Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:36:00.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:36:00.049Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:36:00.049Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"26,220,999,111,666,197,577"} +[2023-05-10T15:36:00.049Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,220,999,111,666,197,577","tip":"0"} +[2023-05-10T15:36:00.049Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:42:18.179Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:46:58.356Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:46:58.498Z] - W[undefined] - [info]: name: //testUser_9ab0d377-541a-405f-bd40-eb9ab02ecaec, address: 5FqVrcKs49gZ3dqi47FKcz15VZ1yHzznHfcRA3KnLVAjjFsD +[2023-05-10T15:46:58.504Z] - W[undefined] - [info]: name: //testUser_3d5af681-f87b-495d-9d8d-6c850fe1c19b, address: 5GC5NfhQyiGqjkTVGFNpuGgHZnHoYqy3mf7aAXBEUZN6hxwo +[2023-05-10T15:46:58.509Z] - W[undefined] - [info]: name: //testUser_42423ed1-aba0-4ce0-a20d-db16894a3557, address: 5Gy6eYxyT5FAHhygbKQ2HTgoGWwVKPgvgHg9Aiq9WM3sCdHa +[2023-05-10T15:46:58.515Z] - W[undefined] - [info]: name: //testUser_ae0e5a47-268d-4348-9bf0-1fe640d32cc5, address: 5FTdY6nYiovGdhZRrqCV1AzccpDHNv1RA34VaVhaMsygMF5L +[2023-05-10T15:46:58.548Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 12 +[2023-05-10T15:47:36.056Z] - W[undefined] - [info]: [{"event":{"index":"0x0a08","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Withdrawn","metaDocumentation":"[Some balances were withdrawn (e.g. pay for transaction fee)]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0a00","data":[12,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Endowed","metaDocumentation":"[An account was created with some free balance.]","eventData":[{"data":"0x0000000c"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0a","data":[12,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x0000000c"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0d","data":[12,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Issued","metaDocumentation":"[A token was issued.]","eventData":[{"data":"0x0000000c"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x3d00","data":[{"ok":null}]},"phase":{"applyExtrinsic":2},"section":"sudo","method":"Sudid","metaDocumentation":"[A sudo just took place. \\[result\\]]","eventData":[{"data":{"ok":null}}],"error":null},{"event":{"index":"0x0a0a","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0b00","data":["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",0,0]},"phase":{"applyExtrinsic":2},"section":"transactionPayment","method":"TransactionFeePaid","metaDocumentation":"[A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,, has been paid by `who`.]","eventData":[{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000000000000000000000"},{"data":"0x00000000000000000000000000000000"}],"error":null},{"event":{"index":"0x0000","data":[{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}]},"phase":{"applyExtrinsic":2},"section":"system","method":"ExtrinsicSuccess","metaDocumentation":"[An extrinsic completed successfully.]","eventData":[{"lookupName":"FrameSupportDispatchDispatchInfo","data":{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}}],"error":null}] +[2023-05-10T15:47:36.082Z] - W[undefined] - [info]: Ready +[2023-05-10T15:47:36.084Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:48:00.048Z] - W[undefined] - [info]: {"inBlock":"0xc7b45e5781523282b94b7eb854ef8c67ce82b83169a6f563dd97c2bad0c3c3b0"} +[2023-05-10T15:48:12.046Z] - W[undefined] - [info]: {"inBlock":"0xa2576cb075bcc7c1f5d2dde1d45184453fd62297b5942fa067f034b99a98e685"} +[2023-05-10T15:48:12.046Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"56,611,936,629,256,965,939"} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":{"Err":{"Module":{"index":"19","error":"0x03000000"}}}} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":{"Err":{"Module":{"index":"19","error":"0x00000000"}}}} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"12","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"12","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["12","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"12","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.048Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["12","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.048Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.048Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.048Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"12","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.049Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"12","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.049Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["12","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.049Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.049Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"12","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"12","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["12","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.050Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"12","who":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"12","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"13","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.051Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"13","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> assetRegistry.RegisteredAsset: {"assetId":"13","metadata":{"decimals":"18","name":"LiquidityPoolToken0x0000000D","symbol":"TKN0x00000000-TKN0x0000000C","existentialDeposit":"0","location":null,"additional":{"xcm":null,"xyk":null}}} +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> xyk.PoolCreated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","12","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"56,611,936,629,256,965,939"} +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"56,611,936,629,256,965,939","tip":"0"} +[2023-05-10T15:48:12.052Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"6,081,250,747","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:48:12.083Z] - W[undefined] - [info]: Ready +[2023-05-10T15:48:12.084Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:48:36.034Z] - W[undefined] - [info]: {"inBlock":"0x7b8dc27a9f5cd0440d55d3e3d51aa4203bac54ae40ce2825702a39171c2cc6e8"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: {"inBlock":"0xc99a6af5759388bba74d88160e07dddb296f01bd493f0958f106feade98323ba"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"66,094,972,760,695,187,160"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> proofOfStake.PoolPromotionUpdated: ["13","20"] +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"12","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"13","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"13","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.053Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","12","150,000,000,000,000,000,000,000,001","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"12","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"13","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"13","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"13","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0","150,000,000,000,000,000,000,000,000","12","150,000,000,000,000,000,000,000,001","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.054Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"12","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"13","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"13","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"13","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","0","150,000,000,000,000,000,000,000,000","12","150,000,000,000,000,000,000,000,001","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"12","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"13","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"13","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"13","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-10T15:48:48.055Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.056Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","150,000,000,000,000,000,000,000,000","12","150,000,000,000,000,000,000,000,001","13","150,000,000,000,000,000,000,000,000"] +[2023-05-10T15:48:48.056Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:48:48.056Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:48:48.056Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:48:48.056Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"66,094,972,760,695,187,160"} +[2023-05-10T15:48:48.056Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"66,094,972,760,695,187,160","tip":"0"} +[2023-05-10T15:48:48.056Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"7,273,130,023","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:48:48.059Z] - W[undefined] - [info]: #216 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP13) - no rewards yet +[2023-05-10T15:49:00.015Z] - W[undefined] - [info]: #217 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP13) - no rewards yet +[2023-05-10T15:49:12.015Z] - W[undefined] - [info]: #218 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP13) - no rewards yet +[2023-05-10T15:49:24.018Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:49:24.030Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 15 +[2023-05-10T15:50:00.056Z] - W[undefined] - [info]: name: //testUser_5694223c-5388-4efc-97e3-7027fd09765f, address: 5HorF34cxhVo9s93utiemRrkpJ9b6dBHB2FJkzGouSEpJ6Tt +[2023-05-10T15:50:00.062Z] - W[undefined] - [info]: name: //testUser_e5f787df-7af3-40ed-ac26-f253f720d2e9, address: 5DPpMM9oUZTuGsKiEJxnJ9zq8hX6vDRjNZyrYWpygL953qw5 +[2023-05-10T15:50:00.068Z] - W[undefined] - [info]: name: //testUser_3f267af2-b137-476e-912c-8b7817362b6d, address: 5CSghTE3bMV9kENFfGQRHhs69QpuSmXe6uRRymHZy3nLjAFi +[2023-05-10T15:50:00.074Z] - W[undefined] - [info]: name: //testUser_2282b41a-9b9f-4a65-be7b-5d1221ea3157, address: 5FFFHrFNrhrFCC61efcdC3i3rHFNNKap3n9jfLqQMraF8xfW +[2023-05-10T15:50:00.101Z] - W[undefined] - [info]: Ready +[2023-05-10T15:50:00.102Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:50:24.039Z] - W[undefined] - [info]: {"inBlock":"0xbef7687f36f3e5ac090cc77c2f2417b9889c488a55022ed13eae258eb9de2d6d"} +[2023-05-10T15:50:36.048Z] - W[undefined] - [info]: {"inBlock":"0x9d4fe1b239a7359cf82d9acb2dcaf994a983b7f0442460cdee1379147b01f64e"} +[2023-05-10T15:50:36.048Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-10T15:50:36.048Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"12","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:50:36.048Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"12","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:50:36.049Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["12","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T15:50:36.049Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:50:36.049Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:50:36.049Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:50:36.049Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-10T15:50:36.049Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","150,000,000,000,000,000,123,456,700,000"] +[2023-05-10T15:50:36.049Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:50:36.050Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:50:36.050Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:50:36.050Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"12","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,135"} +[2023-05-10T15:50:36.050Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"13","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:50:36.050Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"13","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:50:36.050Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"13","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","13","3,000,000,000,000,000,002,469,134"] +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","0","3,000,000,000,000,000,002,469,134","12","3,000,000,000,000,000,002,469,135","13","3,000,000,000,000,000,002,469,134"] +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"26,220,999,111,666,197,577"} +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,220,999,111,666,197,577","tip":"0"} +[2023-05-10T15:50:36.051Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T15:52:54.209Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:55:01.456Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:59:01.654Z] - W[undefined] - [info]: name: //testUser_c5793dd3-8f42-4415-a2d7-ef2a80c06979, address: 5HQCwinNkztxifM5wRP4TZ8SFbtmBkr3ME2mCpTQh2yhtVaD +[2023-05-10T15:59:01.660Z] - W[undefined] - [info]: name: //testUser_4f6dcf00-9582-4024-a366-b6dcc5b1757c, address: 5HK6gEZgbP4qvj7sv2iRxCXke64kR7hDnSB6u1hdszdPwKDT +[2023-05-10T15:59:01.665Z] - W[undefined] - [info]: name: //testUser_aa9d8aca-9f13-4327-9da5-d9c17710ed2c, address: 5E7eb4Xd5JiBkYPCuNwubiSgEiUpW1RhxwgSFSyRRv3xpy6r +[2023-05-10T15:59:01.671Z] - W[undefined] - [info]: name: //testUser_68b2f56a-030f-4be4-a3bb-951968c853f3, address: 5HVXGj1vEBisDJ1aQGyGAyUFEgXVXHq6pPKha7TabpiVhfHC +[2023-05-10T15:59:01.673Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:59:01.827Z] - W[undefined] - [info]: pool 0-undefined has balance of [0,0]-[0,0] +[2023-05-10T15:59:11.191Z] - W[undefined] - [info]: name: //testUser_94082921-669e-4672-815f-2694b6dcbd97, address: 5CfABsTrh6qb3FSDNkcTDZwHCMv7nYZD7wkShJue9LrbTMjd +[2023-05-10T15:59:11.197Z] - W[undefined] - [info]: name: //testUser_aa3b1359-1098-4c6f-b9ed-660ce06fcba0, address: 5EcRTTr2ihyceUMgim9ofXxE7gaqLcFpoYQ5iw9Ma521UPxx +[2023-05-10T15:59:11.202Z] - W[undefined] - [info]: name: //testUser_1df5b8ab-e512-4729-a1bb-c8f099030d5d, address: 5GhUagTqHU1Y7Cf9rygEf5YpBp6FCSUSNXfEb5syDtd32YZw +[2023-05-10T15:59:11.208Z] - W[undefined] - [info]: name: //testUser_9c5d73d6-38f7-4194-ab2b-09538e80094f, address: 5C5wjsC1fCRMcScxtJPuVmPyFP1YZ8zN1FQtLBWir3x1b1Nx +[2023-05-10T15:59:11.210Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T15:59:11.351Z] - W[undefined] - [info]: pool 0-12 has balance of ["0x00000000026eddf3cb48c6f69125ad0e","0x00000000026eddf3cb48c6f69125ad13"]-[0,0] +[2023-05-10T15:59:11.358Z] - W[undefined] - [info]: name: //testUser_fdc18369-cbf4-4540-979f-915a798e9702, address: 5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z +[2023-05-10T15:59:11.378Z] - W[undefined] - [info]: Ready +[2023-05-10T15:59:11.378Z] - W[undefined] - [info]: {"broadcast":["12D3KooWH7GgKWSUSx3z9ppoo3gVEXmuEAzib94d9oJw8HntqQ1o","12D3KooWRfkJGjG2aAe32mkb78cusurxcbNhnb6ZaMRFmg4mJCqw","12D3KooWKiS9tQ7xwU7VGRdjGjHmBXRj6tfVvSssYqxkunSX1DPM","12D3KooWKgEJRGKemaHZPCbycA9uHDHD5FzUhbH6XgxDHWWZu2CD","12D3KooWE3h1WoX1PxDUUUq9B8U2xFWaGwprEtBe4HEcY1to53ju"]} +[2023-05-10T15:59:24.046Z] - W[undefined] - [info]: {"inBlock":"0x49101f16d54bd581e6bec99c706efa15dded10a42889434536ca0658c57edfe8"} +[2023-05-10T15:59:36.058Z] - W[undefined] - [info]: {"inBlock":"0xb59f8bfc8a84e2ad7240ee1ffb174fc7d6d8591575da8f7dd4b999fb1abcbbcd"} +[2023-05-10T15:59:36.059Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,210,999,111,666,197,577"} +[2023-05-10T15:59:36.059Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z"} +[2023-05-10T15:59:36.060Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"12","who":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T15:59:36.060Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"12","who":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","amount":"150,751,656,166,103,099,718,440,000"} +[2023-05-10T15:59:36.061Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["12","5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","150,751,656,166,103,099,718,440,000"] +[2023-05-10T15:59:36.061Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:59:36.061Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:59:36.061Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:59:36.062Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-10T15:59:36.062Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","150,000,000,000,000,000,000,123,400,000"] +[2023-05-10T15:59:36.062Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-10T15:59:36.062Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:59:36.062Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:59:36.062Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"12","from":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-10T15:59:36.062Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"13","who":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"13","who":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"13","who":"5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","13","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DPeusf8BPQe7mgygB27hoFJeJe2kQoZXCQkGw7yaWny1F1Z","0","3,000,000,000,000,000,000,002,468","12","3,000,000,000,000,000,000,002,469","13","3,000,000,000,000,000,000,002,468"] +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"26,210,999,111,666,197,577"} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,210,999,111,666,197,577","tip":"0"} +[2023-05-10T15:59:36.063Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-10T16:00:33.292Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T16:02:00.424Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T16:05:33.823Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-10T16:06:05.086Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-11T07:44:01.554Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-11T07:44:01.698Z] - W[undefined] - [info]: name: //testUser_38bebfd6-fb4f-49cd-941a-2ed3d1c5b696, address: 5EPfsUVMNqobkgkPyp3o3xzcYJDeWsHqYKSTSz8jWtp44s44 +[2023-05-11T07:44:01.704Z] - W[undefined] - [info]: name: //testUser_33cae24f-eef2-4186-9647-0154acd29136, address: 5CrA3sDuZzPKdvyL7K6714XZtDRXYBtRpBx71yXEu1gTR3Y7 +[2023-05-11T07:44:01.709Z] - W[undefined] - [info]: name: //testUser_15f7a28d-aa33-49b8-b206-16fd57691d25, address: 5FLb6aVzJJ3P28mBVcE5ny9G6PBJtK1mJJQtNTrwsrH5cKLK +[2023-05-11T07:44:01.715Z] - W[undefined] - [info]: name: //testUser_5ce5c938-f1be-454b-ac21-e5a0044b84f3, address: 5F9WTWmhYk3DMajwRQxFYRLDv4pi9X6FsP5UV6cVwZogTHbd +[2023-05-11T07:44:01.758Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 0 +[2023-05-11T07:44:30.040Z] - W[undefined] - [info]: [{"event":{"index":"0x0a08","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Withdrawn","metaDocumentation":"[Some balances were withdrawn (e.g. pay for transaction fee)]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0a00","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Endowed","metaDocumentation":"[An account was created with some free balance.]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0a","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x0a0d","data":[8,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x0000000004d8c55aefb8c05b5c000000"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Issued","metaDocumentation":"[A token was issued.]","eventData":[{"data":"0x00000008"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x0000000004d8c55aefb8c05b5c000000"}],"error":null},{"event":{"index":"0x3d00","data":[{"ok":null}]},"phase":{"applyExtrinsic":2},"section":"sudo","method":"Sudid","metaDocumentation":"[A sudo just took place. \\[result\\]]","eventData":[{"data":{"ok":null}}],"error":null},{"event":{"index":"0x0a0a","data":[0,"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0x00000000000000005cacf9b72461ffe8"]},"phase":{"applyExtrinsic":2},"section":"tokens","method":"Deposited","metaDocumentation":"[Deposited some balance into an account]","eventData":[{"data":"0x00000000"},{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000005cacf9b72461ffe8"}],"error":null},{"event":{"index":"0x0b00","data":["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",0,0]},"phase":{"applyExtrinsic":2},"section":"transactionPayment","method":"TransactionFeePaid","metaDocumentation":"[A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,, has been paid by `who`.]","eventData":[{"data":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"},{"data":"0x00000000000000000000000000000000"},{"data":"0x00000000000000000000000000000000"}],"error":null},{"event":{"index":"0x0000","data":[{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}]},"phase":{"applyExtrinsic":2},"section":"system","method":"ExtrinsicSuccess","metaDocumentation":"[An extrinsic completed successfully.]","eventData":[{"lookupName":"FrameSupportDispatchDispatchInfo","data":{"weight":{"refTime":671146000,"proofSize":0},"class":"Normal","paysFee":"No"}}],"error":null}] +[2023-05-11T07:44:30.081Z] - W[undefined] - [info]: Ready +[2023-05-11T07:44:30.081Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJkRPESRVsLU3FJWiNtkABHZm44TE2rJwEYohDHYQUp3a","12D3KooWSqu1uAveo1UDEmt9Y1V1UvbnWPTKqiu9HnL99JqvR6B5","12D3KooWHkqkLuv3ApRHqqN5fdhkxmL2LYqQnC76qeygpT12gq59","12D3KooWAMw88neZBzxhgfjLDWiDEc8372Hf1BWuYoqqzxjk3XbQ","12D3KooWRqwSa6895PcycSipQboLovGGcFayze3RnTyQEDqofDqa"]} +[2023-05-11T07:44:42.028Z] - W[undefined] - [info]: {"inBlock":"0x50712ec784896fbded2d252451a61f4b33dd1f052c5e7e88753c9140ad830e2f"} +[2023-05-11T07:44:54.039Z] - W[undefined] - [info]: {"inBlock":"0xd51135aa1e1cef4b368bfb560d8b0d31807e2785ddc6591e05a117016c465a6a"} +[2023-05-11T07:44:54.040Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"74,043,873,513,580,073,171"} +[2023-05-11T07:44:54.040Z] - W[undefined] - [info]: mangata -> issuance.TGEFinalized: {} +[2023-05-11T07:44:54.040Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.040Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.040Z] - W[undefined] - [info]: mangata -> issuance.IssuanceConfigInitialized: [{"cap":"4,000,000,000,000,000,000,000,000,000","issuanceAtInit":"780,000,000,000,000,023,420,993,536","linearIssuanceBlocks":"13,140,000","liquidityMiningSplit":"55.55%","stakingSplit":"44.44%","totalCrowdloanAllocation":"330,000,000,000,000,000,000,000,000"}] +[2023-05-11T07:44:54.040Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.040Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.041Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.042Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.043Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.043Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.043Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.043Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.043Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.044Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"1,500,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","1,500,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.045Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.046Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.046Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.046Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:44:54.046Z] - W[undefined] - [info]: mangata -> assetRegistry.RegisteredAsset: {"assetId":"9","metadata":{"decimals":"18","name":"LiquidityPoolToken0x00000009","symbol":"TKN0x00000000-TKN0x00000008","existentialDeposit":"0","location":null,"additional":{"xcm":null,"xyk":null}}} +[2023-05-11T07:44:54.047Z] - W[undefined] - [info]: mangata -> xyk.PoolCreated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:44:54.047Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:44:54.047Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:44:54.047Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-11T07:44:54.047Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"74,043,873,513,580,073,171"} +[2023-05-11T07:44:54.047Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"74,043,873,513,580,073,171","tip":"0"} +[2023-05-11T07:44:54.047Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"7,940,400,563","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-11T07:44:54.082Z] - W[undefined] - [info]: Ready +[2023-05-11T07:44:54.082Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJkRPESRVsLU3FJWiNtkABHZm44TE2rJwEYohDHYQUp3a","12D3KooWSqu1uAveo1UDEmt9Y1V1UvbnWPTKqiu9HnL99JqvR6B5","12D3KooWHkqkLuv3ApRHqqN5fdhkxmL2LYqQnC76qeygpT12gq59","12D3KooWAMw88neZBzxhgfjLDWiDEc8372Hf1BWuYoqqzxjk3XbQ","12D3KooWRqwSa6895PcycSipQboLovGGcFayze3RnTyQEDqofDqa"]} +[2023-05-11T07:45:18.032Z] - W[undefined] - [info]: {"inBlock":"0x34108035fb35d2388c6364dc20643ad79f080a37bc0125515dbf308d4989fd2d"} +[2023-05-11T07:45:30.036Z] - W[undefined] - [info]: {"inBlock":"0x7199207110deccdea0ed64f310cce5a386d8b21c211906c9a415609030a73834"} +[2023-05-11T07:45:30.036Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"97,528,944,298,831,972,971"} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> proofOfStake.PoolPromotionUpdated: ["9","20"] +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:45:30.037Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:45:30.038Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.039Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.040Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.040Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.040Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.040Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.041Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"150,000,000,000,000,000,000,000,001"} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","amount":"150,000,000,000,000,000,000,000,000"} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL","0","150,000,000,000,000,000,000,000,000","8","150,000,000,000,000,000,000,000,001","9","150,000,000,000,000,000,000,000,000"] +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"97,528,944,298,831,972,971"} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"97,528,944,298,831,972,971","tip":"0"} +[2023-05-11T07:45:30.042Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"10,759,500,931","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-11T07:45:30.061Z] - W[undefined] - [info]: #35 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-11T07:45:42.017Z] - W[undefined] - [info]: #36 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-11T07:45:54.015Z] - W[undefined] - [info]: #37 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-11T07:46:06.014Z] - W[undefined] - [info]: #38 5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw (LP9) - no rewards yet +[2023-05-11T07:46:41.421Z] - W[undefined] - [info]: name: //testUser_c1600092-e872-4e2c-a025-0c409b97f394, address: 5D4kWEMuZASQtpJ81WRFf26DcMHwWdZSxDiyB24UcNjbT48s +[2023-05-11T07:46:41.426Z] - W[undefined] - [info]: name: //testUser_65ad4084-3019-470a-bf9c-d389358cdfa8, address: 5EeFTKLmsGcqZ1NUSyyv1sHfwRLi3E8sTzEnYBkDkz4RyLea +[2023-05-11T07:46:41.431Z] - W[undefined] - [info]: name: //testUser_acb0ca75-9bbc-4249-abcf-ce76b76093fe, address: 5FHnSuxE4gx8fDqbuth546YKn1i3qRarbb8aw3M7dpLu3eSH +[2023-05-11T07:46:41.436Z] - W[undefined] - [info]: name: //testUser_2c02b13f-ab6b-48d5-b9ff-d7dfff8903c6, address: 5G97J99cm6NpkcLFha7J9WuaHijJfDBkvoMzkso6eT7gKgzr +[2023-05-11T07:46:41.453Z] - W[undefined] - [info]: pool 0-8 has balance of ["0x0000000003648a260e3486a65a000000","0x0000000003648a260e3486a65a000006"]-[0,0] +[2023-05-11T07:46:41.459Z] - W[undefined] - [info]: name: //testUser_6e3169fc-c5b6-454c-8823-f4f67171c3af, address: 5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh +[2023-05-11T07:46:41.466Z] - W[undefined] - [info]: name: //testUser_a30eb270-f1c1-403c-aef6-d0640aaebb37, address: 5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j +[2023-05-11T07:46:41.472Z] - W[undefined] - [info]: name: //testUser_dfeb6c9f-66f4-4ff3-b23e-9669e3760531, address: 5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ +[2023-05-11T07:46:41.478Z] - W[undefined] - [info]: name: //testUser_112f26a1-e332-4117-8e3f-480b23f5273c, address: 5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5 +[2023-05-11T07:46:41.485Z] - W[undefined] - [info]: name: //testUser_7436cc34-ffe7-4b9e-b6e0-1b1dd413bfa2, address: 5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve +[2023-05-11T07:46:41.491Z] - W[undefined] - [info]: name: //testUser_a603e2df-8fae-4ce3-8496-6882089f2a6d, address: 5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE +[2023-05-11T07:46:41.498Z] - W[undefined] - [info]: name: //testUser_172bec00-4e3b-4b98-be71-1ebd8d4331cb, address: 5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES +[2023-05-11T07:46:41.504Z] - W[undefined] - [info]: name: //testUser_1aa5e666-7da8-4c12-81f5-fe212f083889, address: 5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW +[2023-05-11T07:46:41.511Z] - W[undefined] - [info]: name: //testUser_fb9365ee-9935-4804-b952-314fc5425144, address: 5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU +[2023-05-11T07:46:41.518Z] - W[undefined] - [info]: name: //testUser_23e1768d-363b-4bb0-8d6c-9575aaccc996, address: 5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS +[2023-05-11T07:46:41.524Z] - W[undefined] - [info]: name: //testUser_90e76325-00a6-4b99-b4f1-3f4223eb4b4c, address: 5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o +[2023-05-11T07:46:41.531Z] - W[undefined] - [info]: name: //testUser_1b506688-81a4-4159-b26c-35b0b6e9e176, address: 5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L +[2023-05-11T07:46:41.537Z] - W[undefined] - [info]: name: //testUser_0558e645-5edc-4c69-a6bb-861a5ff4b4eb, address: 5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK +[2023-05-11T07:46:41.544Z] - W[undefined] - [info]: name: //testUser_a38889b1-7357-4e41-ad1d-2e7ce3d9d105, address: 5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V +[2023-05-11T07:46:41.550Z] - W[undefined] - [info]: name: //testUser_618a22b4-81f5-42db-ab48-075fa70ae08a, address: 5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7 +[2023-05-11T07:46:41.556Z] - W[undefined] - [info]: name: //testUser_d52fa49e-c633-4542-b020-ed34d0391256, address: 5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw +[2023-05-11T07:46:41.564Z] - W[undefined] - [info]: name: //testUser_17ba77f6-1625-4e38-8880-59cf4b582788, address: 5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi +[2023-05-11T07:46:41.570Z] - W[undefined] - [info]: name: //testUser_384cd120-bc92-4276-9e54-8808fbd93fac, address: 5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3 +[2023-05-11T07:46:41.576Z] - W[undefined] - [info]: name: //testUser_0548ad37-8a6a-4a5e-a3e8-6ca1048e9a3b, address: 5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC +[2023-05-11T07:46:41.583Z] - W[undefined] - [info]: name: //testUser_532045c1-1c70-45f2-95a1-4650db42b664, address: 5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey +[2023-05-11T07:46:41.589Z] - W[undefined] - [info]: name: //testUser_1bc53a37-2663-4a86-96bc-debf8997c777, address: 5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ +[2023-05-11T07:46:41.595Z] - W[undefined] - [info]: name: //testUser_01b16306-80ce-4e29-a3c6-70d97fcb4d9a, address: 5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM +[2023-05-11T07:46:41.602Z] - W[undefined] - [info]: name: //testUser_fc85bfe9-e573-49c7-88ea-9cd15b673dbb, address: 5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud +[2023-05-11T07:46:41.608Z] - W[undefined] - [info]: name: //testUser_a7fa5dab-2e63-49ce-a182-d7c36422e141, address: 5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek +[2023-05-11T07:46:41.614Z] - W[undefined] - [info]: name: //testUser_9b67711b-7d7b-4bb1-bc6e-8ffb98d21741, address: 5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp +[2023-05-11T07:46:41.620Z] - W[undefined] - [info]: name: //testUser_ccbb7e90-09d1-4cf2-ac3c-368420727025, address: 5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc +[2023-05-11T07:46:41.627Z] - W[undefined] - [info]: name: //testUser_35c12715-c015-4d80-adf3-974fc8e86901, address: 5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz +[2023-05-11T07:46:41.633Z] - W[undefined] - [info]: name: //testUser_67c87e86-d72e-45b4-865d-ed5faf82e58f, address: 5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ +[2023-05-11T07:46:41.639Z] - W[undefined] - [info]: name: //testUser_60afa046-a458-4f33-84cf-69471d73cefa, address: 5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm +[2023-05-11T07:46:41.646Z] - W[undefined] - [info]: name: //testUser_7bb1f8ea-e290-4a87-87e2-b6c054f5c997, address: 5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk +[2023-05-11T07:46:41.652Z] - W[undefined] - [info]: name: //testUser_3f83057b-8fd8-484e-a265-ea089a9c9845, address: 5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4 +[2023-05-11T07:46:41.658Z] - W[undefined] - [info]: name: //testUser_b9ccbbd4-4465-4d29-ba9f-f3f6872ecaad, address: 5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2 +[2023-05-11T07:46:41.664Z] - W[undefined] - [info]: name: //testUser_34f05e51-5e0c-4db6-a70d-03cc51a83565, address: 5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7 +[2023-05-11T07:46:41.671Z] - W[undefined] - [info]: name: //testUser_26901f8b-630a-4c74-8e1c-496bad8cf6c0, address: 5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE +[2023-05-11T07:46:41.677Z] - W[undefined] - [info]: name: //testUser_dd2758bf-d5a1-4998-8213-1fd9cc9464dc, address: 5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX +[2023-05-11T07:46:41.684Z] - W[undefined] - [info]: name: //testUser_3badad5f-bb7f-427d-9367-37135e1713b6, address: 5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm +[2023-05-11T07:46:41.690Z] - W[undefined] - [info]: name: //testUser_9fad8593-687b-4878-aa00-7d469bef1e22, address: 5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J +[2023-05-11T07:46:41.697Z] - W[undefined] - [info]: name: //testUser_cef8aee6-f963-41e4-a702-ea04aa36db48, address: 5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e +[2023-05-11T07:46:41.703Z] - W[undefined] - [info]: name: //testUser_adbabd17-8596-4143-92d9-087c167ce311, address: 5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91 +[2023-05-11T07:46:41.709Z] - W[undefined] - [info]: name: //testUser_fe92f6b6-cdb7-4f63-8e7c-c566363dd352, address: 5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY +[2023-05-11T07:46:41.724Z] - W[undefined] - [info]: Ready +[2023-05-11T07:46:41.725Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJkRPESRVsLU3FJWiNtkABHZm44TE2rJwEYohDHYQUp3a","12D3KooWSqu1uAveo1UDEmt9Y1V1UvbnWPTKqiu9HnL99JqvR6B5","12D3KooWHkqkLuv3ApRHqqN5fdhkxmL2LYqQnC76qeygpT12gq59","12D3KooWAMw88neZBzxhgfjLDWiDEc8372Hf1BWuYoqqzxjk3XbQ","12D3KooWRqwSa6895PcycSipQboLovGGcFayze3RnTyQEDqofDqa"]} +[2023-05-11T07:46:54.025Z] - W[undefined] - [info]: {"inBlock":"0x9c20a960264b0f2a282dfa55080df863ce4e02272ca1f7c75fce20219693a17c"} +[2023-05-11T07:47:06.080Z] - W[undefined] - [info]: {"inBlock":"0x7595e6b987ef4dbb83b899cce54e360b537990d8ec26257301ad990b4b020f0d"} +[2023-05-11T07:47:06.080Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"979,101,213,349,634,111,927"} +[2023-05-11T07:47:06.080Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.081Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DUKys6buSeR7urg4L13F91wp7h3Le4EVLxoiQ2BhRzc4MPh","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.082Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5H8tuvopTa15Azu6fosESr4VcJmszCB8QAP8Gb36XR3x4S8j","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.083Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HaywQ2JW86Fk8btEnmsWmAMFEMAiS22DRPEE9vDwfBTAfEJ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.084Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EUjP1kNEntEJ4Nr2t4b5sBPFZogxsMgi2XsxMTzBDK63ok5","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.085Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.086Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.086Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.086Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.086Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.086Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.086Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.086Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ff5BwZm3eTsEk9PKKZaMSR4JtdgSVKMDqFXkipcjKdga7ve","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.087Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CScwcLgAnfraaD5qcatZHHFmnZSeF3QufKya7XSnW6btaSE","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.088Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FuyuWHwi6ty5Ehj8TUAav6R6pTA96tN3MFdW6bDMKgoB2ES","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.089Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CmBbFgwjaPpmXZL6RiXkw8eDx7dzg3k8LqqQGoLYkzV4PTW","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.090Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CLTd1cw44mC5KAqu8u5GdoAQmoocSKo8Qhu14KjYAnHGtdU","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.091Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FKxf8xWcFTQ6xkL34qmWsEVbTGc7CvCT17qVTakDxERs9mS","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.092Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HYVyA5WVX4nddkhwokFiysvM6DSemmZVw9nyrzNLiPn2n3o","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.093Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FNFk3xY9DFzPQ6zzi8x4hH8geDy2ojG7FC1n2X51gbBSY6L","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.094Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EbkivBvBRRzMY99JEi5oLnjyzs8xvWGWok1yiipzeRWqLeK","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.095Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V"} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.096Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GC7fouhVNLNgKLL1aPNtys4Sb6g8o5EpduuGCSnekx5Aq6V","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.097Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F7fT3FCVhZGfvXa37bgF3GTbWMkpofxAMV1PfXDFvA4L9C7","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.098Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DqqYBjiSAr7DzjgBvhNyz4QwvXrrDVBNXSiEicUnSMvL4Bw","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DCViMdN1sjBaMY2XfLcK2UwzRSHY2DNTSkbeBCEdVae1jRi","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DCWqKWM6ZgxJu6fsPBERkm8XqdguYFivrnjewK7TDbad4N3","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.126Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Gs1JZ2sWbyrrTojMMLV7VCVF8CD37J1DKS2MQJSrizpDboC","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5H1EnDT7SfUUSmAWzqpeh4qVZePwcMUwiM5ruwsMiQjd9qey","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.127Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.215Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.215Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.215Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.215Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.215Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.215Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CSjjwswiT34txuoM8rUVVjFi7Twv19cb8ge8C1W1xZ5TnAQ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.215Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CRkAzxZowwP8tk8PYtikPeGuxsrkj74LaVSCv414kbFg2hM","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CUdDzUgLgYQA5QEztyBdp3kWYhQmSkkTB9NehizDg49bSud","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DxvoNL6kBrVaW6TRRDHE2nRiQK9kCFovSwhQJs8JyrLQ7Ek","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5C7oZAAE4LR2Wt3Nz4sknhyLixLvTXTxWAnPGpyY286Stigp","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.216Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.220Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GYa3HExDoeRzxthAtXtSoaNFurVZ4P77pqVpeKwDZwYcVvc","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F9gLWDsarvDU7puz43zMonkwJ2qVrj5CUeysKeLSQsQRoMz","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DseVACXSgigWGW8BLRRhsKVDpTVnFyKbouj2HVPh15SjhyZ","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DDXZjNqRFbiePtTmuoFy3j1y23FnrvNP2Zpphi4xiPXACLm","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.221Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ehd2oCjLeDYNb2sMLwb1KztQczXyP4LrL6o9i7P56rGFHjk","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.222Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FeWpmYjGsHHJDf92zxomdpjjwnYM78Yz7m7ty5UzdbMxNX4","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.225Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Dr5dfEpBnMEgqGHYYoDXEPq6z3QjsqcsPdTxmg5ipNKr7K2","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EWZw6a8SAa9ugqwKQwDJWv1Wy9j1FDbUVin95gcwr3C3Kk7","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.226Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Gn3WJqfSTPZyibikiJmBnrT1vansrEwQ2WvTSqsF1oCyFoE","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HgKxPgEQLfekLuPtnC2uPAWEyBE4yZD3J3bGUKaHtrwvokX","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.227Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.229Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm"} +[2023-05-11T07:47:06.229Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.229Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.229Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.229Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.229Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HMztduy4au9JSC9RZx36XXSFF8LcSPbAMyFKJA6WcNqkrXm","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DyPD9i7jxnQmnJZXLT6wz6y55rz5GqiCCBsV3ooezUV1f2J","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EeFDuZSrCj1BGd1qMQfxqvYbrP8u6w4vEwWNEdjPp8LKC1e","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5H3fHib6U8pkXrVhnQCZQXciW3ss2eUktvD1zDKCw5jdJD91","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.230Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","amount":"150,666,592,050,830,603,398,301,500"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","150,666,592,050,830,603,398,301,500"] +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.231Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FTYgWUYmGw8K1q6rT8ackcJ4JWgoDzhJuZgrDo57btKPGkY","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"979,101,213,349,634,111,927"} +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"979,101,213,349,634,111,927","tip":"0"} +[2023-05-11T07:47:06.233Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"107,051,175,233","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-11T07:48:13.156Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-11T07:48:13.163Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 4 +[2023-05-11T07:49:37.788Z] - W[undefined] - [info]: name: //testUser_c2457c93-0c35-4573-9fb7-2b8bebc1d231, address: 5HEQdp19AtHnFNb6dQWqWDawRr6EwjXfbuaS8WHSCKPntVrE +[2023-05-11T07:49:37.794Z] - W[undefined] - [info]: name: //testUser_8595995c-9321-4baf-9c54-00f746650a0d, address: 5Gpm871CKaH81kskGxmn8vrZrSFDwpwCvMPPY3DZCYPi8M6o +[2023-05-11T07:49:37.800Z] - W[undefined] - [info]: name: //testUser_8bd5732e-02b2-4a2e-af76-180c136cf075, address: 5GbnMzFbaTFp1md2Dkp2JiBPjG9Mprz8tAmkYET3vLbZSdRZ +[2023-05-11T07:49:37.805Z] - W[undefined] - [info]: name: //testUser_1ed2e333-f814-471c-a347-a14fd9981a7a, address: 5HEGPkugyUCbB3tZPJYMWsZTPM2ohoeMPVcBYS9Nc2ZfePoy +[2023-05-11T07:49:37.817Z] - W[undefined] - [info]: pool 0-8 has balance of ["0x0000000003c7cd2317249609d20181a0","0x0000000003c7cd2317249609d20181ce"]-[0,0] +[2023-05-11T07:49:37.824Z] - W[undefined] - [info]: name: //testUser_27f75cdd-1de1-4179-bd52-c400f46ad3aa, address: 5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2 +[2023-05-11T07:49:37.830Z] - W[undefined] - [info]: name: //testUser_aac04e9c-f086-4aa3-98d5-fca0bfbbd9c0, address: 5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd +[2023-05-11T07:49:37.836Z] - W[undefined] - [info]: name: //testUser_2bdfbb4a-8167-4b96-a05d-07bcd0c523a8, address: 5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o +[2023-05-11T07:49:37.843Z] - W[undefined] - [info]: name: //testUser_1f71f28a-1999-4db6-b072-6a5bfe1db2b2, address: 5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs +[2023-05-11T07:49:37.850Z] - W[undefined] - [info]: name: //testUser_d13063ce-dd25-4229-ad8d-ad93192eb428, address: 5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv +[2023-05-11T07:49:37.856Z] - W[undefined] - [info]: name: //testUser_9b6c7e02-071c-4bf5-a95d-2e7d258fff1a, address: 5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu +[2023-05-11T07:49:37.862Z] - W[undefined] - [info]: name: //testUser_17904c85-c2b3-4bbf-ba15-db80b1679575, address: 5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS +[2023-05-11T07:49:37.869Z] - W[undefined] - [info]: name: //testUser_321c0cf4-7789-479d-a6b3-81eacda96d34, address: 5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU +[2023-05-11T07:49:37.875Z] - W[undefined] - [info]: name: //testUser_bba0bf73-a800-4ef9-b43e-f6b05566b125, address: 5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp +[2023-05-11T07:49:37.881Z] - W[undefined] - [info]: name: //testUser_e633b86d-629e-4d41-93c2-b40d10eec824, address: 5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB +[2023-05-11T07:49:37.888Z] - W[undefined] - [info]: name: //testUser_a137dfce-d920-4d4d-8d61-460d1273e16c, address: 5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V +[2023-05-11T07:49:37.895Z] - W[undefined] - [info]: name: //testUser_222ab154-4c5c-48c6-9bde-80260e1883c6, address: 5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G +[2023-05-11T07:49:37.901Z] - W[undefined] - [info]: name: //testUser_0ed7d8f8-94e9-477e-bff6-66482df015a6, address: 5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE +[2023-05-11T07:49:37.907Z] - W[undefined] - [info]: name: //testUser_4b9bb55b-e2f7-4ad8-980d-916bac871cbe, address: 5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj +[2023-05-11T07:49:37.914Z] - W[undefined] - [info]: name: //testUser_cc23f122-f0d2-4842-aca9-250d603cdff5, address: 5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3 +[2023-05-11T07:49:37.920Z] - W[undefined] - [info]: name: //testUser_962da871-8bf2-47fd-885a-723622890b7e, address: 5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z +[2023-05-11T07:49:37.926Z] - W[undefined] - [info]: name: //testUser_94b86da3-15a9-40ad-9bdd-82a3d8a2a2e4, address: 5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru +[2023-05-11T07:49:37.932Z] - W[undefined] - [info]: name: //testUser_1f60687b-4989-49f8-8c1a-602f0ffff8c4, address: 5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68 +[2023-05-11T07:49:37.939Z] - W[undefined] - [info]: name: //testUser_90130859-f917-412e-8188-9a86d7bb4537, address: 5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs +[2023-05-11T07:49:37.945Z] - W[undefined] - [info]: name: //testUser_28a29098-3daf-4e21-846c-5cf1710b2796, address: 5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94 +[2023-05-11T07:49:37.951Z] - W[undefined] - [info]: name: //testUser_d02602f1-9088-435c-9224-09eccf1d2a76, address: 5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS +[2023-05-11T07:49:37.957Z] - W[undefined] - [info]: name: //testUser_3d78a95f-d283-4902-8d5c-bbaa1e0741a7, address: 5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6 +[2023-05-11T07:49:37.964Z] - W[undefined] - [info]: name: //testUser_5f870e61-c843-4f0e-a10b-f5f914781dcf, address: 5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am +[2023-05-11T07:49:37.970Z] - W[undefined] - [info]: name: //testUser_ce183513-d21f-4082-92cf-5416673c6e9a, address: 5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC +[2023-05-11T07:49:37.976Z] - W[undefined] - [info]: name: //testUser_0e41af9a-19cf-4c1a-b9ac-3b5789fb5dc6, address: 5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU +[2023-05-11T07:49:37.983Z] - W[undefined] - [info]: name: //testUser_cbf1671d-ad89-4936-bae8-7c97d8397e61, address: 5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm +[2023-05-11T07:49:37.989Z] - W[undefined] - [info]: name: //testUser_d8ba5ad3-0ac7-4d77-8e54-4764cd30809f, address: 5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX +[2023-05-11T07:49:37.996Z] - W[undefined] - [info]: name: //testUser_fa3931e2-c418-4362-b7db-f68f3cdf72c7, address: 5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4 +[2023-05-11T07:49:38.002Z] - W[undefined] - [info]: name: //testUser_5dda7475-e56f-4636-a1c9-ffaa9b660bc1, address: 5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx +[2023-05-11T07:49:38.009Z] - W[undefined] - [info]: name: //testUser_12742074-0a45-4a29-b816-8ed72a1a4518, address: 5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK +[2023-05-11T07:49:38.015Z] - W[undefined] - [info]: name: //testUser_f3859ac9-ecc6-4c3c-bb47-de43a662bc97, address: 5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY +[2023-05-11T07:49:38.021Z] - W[undefined] - [info]: name: //testUser_03b3c506-7ec7-474e-959d-0bc2dbec2fdd, address: 5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39 +[2023-05-11T07:49:38.026Z] - W[undefined] - [info]: name: //testUser_dfb06c74-85c1-495e-816f-7fac4c87cd3a, address: 5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5 +[2023-05-11T07:49:38.033Z] - W[undefined] - [info]: name: //testUser_bb28014d-4030-4ca8-a050-6dcbb947dcf5, address: 5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg +[2023-05-11T07:49:38.039Z] - W[undefined] - [info]: name: //testUser_131dfc5f-07a5-422c-940a-f79fbbbf4a16, address: 5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN +[2023-05-11T07:49:38.045Z] - W[undefined] - [info]: name: //testUser_1e225aa8-da0a-40d0-b2b6-2c62c686fd73, address: 5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx +[2023-05-11T07:49:38.051Z] - W[undefined] - [info]: name: //testUser_0a7bd696-247a-45fe-bb16-1fe02557a947, address: 5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h +[2023-05-11T07:49:38.058Z] - W[undefined] - [info]: name: //testUser_9f7998cd-7ffd-49ae-8e18-bfede0d417cf, address: 5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf +[2023-05-11T07:49:38.064Z] - W[undefined] - [info]: name: //testUser_0c437ed8-cf2f-49e2-89fe-76583de27ed4, address: 5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb +[2023-05-11T07:49:38.069Z] - W[undefined] - [info]: name: //testUser_7530d124-e221-47ee-98af-c6bf249b8a48, address: 5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3 +[2023-05-11T07:49:38.075Z] - W[undefined] - [info]: name: //testUser_8a029102-f664-4fbe-9e8a-653876b7fa48, address: 5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP +[2023-05-11T07:49:38.083Z] - W[undefined] - [info]: name: //testUser_11c96b9d-0f57-4807-b084-634cd0473e42, address: 5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE +[2023-05-11T07:49:38.089Z] - W[undefined] - [info]: name: //testUser_3eef5f57-447e-4f63-aec8-717f930b1d6e, address: 5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8 +[2023-05-11T07:49:38.094Z] - W[undefined] - [info]: name: //testUser_be89950a-22ee-4ca9-9a66-b25981f5fc44, address: 5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU +[2023-05-11T07:49:38.101Z] - W[undefined] - [info]: name: //testUser_054715ae-14ea-4478-bca9-247ef1bd3990, address: 5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk +[2023-05-11T07:49:38.107Z] - W[undefined] - [info]: name: //testUser_962b6bd5-8d2e-4de1-964d-a314889f4040, address: 5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29 +[2023-05-11T07:49:38.113Z] - W[undefined] - [info]: name: //testUser_afa1e5dd-5338-4401-bef8-a8c3c7a5809e, address: 5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR +[2023-05-11T07:49:38.118Z] - W[undefined] - [info]: name: //testUser_b0e8d1a9-e8ee-43b2-9043-e5a771595aab, address: 5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf +[2023-05-11T07:49:38.125Z] - W[undefined] - [info]: name: //testUser_99f50af5-cfe9-44ee-99e6-e77bb10a65e5, address: 5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w +[2023-05-11T07:49:38.131Z] - W[undefined] - [info]: name: //testUser_95b20c9c-55a6-44a0-a565-bf59aa46eaee, address: 5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS +[2023-05-11T07:49:38.150Z] - W[undefined] - [info]: Ready +[2023-05-11T07:49:38.150Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJkRPESRVsLU3FJWiNtkABHZm44TE2rJwEYohDHYQUp3a","12D3KooWSqu1uAveo1UDEmt9Y1V1UvbnWPTKqiu9HnL99JqvR6B5","12D3KooWHkqkLuv3ApRHqqN5fdhkxmL2LYqQnC76qeygpT12gq59","12D3KooWAMw88neZBzxhgfjLDWiDEc8372Hf1BWuYoqqzxjk3XbQ","12D3KooWRqwSa6895PcycSipQboLovGGcFayze3RnTyQEDqofDqa"]} +[2023-05-11T07:49:54.023Z] - W[undefined] - [info]: {"inBlock":"0xed9a7b3bcce84eeddf195d4915a4b5f4a1b0b1ccb85fa638b1a09765590e20f9"} +[2023-05-11T07:50:06.148Z] - W[undefined] - [info]: {"inBlock":"0x553644157d4ec8f65edfb997aaa15a37e87960fb654ef055210251a76258a8c1"} +[2023-05-11T07:50:06.148Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,223,430,755,461,933,577,144"} +[2023-05-11T07:50:06.148Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2"} +[2023-05-11T07:50:06.148Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.148Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.149Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HKW7vMMpedj1LvDQhAHk7Ktn58SoJUdQudpaYKgxQZPR9n2","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5C5vpXrvitZQhqLEofaH9WjszSsKgPCx7bhaYykPMiPAWTCd","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.150Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HpBKaSR9n1PqPt2zGrkELjbSyhFx8ycbr4saQz4o8BUtz4o","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.151Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.152Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.152Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.152Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.152Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.152Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.152Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.152Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CSs5XWJkAm8mtxudPqBrguf9pNk6PiZTj7DM1qTn9qKUpQs","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FsLxY9no4zhdpNMDmGvaPiDDcuXsQRsfezhJyCa6Fm2ZwCv","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.153Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GnH8mu3vtTfnJsfjdASouweUYuZAK3c5QGxJGQZWc7anoUu","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FX4Xm5nzLMSZ29knBN62xHxtb5cJFchW9s4XN5P1Y2Ud7RS","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU"} +[2023-05-11T07:50:06.154Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EAH1NmXg6jtxhDVjnWjFyL58nTRaHDPXy8njc4YL5C1SgNU","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.155Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ECh2QK2X8rNBQvBwGXEcZyTq9W9BbePMvFRWY9AGyX3t3kp","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FemPca3HbotPg4HW2SVvojwK1cWMh8XfkeFEFCNETMdMyGB","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.156Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FU3TYXev512siDC1W9R57rckjyTREtCawRu7jWiEsoE4x9V","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CAg7C6B7DRUozmeVnKxUyYmNxtMsfw6bz2Y1JLhsSexxj1G","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.157Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GT5gk8rQk5eLdcEx286cYBjJP1TMpdeycBNJXWPCC26T6yE","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.158Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ECodQMHnaz5gtAzSonNKvcYt2AKiboorMnQUMpkB41ojUpj","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.159Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CdCKffoDrYJX1FAbj3gjHTtzr5yV9mtX1a36ah9DaPgPjd3","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.160Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ggdx2KQpNAebP7bta8RzH9G16ymYmxfDN6mEQ57tTJygn3Z","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CaJQrrsheafNks1AjSQE2rzvfnyb6fDmn5fCudfqqdRrzru","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.174Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HMvfxgnJoKiTqKQmchNfUyTvUcfdS87Lg1KmxUXacpVZG68","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Cg6FtqnGkTBQVAoh3Q9hLzUP7S7NoneHSnLpzCW1ovEsPqs","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DMRf46iq2Hg8pXXorGPo6beie1xFADAJJzx3TwCexW2jk94","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.175Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.176Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.176Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.176Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.177Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.177Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.177Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.177Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.177Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.177Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Gbp2uvDSmvBhBCPneTvcKG5rUgXzTQz3qs92Emw3B6bJmUS","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HTXL4nB1jvN3VxiEx1FHaMnFWuz6As775D6STDKMQVqTCz6","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FxZ1tdhAyaAr6kDZd7XSHmeUioWugZNopBYUAjH5ykbg7am","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DVBS1mXb3gBpvSozeL1WvHFwsmAwuaS6n4628ZX9RMubsnC","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FF2c7zMwzF3nS1WskwSG7nmG3Rj4pLhm3V4tMvg6kue8dEU","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.178Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CRxTJviEBSRjnaVa5QtUXV4btpJWhdCyr4qchsgLfaqN4Mm","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.179Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DUq8t77DuQSQC55BByPKkcx71XYd1VttFCkcR67YcTdbioX","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G9P5roht9raxToEdDJovg35UoP6sXm3fSryWae8FFUNCSQ4","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GzwoZU4qC6fiHYioFLfBkKP6BW4cjS43u3Qyc68SzG5b1Nx","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FNLqqDCsRpamkZFeaRg8LikHmQu4YPusUajKvUUJbw4VaNK","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.180Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HnDMGSpAtzdqmt1UshdYPfpdd6Mx6QJZCUh3ipEwUXb7HrY","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Gxs4pA5iSAECDz1Cc5rWy7xwU1ehwvwnhGH2RYvotCXxt39","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DCi6cMknHv3oTkrCSyxS712xXy61BvWYwwbfA2ZPTY59CU5","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.181Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EPYQ3xaFedN7p8VHJu6M9uGb4fR9GuziYiq39bZpXv6wLXg","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DJp7PVpxYCDzSMc4BezZB1gK4Zg59ZucZ63wGmG3Z2HufZN","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.182Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DydBvz5jPxPhg5GdSSjoYJfcQtNUpmsTh5HMPWh6Ge2KBCx","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G41TDL19biZf4wTgBePsYxTok3seYWt5VygWjq8Y1gzX36h","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GsygzHYdEaCAuChctNSq4WyGs2EDmH9K9xP1vq5PmiZnUsf","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FyHkB6SHcCxaxfm66aJW48irxpC4REhkAxsWXKt7tQhZvsb","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.183Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Fs5gxevLzc65VyvCZcfuCEZj3o28TPVi84h745ykCbjjJm3","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CkVmZb92UDqUbrGiPTwympxUfGcTbsfFadBQy4rq7A7fbLP","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ESDAre6CH1pfC2tNAqtq3YEea1oyhb6hKWde3YANGDN8QHE","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FBnJbZGCgVSg8ST9x5oDUYxiia7hP8Rk3Qta8EccaYvVjh8","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DZQ3Dw4UFTZKr9aFyGxwRbSXnNpjQizgDvBcQr8Ds4mvGDU","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.184Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ckwy4UMW1JaxLEzPh7WxeWqZYTXXRhVLUXY8sw6V1UJeyAk","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FFE8FyJqo6zxXbg538vNLqhPw6vxBwwrQKSqfvoejKDZY29","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G784vktBK4EWa39gCVqn4CqJ9R6iVnJ9QS5fnro6fguQWyR","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.186Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ECh7TEHbekrno2jUrT2buPGxV5hbGZqZMPSnrxTZ1dGWUrf","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HakMGTFcHGbNdAxZqMGgDnqeYgKNkfj7xTSgCzYNY84iQ6w","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","amount":"150,644,488,021,188,082,862,317,900"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","150,644,488,021,188,082,862,317,900"] +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.187Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","amount":"150,000,000,000,000,000,000,123,400,000"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","150,000,000,000,000,000,000,123,400,000"] +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,002,469"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","amount":"3,000,000,000,000,000,000,002,468"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HYU6SeBDx75EUeNAXtE7Bvhha8R7D5nvroBg9k64bi63ycS","0","3,000,000,000,000,000,000,002,468","8","3,000,000,000,000,000,000,002,469","9","3,000,000,000,000,000,000,002,468"] +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,223,430,755,461,933,577,144"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"1,223,430,755,461,933,577,144","tip":"0"} +[2023-05-11T07:50:06.188Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"133,778,778,853","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-11T07:50:46.218Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-11T07:51:11.138Z] - W[undefined] - [info]: name: //testUser_4d1e18d7-6e7b-48f3-8da5-9aa689c04dd2, address: 5CAtVC2AL3d7Sks6aCTXddsq5azFJWWvrzR2ztRXAxWAg5LV +[2023-05-11T07:51:11.143Z] - W[undefined] - [info]: name: //testUser_6d75f4ed-ccea-4014-89e1-4ac01158686e, address: 5EcGfYbCzdWtjcw3pSL6J2ibrXPwbF9pnLk1JvczUrsCHm67 +[2023-05-11T07:51:11.149Z] - W[undefined] - [info]: name: //testUser_8d3efc83-bf21-4ad0-8746-e954f80c0b9c, address: 5GQjANTm78jCDFsrx6mafPVTRdPrU75A73PMcmHugY3fNYwm +[2023-05-11T07:51:11.154Z] - W[undefined] - [info]: name: //testUser_4f8897d2-58f1-47bf-9a0f-d5ab3ee93bf6, address: 5Fxz2wqdfZUryTVWyJ74UsA9CdQFXfBaVvesQmA2ReGuHGXv +[2023-05-11T07:51:11.176Z] - W[undefined] - [info]: Ready +[2023-05-11T07:51:11.176Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJkRPESRVsLU3FJWiNtkABHZm44TE2rJwEYohDHYQUp3a","12D3KooWSqu1uAveo1UDEmt9Y1V1UvbnWPTKqiu9HnL99JqvR6B5","12D3KooWHkqkLuv3ApRHqqN5fdhkxmL2LYqQnC76qeygpT12gq59","12D3KooWAMw88neZBzxhgfjLDWiDEc8372Hf1BWuYoqqzxjk3XbQ","12D3KooWRqwSa6895PcycSipQboLovGGcFayze3RnTyQEDqofDqa"]} +[2023-05-11T07:51:30.032Z] - W[undefined] - [info]: {"inBlock":"0xd55affe8ebb4ddd6eba91a60543963be27ef4068e997b6fdccf866071ecd19b4"} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: {"inBlock":"0xcb8cdeb68ba73eb2011d1fab865ff1bedeef4be00287b511a5c0dc76447ef4a7"} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","150,000,000,000,000,000,123,456,700,000"] +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"150,000,000,000,000,000,123,456,700,000"} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","150,000,000,000,000,000,123,456,700,000"] +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:51:42.031Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,002,469,135"} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","amount":"3,000,000,000,000,000,002,469,134"} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","9","3,000,000,000,000,000,002,469,134"] +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGjWAeFDfFCWPsjFQdVV2Msvz2XtMktvgocEZcCj68kUMaw","0","3,000,000,000,000,000,002,469,134","8","3,000,000,000,000,000,002,469,135","9","3,000,000,000,000,000,002,469,134"] +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,220,999,111,666,197,577","tip":"0"} +[2023-05-11T07:51:42.032Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-11T07:53:09.281Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-11T07:53:09.289Z] - W[undefined] - [info]: W[undefined] - sudoNonce: 7 +[2023-05-11T07:53:42.044Z] - W[undefined] - [info]: name: //testUser_c70096ac-dcf9-44a4-bb33-96db0fa38c00, address: 5CtAKiWPhRGMrAMQRVDrER279hiuK6i3fdqzUyVGGywzkGdd +[2023-05-11T07:53:42.049Z] - W[undefined] - [info]: name: //testUser_9ae77da2-b0d4-432e-b6e3-e4e7614be970, address: 5ETz7gNGVUMrC4jmB1mpZ4ASHYdS3Xb3nuLhzenfzHRXM9YN +[2023-05-11T07:53:42.055Z] - W[undefined] - [info]: name: //testUser_d041d148-7e4b-4a5b-bc2c-1f7c3b50b572, address: 5EpuFhkw2FvdLW92RTEcFGhosejyxKxKg1Uc95YzkfSM86Br +[2023-05-11T07:53:42.060Z] - W[undefined] - [info]: name: //testUser_e4c7b4ec-c26e-434d-8b52-1fda478793de, address: 5DvxrBn1rfeosqKCr2VWW9E7VrifF1yu3HUAiTmKcz6YhPcA +[2023-05-11T07:53:42.082Z] - W[undefined] - [info]: Ready +[2023-05-11T07:53:42.082Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJkRPESRVsLU3FJWiNtkABHZm44TE2rJwEYohDHYQUp3a","12D3KooWSqu1uAveo1UDEmt9Y1V1UvbnWPTKqiu9HnL99JqvR6B5","12D3KooWHkqkLuv3ApRHqqN5fdhkxmL2LYqQnC76qeygpT12gq59","12D3KooWAMw88neZBzxhgfjLDWiDEc8372Hf1BWuYoqqzxjk3XbQ","12D3KooWRqwSa6895PcycSipQboLovGGcFayze3RnTyQEDqofDqa"]} +[2023-05-11T07:54:06.024Z] - W[undefined] - [info]: {"inBlock":"0xb3f8bf1630d279bf6e32e22b9ba7c5c30c5511f6165e5dc46ee084b347e82d47"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: {"inBlock":"0xe95e71ce6729ba309cceac0b0346b164ac6bb2bcf956d88a662a0ff08c5dafec"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"26,220,999,111,666,197,577"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,000,228,900,000"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","150,000,000,000,000,000,000,228,900,000"] +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"150,000,000,000,000,000,000,228,900,000"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","150,000,000,000,000,000,000,228,900,000"] +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,004,578"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"3,000,000,000,000,000,000,004,579"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,000,004,578"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","amount":"3,000,000,000,000,000,000,004,578"} +[2023-05-11T07:54:18.029Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","9","3,000,000,000,000,000,000,004,578"] +[2023-05-11T07:54:18.030Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy","0","3,000,000,000,000,000,000,004,578","8","3,000,000,000,000,000,000,004,579","9","3,000,000,000,000,000,000,004,578"] +[2023-05-11T07:54:18.030Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:54:18.030Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:54:18.030Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-11T07:54:18.030Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"26,220,999,111,666,197,577"} +[2023-05-11T07:54:18.030Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"26,220,999,111,666,197,577","tip":"0"} +[2023-05-11T07:54:18.030Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"2,813,521,115","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} +[2023-05-11T07:55:07.833Z] - W[undefined] - [info]: TEST_INFO: Running test in ws://127.0.0.1:9946 +[2023-05-11T07:56:06.792Z] - W[undefined] - [info]: name: //testUser_68d2108b-5639-4ffb-9483-cc1cc9a5e9e0, address: 5E2UiDR5xBCDrQrsUZacwaxTDGU7WdgTTiH1YpBmX7zSWkkp +[2023-05-11T07:56:06.798Z] - W[undefined] - [info]: name: //testUser_d342db92-92d9-4bfc-af4b-058c09c78d05, address: 5DkRfLfdV7Lg5TBeGrEmb6RKB5QGiroejDnMqRKTTYXB8Fhc +[2023-05-11T07:56:06.803Z] - W[undefined] - [info]: name: //testUser_b6dc6660-a330-4b3e-bbea-ad403cc04482, address: 5Hp69Tn4cMFSUxL6yCTDRbNTrJfu2FNAeeFFbNmAWJmCPGMw +[2023-05-11T07:56:06.808Z] - W[undefined] - [info]: name: //testUser_834c3102-2ff2-4dab-bd16-19a74fb00388, address: 5FhHtUz7BMjj2ucx6jypeTSc6GZBieiUg7XxbFrcVFa27NoW +[2023-05-11T07:56:06.822Z] - W[undefined] - [info]: name: //testUser_d6f7f629-aec2-4968-a5a9-24868dd1e908, address: 5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT +[2023-05-11T07:56:06.828Z] - W[undefined] - [info]: name: //testUser_8914bd9b-8759-473c-8834-4d172bea9b2b, address: 5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9 +[2023-05-11T07:56:06.834Z] - W[undefined] - [info]: name: //testUser_651e1fd4-62d5-47e4-8a91-774e8c41729f, address: 5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB +[2023-05-11T07:56:06.840Z] - W[undefined] - [info]: name: //testUser_6aa40a8a-b5c3-4586-b59f-a2207ad6b437, address: 5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ +[2023-05-11T07:56:06.845Z] - W[undefined] - [info]: name: //testUser_84b45385-8eb7-4440-ac61-1421e61a5af9, address: 5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um +[2023-05-11T07:56:06.852Z] - W[undefined] - [info]: name: //testUser_30df7bd5-cec2-4cae-afc1-a89690a6d41c, address: 5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ +[2023-05-11T07:56:06.858Z] - W[undefined] - [info]: name: //testUser_27571cf3-f892-4d1e-b592-4e3bc8c9f064, address: 5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6 +[2023-05-11T07:56:06.863Z] - W[undefined] - [info]: name: //testUser_67f6ec1c-05bf-47e2-95d6-636c6750fa8e, address: 5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz +[2023-05-11T07:56:06.869Z] - W[undefined] - [info]: name: //testUser_47c4ec8b-1da6-4f84-a297-261064f15bd7, address: 5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9 +[2023-05-11T07:56:06.876Z] - W[undefined] - [info]: name: //testUser_c9119cf4-3de2-41cf-b7ce-5f2a8d373c85, address: 5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J +[2023-05-11T07:56:06.882Z] - W[undefined] - [info]: name: //testUser_a3d47c58-3f09-4316-abf8-85f0a3a7dbbc, address: 5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su +[2023-05-11T07:56:06.887Z] - W[undefined] - [info]: name: //testUser_6b08ae5f-a328-4d60-bdc6-9dc662e05c74, address: 5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz +[2023-05-11T07:56:06.894Z] - W[undefined] - [info]: name: //testUser_db79184c-fd52-4e6e-9d20-f6e613bfe386, address: 5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM +[2023-05-11T07:56:06.901Z] - W[undefined] - [info]: name: //testUser_d090530e-b607-45ac-b255-a9303c7e0100, address: 5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X +[2023-05-11T07:56:06.906Z] - W[undefined] - [info]: name: //testUser_3987544b-a24d-47ad-b2fc-66185a48d953, address: 5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU +[2023-05-11T07:56:06.912Z] - W[undefined] - [info]: name: //testUser_c211d82c-431f-4b70-a57e-fc0571275a4a, address: 5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr +[2023-05-11T07:56:06.918Z] - W[undefined] - [info]: name: //testUser_f8281583-dd8c-4e0d-9e5b-4d655f2c99ba, address: 5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q +[2023-05-11T07:56:06.924Z] - W[undefined] - [info]: name: //testUser_696101a6-898a-462a-805b-4f5e96671dfb, address: 5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn +[2023-05-11T07:56:06.930Z] - W[undefined] - [info]: name: //testUser_9e7333cb-7582-47e1-8327-2b85b040c8a0, address: 5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3 +[2023-05-11T07:56:06.936Z] - W[undefined] - [info]: name: //testUser_845097e2-3bb4-49e2-bda2-82ad8d78f776, address: 5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw +[2023-05-11T07:56:06.943Z] - W[undefined] - [info]: name: //testUser_32240fbc-895b-471f-832b-972cb7392ad5, address: 5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze +[2023-05-11T07:56:06.948Z] - W[undefined] - [info]: name: //testUser_a6bb5c7e-f3bd-46ee-8e61-cc2fe406b470, address: 5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf +[2023-05-11T07:56:06.954Z] - W[undefined] - [info]: name: //testUser_9dead2db-707a-4e2a-8b40-3731adfcd5dc, address: 5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM +[2023-05-11T07:56:06.960Z] - W[undefined] - [info]: name: //testUser_c737a31a-2f70-4e52-8fe3-b7b797bee0bc, address: 5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3 +[2023-05-11T07:56:06.968Z] - W[undefined] - [info]: name: //testUser_7ea49f8a-884f-4861-aeed-6e82fb259f85, address: 5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg +[2023-05-11T07:56:06.974Z] - W[undefined] - [info]: name: //testUser_1ed9beee-e052-4ebb-9dd0-bd1e1c22bfc1, address: 5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi +[2023-05-11T07:56:06.980Z] - W[undefined] - [info]: name: //testUser_cb83a734-648e-4bd7-bbb9-202c8cbf6e3a, address: 5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo +[2023-05-11T07:56:06.986Z] - W[undefined] - [info]: name: //testUser_725f8b21-1e37-47a2-b458-3fb31293713c, address: 5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw +[2023-05-11T07:56:06.993Z] - W[undefined] - [info]: name: //testUser_3ee83420-b6b9-42ce-be38-b896715d5a09, address: 5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF +[2023-05-11T07:56:06.999Z] - W[undefined] - [info]: name: //testUser_9bfa05a8-970b-43f8-8de3-6a3fc42dec59, address: 5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ +[2023-05-11T07:56:07.004Z] - W[undefined] - [info]: name: //testUser_32d64731-7326-4d3e-a9ad-8929a78ca9f2, address: 5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro +[2023-05-11T07:56:07.010Z] - W[undefined] - [info]: name: //testUser_9ca8655c-4e93-4246-a1cf-5b9f60b61914, address: 5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF +[2023-05-11T07:56:07.017Z] - W[undefined] - [info]: name: //testUser_25f167dd-c682-4b78-868a-20855d3eb90d, address: 5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR +[2023-05-11T07:56:07.024Z] - W[undefined] - [info]: name: //testUser_7d83b491-cdcb-4fa1-b29c-8c5bfb8f240d, address: 5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg +[2023-05-11T07:56:07.030Z] - W[undefined] - [info]: name: //testUser_f4fd59f6-de51-4262-b88f-a45aa2483804, address: 5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW +[2023-05-11T07:56:07.037Z] - W[undefined] - [info]: name: //testUser_9f155973-6b02-429a-ad9b-152181f45478, address: 5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m +[2023-05-11T07:56:07.045Z] - W[undefined] - [info]: name: //testUser_e2a5feef-ed2d-49cb-aaf1-eb2a954b5c1d, address: 5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ +[2023-05-11T07:56:07.051Z] - W[undefined] - [info]: name: //testUser_9830f549-6686-4574-b1d0-ec28d55af5c9, address: 5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB +[2023-05-11T07:56:07.056Z] - W[undefined] - [info]: name: //testUser_b90d44eb-e6d1-415a-9f5f-7db5b9d9e9e5, address: 5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9 +[2023-05-11T07:56:07.062Z] - W[undefined] - [info]: name: //testUser_01df4e6b-bdc2-418d-b949-bf9130322d67, address: 5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz +[2023-05-11T07:56:07.069Z] - W[undefined] - [info]: name: //testUser_91090fcd-b75a-4016-a6a3-4911c7cdda05, address: 5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi +[2023-05-11T07:56:07.075Z] - W[undefined] - [info]: name: //testUser_b10e4233-0d2d-441a-91ec-307b5464826f, address: 5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp +[2023-05-11T07:56:07.081Z] - W[undefined] - [info]: name: //testUser_04848c31-8714-4a91-829b-f49dd7664329, address: 5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb +[2023-05-11T07:56:07.086Z] - W[undefined] - [info]: name: //testUser_546d829c-1eec-43f1-b4e6-c5b169fc878c, address: 5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa +[2023-05-11T07:56:07.093Z] - W[undefined] - [info]: name: //testUser_81e4cb45-2fac-42c1-8766-35cc18129b7d, address: 5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5 +[2023-05-11T07:56:07.099Z] - W[undefined] - [info]: name: //testUser_22162fb5-dcc6-4e3c-ae34-875c05054158, address: 5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z +[2023-05-11T07:56:07.105Z] - W[undefined] - [info]: name: //testUser_923cd0ab-c761-4d28-8507-af76114abef1, address: 5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g +[2023-05-11T07:56:07.110Z] - W[undefined] - [info]: name: //testUser_00b3af91-6193-4f45-96ee-74a459f8d96b, address: 5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf +[2023-05-11T07:56:07.117Z] - W[undefined] - [info]: name: //testUser_3b2f6e51-b9bc-40aa-8150-efa8b047d8ea, address: 5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka +[2023-05-11T07:56:07.123Z] - W[undefined] - [info]: name: //testUser_d8474160-9eaf-4c4d-9169-583ec5d0950c, address: 5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz +[2023-05-11T07:56:07.139Z] - W[undefined] - [info]: Ready +[2023-05-11T07:56:07.139Z] - W[undefined] - [info]: {"broadcast":["12D3KooWJkRPESRVsLU3FJWiNtkABHZm44TE2rJwEYohDHYQUp3a","12D3KooWSqu1uAveo1UDEmt9Y1V1UvbnWPTKqiu9HnL99JqvR6B5","12D3KooWHkqkLuv3ApRHqqN5fdhkxmL2LYqQnC76qeygpT12gq59","12D3KooWAMw88neZBzxhgfjLDWiDEc8372Hf1BWuYoqqzxjk3XbQ","12D3KooWRqwSa6895PcycSipQboLovGGcFayze3RnTyQEDqofDqa"]} +[2023-05-11T07:56:30.032Z] - W[undefined] - [info]: {"inBlock":"0x4c9205b875ab691c8bbf2bf72c64fa0c6c3e79c69fa223a2aac736600f956c3e"} +[2023-05-11T07:56:42.137Z] - W[undefined] - [info]: {"inBlock":"0x527d22d4d3be1a2fe19cf744a5e9cbb147f76b8a17eb00d6342d9c09293edc4e"} +[2023-05-11T07:56:42.137Z] - W[undefined] - [info]: mangata -> tokens.Withdrawn: {"currencyId":"0","who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","amount":"1,221,680,755,461,933,577,144"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GRFVeexE5C8UjAnqeNimVJhCVVHMHYWfKGaLUZLZt1YEhAT","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GgfqLwaaLASLfpL6cjif2beaNS8rQNfR3emo8T6gzKSrze9","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.138Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CVDZZiobMq4hhrnpLy8KoSeni1caEzMauLk6GHnDMwickYB","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.139Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EkFSNZKrh9xZauWdHJsHyrhGCpmNiggbsE5sGH5resBoABZ","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.140Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DiQu3oThAfxtFywGWxqwB2Y9VyyTqRtFhSKb7UAnEomp1Um","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.141Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G3sUeJV9c2s8GFQLdtCZ3xaEFamtWYf74P49NUhVsm9rWMJ","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ey8aSPbhBtryXmmuwrKbhdJiMMpcCx1RHEdWTc37dCottH6","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz"} +[2023-05-11T07:56:42.142Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CDJhfKbaXaj9uCvvowTTQUjJWVi2wCKJLQXwzLAyTa2hUVz","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FjEvk5gTDoyXK65NwzTaLN4ciWnBLZhBXRqxcpzZjSvL7N9","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.143Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CiSLRZfWGHgihJMJb9DYYEcuK4YYHYNVE76jHJtzVyQQw7J","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CUsfFaoGjh6ztEPe73wZqeLGErxdWVUFTv3D2uqTTNj19su","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.144Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DoCpNUNkcM3CV1siCqFMoXWzv8hiAgEKftqnQG7CVbWA2gz","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5ESFE6tBu8nKCxKWXirRu2t9aT5dTdg43RsAcKrf6pGMnELM","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.145Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EWbXBpWpKVHdpYJJMqqDS4RJQWs4sR9WhqTMjCLcg6f8o1X","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Co9hVgfxsLrG2hX9doASvLnHSDdXFFQPyxaqGEyAUiFC7AU","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GZ2e17rDLiKHnc9B9a5UgLj3pmXXcivR8keYnGsL4EStQDr","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.146Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.147Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.147Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.147Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CFdBR8LUH8C3Szf9FsMYPYEwddkJTiG6UXFEEjf4Pbfkb3q","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CaWCSybfsaxYtDu8uQ1ByhUwMe4tVQBho7nstWgFgnkd1gn","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DGAotU9N1yHJtq2iq4NXggfow49eVTtgbf9QoZKyyDzwUB3","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GxzmtStqR4kpW5UfvEgf3Z6KPGZV1LzhLGxbqp5NkFvytzw","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GbMbZ3F7UcKpsy7tGx8nVycDTsDXd5Ar8fNQeaGgLbUusze","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.160Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5F4athGJ45gmhxYcjxxYhm7VsfkkpU4pKNyoAjwfEZWazwFf","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EkR3zCL9FDqzV7KaXv6hF6EWWKXAVqEK6DqJxjTnRQQp8pM","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5D5EcQ3bTY61Fp6NZRn779QU7w6vChAGKRvTqmvxJR5mDns3","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.161Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5G3eQkypVsc6dYTqgkDutEc9F6oo1exJZrxgR3nCoBiRvwhg","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CMCQKE3Cr5Xcn6qPEhYwFXBUQbfs7NvpfoXZqHCHxsMYWBi","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.162Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Ei4x4gf8p4XUDRLLf5nVN6FGgBoTEG6Gc6WgikU8nT8QYDo","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HGobUcntQuiM1r1PztZ9amJSjEfoZ8ZYpfZgkQWcivwF3Jw","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GEbuju5VmW7aK9MGHkA13yvUeNWp4Dx6V4cWWfvpjH32gUF","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HQE2nM8vPQFJHZmKxgrkugBajc1R3ZcCkr2ZWjb5FLXYRSZ","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HErUqWjGXLu7pWFKoyRhLe6qfCcVHhTpRFmYyL9NB79c6Ro","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.163Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.165Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FWo6y5vyA4G2q2YAHCW4xJfwKZ2RA5CTQFPSd3Va4NFGPwF","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Fzz7TTVg7nX1qRm6RTfC7K8ibKTnrEgiRoSHrZJA4dbodvR","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5FxNor3sES3kU1HfUh6NDFVzcve2RrKuyBpzNwk5mCacctVg","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DZsKVoVbKwEYkzxo5uimMY1pvhKuGWXc62zrBcs7g3XJmgW","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.166Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HjGmXCNZGAMLrC8XAPvGxuZCXhdEkHjMcZYbi6T72vEEK7m","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.167Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EcSmY37ZQazsfPXgMRjihC2wcjn7FE2K3FXH3jbSpaDCMYZ","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HmF7tghBaatMXwsurhbMu1TupZZ4LvZXwesUyB7yXh41SbB","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CfxEeBr3bJYSK5QXF6rqn6iw6mtK6fqG3fmwhmsRkmBFXn9","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5H8iGZXrdFmrBAd9YtSsx4HmUtQKuhhyuN8mHDEbnu17atoz","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5D1rMh3RiHnNg81HA9e4U39oytUmUgyJxmpVK5pL2V4R6udi","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.168Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5EvGoMni6vxGJqh5kW9YGQdbbGyr454jj9ixaVQ97s4zGpQp","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5HDvqXi1c4CSCrRfmsiEiXFR75no6eew6x4KpCQvrXZMSKtb","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5DqhexRTH3bZK297uop72nUUQk1SvKCSnpeanUb5mBPRevXa","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5GNordhY5qDKodfNiLEShxdhupLrjbBTYSY7GbzoBJ5Uwof5","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Do2DjZXFaGazBQ1Da5bRZoHXYR99vcz4uHpAdygghmunB3z","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.170Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Dnp6mr3jwhfkP8vQhWvvzPaR5xc7cJ3dpmSHwc8chggAn4g","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CtwUp5du2BSnZN5bp3d9wutsprVNj8kUUApcS4goWyDjvAf","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5Fq3UaLDfAXyKBv9ZgBXrQ8PfCpYUGd6XjVdPxcZ3jQZAhka","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> system.NewAccount: {"account":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"8","who":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"8","who":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","amount":"1,003,009,027,088,931,700"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["8","5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","1,003,009,027,088,931,700"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"0","who":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","amount":"1,000,000,000,000,123,400,000"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Minted: ["0","5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","1,000,000,000,000,123,400,000"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.Sudid: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"0","from":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Transfer: {"currencyId":"8","from":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","to":"5EYCAe5XGPRojsCSi9p1ZZQ5qgeJGFcTxPxrsFRzkASu6bT2","amount":"20,000,000,000,002,469"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Endowed: {"currencyId":"9","who":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"9","who":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Reserved: {"currencyId":"9","who":"5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","amount":"20,000,000,000,002,468"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> proofOfStake.LiquidityActivated: ["5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> xyk.LiquidityMinted: ["5CqbqbMWz7X6nbaiTpa9NPndqzhfyEiVWof43sqTXSLr4WRz","0","20,000,000,000,002,468","8","20,000,000,000,002,469","9","20,000,000,000,002,468"] +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> sudo.SudoAsDone: {"sudoResult":"Ok"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.ItemCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> utility.BatchCompleted: {} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> tokens.Deposited: {"currencyId":"0","who":"5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty","amount":"1,221,680,755,461,933,577,144"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> transactionPayment.TransactionFeePaid: {"who":"5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY","actualFee":"1,221,680,755,461,933,577,144","tip":"0"} +[2023-05-11T07:56:42.171Z] - W[undefined] - [info]: mangata -> system.ExtrinsicSuccess: {"dispatchInfo":{"weight":{"refTime":"133,778,778,853","proofSize":"0"},"class":"Normal","paysFee":"Yes"}} diff --git a/cliTool/yarn.lock b/cliTool/yarn.lock index e9facac21..a38b73a80 100644 --- a/cliTool/yarn.lock +++ b/cliTool/yarn.lock @@ -27,6 +27,11 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" +"@ljharb/through@^2.3.9": + version "2.3.9" + resolved "https://registry.yarnpkg.com/@ljharb/through/-/through-2.3.9.tgz#85f221eb82f9d555e180e87d6e50fb154af85408" + integrity sha512-yN599ZBuMPPK4tdoToLlvgJB4CLK8fGl7ntfy0Wn7U6ttNvHYurd81bfUiK/6sMkiIwm65R6ck4L6+Y3DfVbNQ== + "@tsconfig/node10@^1.0.7": version "1.0.9" resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz" @@ -82,9 +87,9 @@ acorn@^8.4.1: resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== -ansi-escapes@^4.2.1: +ansi-escapes@^4.3.2: version "4.3.2" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" @@ -94,7 +99,7 @@ ansi-regex@^5.0.1: resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -106,6 +111,28 @@ arg@^4.1.0: resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz" integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + chalk@^4.1.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" @@ -114,6 +141,11 @@ chalk@^4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" + integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== + chardet@^0.7.0: version "0.7.0" resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz" @@ -126,10 +158,20 @@ cli-cursor@^3.1.0: dependencies: restore-cursor "^3.1.0" -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== +cli-spinners@^2.5.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" + integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== + +cli-width@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5" + integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ== + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== color-convert@^2.0.1: version "2.0.1" @@ -148,6 +190,13 @@ create-require@^1.1.0: resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + diff@^4.0.1: version "4.0.2" resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz" @@ -158,26 +207,27 @@ emoji-regex@^8.0.0: resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== +escape-string-regexp@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== -external-editor@^3.0.3: +external-editor@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== dependencies: chardet "^0.7.0" iconv-lite "^0.4.24" tmp "^0.0.33" -figures@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== +figures@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-5.0.0.tgz#126cd055052dea699f8a54e8c9450e6ecfc44d5f" + integrity sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg== dependencies: - escape-string-regexp "^1.0.5" + escape-string-regexp "^5.0.0" + is-unicode-supported "^1.2.0" has-flag@^4.0.0: version "4.0.0" @@ -191,35 +241,70 @@ iconv-lite@^0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" -inquirer@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.0.0.tgz" - integrity sha512-ON8pEJPPCdyjxj+cxsYRe6XfCJepTxANdNnTebsTuQgXpRyZRRT9t4dJwjRubgmvn20CLSEnozRUayXyM9VTXA== +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inquirer@^9.0.0: + version "9.2.10" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-9.2.10.tgz#495a846fd6722ffadba896bd9d93e1e5a7add5c7" + integrity sha512-tVVNFIXU8qNHoULiazz612GFl+yqNfjMTbLuViNJE/d860Qxrd3NMrse8dm40VUQLOQeULvaQF8lpAhvysjeyA== dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.0" + "@ljharb/through" "^2.3.9" + ansi-escapes "^4.3.2" + chalk "^5.3.0" cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" + cli-width "^4.1.0" + external-editor "^3.1.0" + figures "^5.0.0" lodash "^4.17.21" - mute-stream "0.0.8" - run-async "^2.4.0" - rxjs "^6.6.6" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" + mute-stream "1.0.0" + ora "^5.4.1" + run-async "^3.0.0" + rxjs "^7.8.1" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wrap-ansi "^6.2.0" is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-unicode-supported@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz#d824984b616c292a2e198207d4a609983842f714" + integrity sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ== + lodash@^4.17.21: version "4.17.21" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + make-error@^1.1.1: version "1.3.6" resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz" @@ -230,10 +315,10 @@ mimic-fn@^2.1.0: resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -mute-stream@0.0.8: - version "0.0.8" - resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== +mute-stream@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e" + integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA== onetime@^5.1.0: version "5.1.2" @@ -242,11 +327,35 @@ onetime@^5.1.0: dependencies: mimic-fn "^2.1.0" +ora@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== +readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" @@ -255,17 +364,10 @@ restore-cursor@^3.1.0: onetime "^5.1.0" signal-exit "^3.0.2" -run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -rxjs@^6.6.6: - version "6.6.7" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" - integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== - dependencies: - tslib "^1.9.0" +run-async@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-3.0.0.tgz#42a432f6d76c689522058984384df28be379daad" + integrity sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q== rxjs@^7.2.0: version "7.8.0" @@ -274,6 +376,18 @@ rxjs@^7.2.0: dependencies: tslib "^2.1.0" +rxjs@^7.8.1: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + "safer-buffer@>= 2.1.2 < 3": version "2.1.2" resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" @@ -284,7 +398,7 @@ signal-exit@^3.0.2: resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -string-width@^4.1.0: +string-width@^4.1.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -293,6 +407,13 @@ string-width@^4.1.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" @@ -307,11 +428,6 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -through@^2.3.6: - version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - tmp@^0.0.33: version "0.0.33" resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" @@ -338,11 +454,6 @@ ts-node@^10.9.1: v8-compile-cache-lib "^3.0.1" yn "3.1.1" -tslib@^1.9.0: - version "1.14.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - tslib@^2.1.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" @@ -358,11 +469,32 @@ typescript@^4.9.5: resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + v8-compile-cache-lib@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz" integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + yn@3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz" diff --git a/package.json b/package.json index 9598f2e7f..00a9a5ef9 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "@types/dockerode": "^3.3.15", "@types/execa": "^2.0.0", "@types/get-port": "^4.2.0", + "@types/inquirer": "^9.0.3", "@types/jsonpath": "^0.2.0", "@types/node": "^18.14.6", "@types/node-ipc": "^9.2.0", diff --git a/utils/Assets.ts b/utils/Assets.ts index ed56b36df..60b167835 100644 --- a/utils/Assets.ts +++ b/utils/Assets.ts @@ -202,6 +202,13 @@ export class Assets { api.tx.tokens.mint(asset, user.keyRingPair.address, amount), ); } + static mintTokenAddress( + asset: BN, + user: string, + amount: BN = this.DEFAULT_AMOUNT, + ): Extrinsic { + return api.tx.tokens.mint(asset, user, amount); + } static transfer(target: User, tokenId: BN, amount: BN): Extrinsic { return api.tx.tokens.transfer(target.keyRingPair.address, tokenId, amount); diff --git a/utils/Bootstrap.ts b/utils/Bootstrap.ts index 4dde4591a..2a57d50b3 100644 --- a/utils/Bootstrap.ts +++ b/utils/Bootstrap.ts @@ -9,6 +9,7 @@ import { Assets } from "./Assets"; import { setupApi } from "./setup"; import { Sudo } from "./sudo"; import { testLog } from "./Logger"; +import { api, Extrinsic } from "./setup"; import { BN } from "@polkadot/util"; export async function waitForBootstrapStatus( @@ -216,3 +217,8 @@ export async function updatePromoteBootstrapPool( }, ); } +export class Bootstrap { + static provision(tokenId: BN, amount: BN): Extrinsic { + return api.tx.bootstrap.provision(tokenId, amount); + } +} diff --git a/utils/Staking.ts b/utils/Staking.ts index 0e1fb5a8e..5e4d6e33a 100644 --- a/utils/Staking.ts +++ b/utils/Staking.ts @@ -115,17 +115,17 @@ export class Staking { liqToken, ); } - static updateCandidateAggregator(testUser: User): Extrinsic { + static updateCandidateAggregator(testUser: User | string): Extrinsic { return api.tx.parachainStaking.updateCandidateAggregator( - testUser.keyRingPair.address, + testUser.toString(), ); } static aggregatorUpdateMetadata( - collators: User[], - action: AggregatorOptions, + collators: User[] | string[], + action: AggregatorOptions = AggregatorOptions.ExtendApprovedCollators, ): Extrinsic { return api.tx.parachainStaking.aggregatorUpdateMetadata( - collators.flatMap((user) => user.keyRingPair.address), + collators.flatMap((user) => user.toString()), action, ); } diff --git a/utils/User.ts b/utils/User.ts index beae2aaab..7de838ebc 100644 --- a/utils/User.ts +++ b/utils/User.ts @@ -65,7 +65,9 @@ export class User { .info(`name: ${this.name}, address: ${this.keyRingPair.address}`); } } - + toString() { + return this.keyRingPair.address; + } addFromMnemonic(keyring: Keyring, mnemonic: string) { this.keyRingPair = keyring.addFromMnemonic(mnemonic); this.name = "mnemonic_created_account"; diff --git a/utils/setupsOnTheGo.ts b/utils/setupsOnTheGo.ts index 5dd7f2c95..f68e19172 100644 --- a/utils/setupsOnTheGo.ts +++ b/utils/setupsOnTheGo.ts @@ -2,23 +2,31 @@ import Keyring from "@polkadot/keyring"; import BN from "bn.js"; import { Assets } from "./Assets"; -import { MGA_ASSET_ID, MAX_BALANCE } from "./Constants"; +import { MGA_ASSET_ID, MAX_BALANCE, KSM_ASSET_ID } from "./Constants"; import { waitForRewards } from "./eventListeners"; -import { setupApi, setupUsers } from "./setup"; +import { Extrinsic, setupApi, setupUsers } from "./setup"; import { Sudo } from "./sudo"; +import { xxhashAsHex } from "@polkadot/util-crypto"; + import { getLiquidityAssetId, getLiquidityPool, calculate_buy_price_id_rpc, } from "./tx"; import { User } from "./User"; -import { getEnvironmentRequiredVars } from "./utils"; +import { getEnvironmentRequiredVars, getUserBalanceOfToken } from "./utils"; import { Xyk } from "./xyk"; -import { getApi, api, initApi } from "./api"; -import { signTx } from "@mangata-finance/sdk"; +import { getApi, api, initApi, getMangataInstance } from "./api"; +import { BN_ZERO, signTx } from "@mangata-finance/sdk"; import { getBalanceOfPool } from "./txHandler"; - -const tokenOrigin = "ActivatedUnstakedReserves"; // "AvailableBalance"; +import { StorageKey, Bytes } from "@polkadot/types"; +import { ITuple, Codec } from "@polkadot/types/types"; +import jsonpath from "jsonpath"; +import { Staking, AggregatorOptions, tokenOriginEnum } from "./Staking"; +import { hexToBn } from "@polkadot/util"; +import { Bootstrap } from "./Bootstrap"; +import assert from "assert"; +const tokenOrigin = tokenOriginEnum.ActivatedUnstakedReserves; export async function vetoMotion(motionId: number) { //const fundAcc = "5Gc1GyxLPr1A4jE1U7u9LFYuFftDjeSYZWQXHgejQhSdEN4s"; @@ -57,6 +65,8 @@ export async function setupACouncilWithDefaultUsers() { const testUser2 = new User(keyring, "//Alice"); const testUser3 = new User(keyring, "//Charlie"); const testUser4 = new User(keyring, "//Eve"); + const testUser5 = new User(keyring, "//Ferdie"); + const testUser6 = new User(keyring, "//Dave"); const sudo = new User(keyring, getEnvironmentRequiredVars().sudo); const token2 = await Assets.issueAssetToUser(sudo, amount, sudo, true); await Sudo.batchAsSudoFinalized( @@ -64,10 +74,14 @@ export async function setupACouncilWithDefaultUsers() { Assets.mintToken(token2, testUser2, amount), Assets.mintToken(token2, testUser3, amount), Assets.mintToken(token2, testUser4, amount), + Assets.mintToken(token2, testUser5, amount), + Assets.mintToken(token2, testUser6, amount), Assets.mintNative(testUser1, amount), Assets.mintNative(testUser2, amount), Assets.mintNative(testUser3, amount), Assets.mintNative(testUser4, amount), + Assets.mintNative(testUser5, amount), + Assets.mintNative(testUser6, amount), ); await Sudo.asSudoFinalized( Sudo.sudo( @@ -77,6 +91,8 @@ export async function setupACouncilWithDefaultUsers() { testUser2.keyRingPair.address, testUser3.keyRingPair.address, testUser4.keyRingPair.address, + testUser5.keyRingPair.address, + testUser6.keyRingPair.address, ], testUser1.keyRingPair.address, 0, @@ -96,7 +112,16 @@ export async function setupPoolWithRewardsForDefaultUsers() { const testUser2 = new User(keyring, "//Alice"); const testUser3 = new User(keyring, "//Charlie"); const testUser4 = new User(keyring, "//Eve"); - const users = [testUser1, testUser2, testUser3, testUser4]; + const testUser5 = new User(keyring, "//Dave"); + const testUser6 = new User(keyring, "//Ferdie"); + const users = [ + testUser1, + testUser2, + testUser3, + testUser4, + testUser5, + testUser6, + ]; const sudo = new User(keyring, getEnvironmentRequiredVars().sudo); const token2 = await Assets.issueAssetToUser(sudo, amount, sudo, true); await Sudo.batchAsSudoFinalized( @@ -106,10 +131,14 @@ export async function setupPoolWithRewardsForDefaultUsers() { Assets.mintToken(token2, testUser2, amount), Assets.mintToken(token2, testUser3, amount), Assets.mintToken(token2, testUser4, amount), + Assets.mintToken(token2, testUser5, amount), + Assets.mintToken(token2, testUser6, amount), Assets.mintNative(testUser1, amount), Assets.mintNative(testUser2, amount), Assets.mintNative(testUser3, amount), Assets.mintNative(testUser4, amount), + Assets.mintNative(testUser5, amount), + Assets.mintNative(testUser6, amount), Sudo.sudoAs( testUser1, Xyk.createPool(MGA_ASSET_ID, amount.divn(10), token2, amount.divn(10)), @@ -134,11 +163,108 @@ export async function setupPoolWithRewardsForDefaultUsers() { testUser4, Xyk.mintLiquidity(MGA_ASSET_ID, token2, amount.divn(10), amount), ), + Sudo.sudoAs( + testUser5, + Xyk.mintLiquidity(MGA_ASSET_ID, token2, amount.divn(10), amount), + ), + Sudo.sudoAs( + testUser6, + Xyk.mintLiquidity(MGA_ASSET_ID, token2, amount.divn(10), amount), + ), + ); + await waitForRewards(testUser4, liqId); + return { users, liqId, sudo, token2 }; +} +export async function setupTokenWithRewardsForDefaultUsers() { + await setupApi(); + await setupUsers(); + const amount = (await api?.consts.parachainStaking.minCandidateStk)?.muln( + 1000, + )!; + const keyring = new Keyring({ type: "sr25519" }); + const testUser1 = new User(keyring, "//Bob"); + const testUser2 = new User(keyring, "//Alice"); + const testUser3 = new User(keyring, "//Charlie"); + const testUser4 = new User(keyring, "//Eve"); + const testUser5 = new User(keyring, "//Dave"); + const testUser6 = new User(keyring, "//Ferdie"); + const users = [ + testUser1, + testUser2, + testUser3, + testUser4, + testUser5, + testUser6, + ]; + const sudo = new User(keyring, getEnvironmentRequiredVars().sudo); + const token2 = await Assets.issueAssetToUser(sudo, amount, sudo, true); + await Sudo.batchAsSudoFinalized( + Assets.FinalizeTge(), + Assets.initIssuance(), + Assets.mintToken(token2, testUser1, amount), + Assets.mintToken(token2, testUser2, amount), + Assets.mintToken(token2, testUser3, amount), + Assets.mintToken(token2, testUser4, amount), + Assets.mintToken(token2, testUser5, amount), + Assets.mintToken(token2, testUser6, amount), + Assets.mintNative(testUser1, amount), + Assets.mintNative(testUser2, amount), + Assets.mintNative(testUser3, amount), + Assets.mintNative(testUser4, amount), + Assets.mintNative(testUser5, amount), + Assets.mintNative(testUser6, amount), + ); + const liqId = token2; + await Sudo.batchAsSudoFinalized( + Assets.promotePool(liqId.toNumber(), 20), + Sudo.sudoAs(testUser1, Xyk.activateLiquidity(token2, amount.divn(10))), + Sudo.sudoAs(testUser2, Xyk.activateLiquidity(token2, amount.divn(10))), + Sudo.sudoAs(testUser3, Xyk.activateLiquidity(token2, amount.divn(10))), + Sudo.sudoAs(testUser4, Xyk.activateLiquidity(token2, amount.divn(10))), + Sudo.sudoAs(testUser5, Xyk.activateLiquidity(token2, amount.divn(10))), + Sudo.sudoAs(testUser6, Xyk.activateLiquidity(token2, amount.divn(10))), ); await waitForRewards(testUser4, liqId); return { users, liqId, sudo, token2 }; } -export async function joinAsCandidate(userName = "//Charlie", liqId = 9) { + +export async function burnAllTokensFromPool(liqToken: BN) { + await setupApi(); + await setupUsers(); + const keyring = new Keyring({ type: "sr25519" }); + const testUser1 = new User(keyring, "//Bob"); + const testUser2 = new User(keyring, "//Alice"); + const testUser3 = new User(keyring, "//Charlie"); + const testUser4 = new User(keyring, "//Eve"); + const testUser5 = new User(keyring, "//Dave"); + const testUser6 = new User(keyring, "//Ferdie"); + const users = [ + testUser1, + testUser2, + testUser3, + testUser4, + testUser5, + testUser6, + ]; + const txs = []; + for (let index = 0; index < users.length; index++) { + const user = users[index]; + const amounts = await getUserBalanceOfToken(liqToken, user); + const pool = await getLiquidityPool(liqToken); + const burnTx = Xyk.burnLiquidity( + pool[0], + pool[1], + amounts.free.add(amounts.reserved), + ); + txs.push(Sudo.sudoAs(user, burnTx)); + } + await Sudo.batchAsSudoFinalized(...txs); +} +export async function joinAsCandidate( + userName = "//Charlie", + liqId = 9, + amount = new BN(0), +) { await setupUsers(); await setupApi(); const api = await getApi(); @@ -150,40 +276,51 @@ export async function joinAsCandidate(userName = "//Charlie", liqId = 9) { const numCollators = (await api?.query.parachainStaking.candidatePool())! .length; //const amountToJoin = new BN("5000000000000000000000"); - const amountToJoin = new BN( + let amountToJoin = new BN( await api!.consts.parachainStaking.minCandidateStk!.toString(), ).addn(1234567); - + if (amount.gt(BN_ZERO)) { + amountToJoin = amount; + } console.info("amount: " + amountToJoin.toString()); - const tokenInPool = await ( - await getLiquidityPool(liq) - ).filter((x) => x.gt(MGA_ASSET_ID))[0]; - const tokensToMint = await calculate_buy_price_id_rpc( - tokenInPool, - MGA_ASSET_ID, - amountToJoin, - ); - console.info("Token to mint: " + tokensToMint.toString()); - await Sudo.batchAsSudoFinalized( - Assets.mintToken(tokenInPool, user, amountToJoin.muln(100000)), - Assets.mintNative(user, amountToJoin.muln(100000)), - Sudo.sudoAs( - user, - Xyk.mintLiquidity( - MGA_ASSET_ID, - tokenInPool, - amountToJoin.muln(2), - amountToJoin.muln(100000), + let orig = tokenOrigin; + if (liq.gt(BN_ZERO)) { + const tokenInPool = await ( + await getLiquidityPool(liq) + ).filter((x) => x.gt(MGA_ASSET_ID))[0]; + const tokensToMint = await calculate_buy_price_id_rpc( + tokenInPool, + MGA_ASSET_ID, + amountToJoin, + ); + console.info("Token to mint: " + tokensToMint.toString()); + await Sudo.batchAsSudoFinalized( + Assets.mintToken(tokenInPool, user, amountToJoin.muln(100000)), + Assets.mintNative(user, amountToJoin.muln(100000)), + Sudo.sudoAs( + user, + Xyk.mintLiquidity( + MGA_ASSET_ID, + tokenInPool, + amountToJoin.muln(2), + amountToJoin.muln(100000), + ), ), - ), - ); + ); + } else { + await Sudo.batchAsSudoFinalized( + Assets.mintToken(BN_ZERO, user, amountToJoin.muln(100000)), + ); + amountToJoin = amountToJoin.muln(2); + orig = tokenOriginEnum.AvailableBalance; + } await signTx( api, // @ts-ignore api?.tx.parachainStaking.joinCandidates( - amountToJoin.subn(100), + amountToJoin, liqId, - tokenOrigin, + orig, // @ts-ignore - Mangata bond operation has 4 params, somehow is inheriting the bond operation from polkadot :S new BN(numCollators), // @ts-ignore @@ -232,15 +369,15 @@ export async function joinAFewCandidates(numCandidates = 50, liqId = 9) { for (let index = 0; index < numCandidates; index++) { const user = new User(keyring); users.push(user); - txs.push(Assets.mintToken(tokenInPool, user, tokensToMint.muln(100))); - txs.push(Assets.mintNative(user, amountToJoin.muln(100000))); + txs.push(Assets.mintToken(tokenInPool, user, tokensToMint.muln(500))); + txs.push(Assets.mintNative(user, amountToJoin.muln(500))); txs.push( Sudo.sudoAs( user, Xyk.mintLiquidity( MGA_ASSET_ID, tokenInPool, - amountToJoin.muln(2), + amountToJoin.muln(10), MAX_BALANCE, ), ), @@ -254,7 +391,7 @@ export async function joinAFewCandidates(numCandidates = 50, liqId = 9) { api, // @ts-ignore api?.tx.parachainStaking.joinCandidates( - minLiqToJoin.addn(1000), + minLiqToJoin.addn(10000).addn(index * 2000), liqId, tokenOrigin, // @ts-ignore - Mangata bond operation has 4 params, somehow is inheriting the bond operation from polkadot :S @@ -278,28 +415,33 @@ export async function giveTokensToUser(userName = "//Charlie", liqId = 9) { const amountToJoin = new BN( api!.consts.parachainStaking.minCollatorStk!.toString(), ).addn(1234); - const tokenInPool = await ( - await getLiquidityPool(liq) - ).filter((x) => x.gt(MGA_ASSET_ID))[0]; - const tokensToMint = await calculate_buy_price_id_rpc( - tokenInPool, - MGA_ASSET_ID, - amountToJoin, - ); - console.info("Token to mint: " + tokensToMint.toString()); - await Sudo.batchAsSudoFinalized( - Assets.mintToken(tokenInPool, user, tokensToMint.muln(100)), - Assets.mintNative(user, amountToJoin.muln(100000)), - Sudo.sudoAs( - user, - Xyk.mintLiquidity( - MGA_ASSET_ID, - tokenInPool, - amountToJoin.muln(2), - tokensToMint.muln(4), + const pool = await getLiquidityPool(liq); + if (pool.length > 0) { + const tokenInPool = await ( + await getLiquidityPool(liq) + ).filter((x) => x.gt(MGA_ASSET_ID))[0]; + const tokensToMint = await calculate_buy_price_id_rpc( + tokenInPool, + MGA_ASSET_ID, + amountToJoin, + ); + console.info("Token to mint: " + tokensToMint.toString()); + await Sudo.batchAsSudoFinalized( + Assets.mintToken(tokenInPool, user, tokensToMint.muln(100)), + Assets.mintNative(user, amountToJoin.muln(100000)), + Sudo.sudoAs( + user, + Xyk.mintLiquidity( + MGA_ASSET_ID, + tokenInPool, + amountToJoin.muln(2), + tokensToMint.muln(4), + ), ), - ), - ); + ); + } else { + await Sudo.batchAsSudoFinalized(Assets.mintToken(liq, user)); + } } export async function fillWithDelegators( numDelegators: number, @@ -328,51 +470,86 @@ export async function fillWithDelegators( const tokenInPool = await ( await getLiquidityPool(liq) ).filter((x) => x.gt(MGA_ASSET_ID))[0]; - const tokensToMint = await calculate_buy_price_id_rpc( - tokenInPool, - MGA_ASSET_ID, - amountToJoin, - ); - const txs = []; - const users = []; - for (let index = 0; index < numDelegators; index++) { - const user = new User(keyring); - users.push(user); - txs.push(Assets.mintToken(tokenInPool, user, tokensToMint.muln(100))); - txs.push(Assets.mintNative(user, amountToJoin.muln(100000))); - txs.push( - Sudo.sudoAs( - user, - Xyk.mintLiquidity( - MGA_ASSET_ID, - tokenInPool, - amountToJoin.muln(2), - MAX_BALANCE, - ), - ), + if (!liq.eqn(0)) { + let tokensToMint = await calculate_buy_price_id_rpc( + tokenInPool, + MGA_ASSET_ID, + amountToJoin, ); - } - await Sudo.batchAsSudoFinalized(...txs); - const joins = []; - for (let index = 0; index < numDelegators; index++) { - joins.push( - signTx( - api, - // @ts-ignore - api?.tx.parachainStaking.delegate( - targetAddress, - amountToJoin.subn(10), - tokenOrigin, - // @ts-ignore - Mangata bond operation has 4 params, somehow is inheriting the bond operation from polkadot :S - new BN(candidateDelegationCount).addn(index), + if (tokensToMint.eqn(0)) { + tokensToMint = amountToJoin.muln(10000); + } + const txs = []; + const users = []; + for (let index = 0; index < numDelegators; index++) { + const user = new User(keyring); + users.push(user); + txs.push(Assets.mintToken(tokenInPool, user, tokensToMint.muln(100))); + txs.push(Assets.mintNative(user, amountToJoin.muln(100000))); + txs.push( + Sudo.sudoAs( + user, + Xyk.mintLiquidity( + MGA_ASSET_ID, + tokenInPool, + amountToJoin.muln(2), + MAX_BALANCE, + ), + ), + ); + } + await Sudo.batchAsSudoFinalized(...txs); + const joins = []; + for (let index = 0; index < numDelegators; index++) { + joins.push( + signTx( + api, // @ts-ignore - new BN(totalDelegators).addn(index), + api?.tx.parachainStaking.delegate( + targetAddress, + amountToJoin.subn(10), + tokenOrigin, + // @ts-ignore - Mangata bond operation has 4 params, somehow is inheriting the bond operation from polkadot :S + new BN(candidateDelegationCount).addn(index), + // @ts-ignore + new BN(totalDelegators).addn(index), + ), + users[index].keyRingPair, ), - users[index].keyRingPair, - ), - ); + ); + } + await Promise.all(joins); + } else { + const tokensToMint = amountToJoin.muln(10000); + const txs = []; + const users = []; + for (let index = 0; index < numDelegators; index++) { + const user = new User(keyring); + users.push(user); + txs.push(Assets.mintNative(user, tokensToMint)); + } + await Sudo.batchAsSudoFinalized(...txs); + const joins = []; + for (let index = 0; index < numDelegators; index++) { + joins.push( + signTx( + api, + // @ts-ignore + api?.tx.parachainStaking.delegate( + targetAddress, + amountToJoin.muln(3), + "AvailableBalance", + // @ts-ignore - Mangata bond operation has 4 params, somehow is inheriting the bond operation from polkadot :S + new BN(candidateDelegationCount).addn(index), + // @ts-ignore + new BN(totalDelegators).addn(index), + ), + users[index].keyRingPair, + ), + ); + } + await Promise.all(joins); } - await Promise.all(joins); } export async function printCandidatesNotProducing(): Promise { @@ -440,3 +617,501 @@ export async function createCustomPool(div = true, ratio = 1, user = "//Bob") { tx, ); } +export function getStorageKey( + moduleName: string, + storageItemName: string, +): string { + return ( + xxhashAsHex(moduleName, 128) + + stripHexPrefix(xxhashAsHex(storageItemName, 128)) + ); +} +export function stripHexPrefix(str: string): string { + return isHexPrefixed(str) ? str.slice(2) : str; +} +function isHexPrefixed(str: string): boolean { + return str.slice(0, 2) === "0x"; +} +export async function subscribeAndPrintTokenChanges( + ws = "ws://127.0.0.1:9946", +) { + await setupApi(); + await setupUsers(); + await initApi(ws); + const api = await getApi(); + type Tokens = { free: BN; reserved: BN; frozen: BN }; + function getPrint(user: string, tokens: Tokens) { + return `${user} -- free: ${tokens.free}, reserved: ${tokens.reserved}, frozen: ${tokens.frozen}`; + } + const currentState = new Map(); + await api!.rpc.chain.subscribeNewHeads(async (lastHeader) => { + console.log("#" + lastHeader.number); + await api.query.tokens.accounts.entries(async (storageKey: any) => { + storageKey.forEach((element: { toHuman: () => any }[]) => { + const user = element[0].toHuman()[0] + "-" + element[0].toHuman()[1]; + const status = { + free: hexToBn(JSON.parse(element[1].toString()).free), + reserved: hexToBn(JSON.parse(element[1].toString()).reserved), + frozen: hexToBn(JSON.parse(element[1].toString()).frozen), + } as Tokens; + if (currentState.get(user) === undefined) { + console.log(getPrint(user, status)); + currentState.set(user, { + free: status.free, + reserved: status.reserved, + frozen: status.frozen, + } as Tokens); + } else { + if ( + !( + status.free.eq(currentState.get(user)!.free) && + status.frozen.eq(currentState.get(user)!.frozen) && + status.reserved.eq(currentState.get(user)!.reserved) + ) + ) { + console.log("BEFORE:" + getPrint(user, currentState.get(user)!)); + const diffSentence = `Diff: free: ${new BN(status.free).sub( + new BN(currentState.get(user)!.free), + )} - , reserved: ${new BN(status.reserved).sub( + new BN(currentState.get(user)!.reserved), + )} - , frozen: ${new BN(status.frozen).sub( + new BN(currentState.get(user)!.frozen), + )} `; + currentState.set(user, status); + console.log(" AFTER:" + getPrint(user, currentState.get(user)!)); + console.log(diffSentence); + } + } + }); + }); + }); +} + +export async function findAllRewardsAndClaim() { + await setupUsers(); + await setupApi(); + const keyring = new Keyring({ type: "sr25519" }); + let liqTokenId: BN; + let rewardAmount: BN; + + type RewardsInfo = { + tokenId: BN; + activatedAmount: BN; + lastCheckpoint: BN; + missingAtLastCheckpoint: BN; + poolRatioAtLastCheckpoint: BN; + rewardsAlreadyClaimed: BN; + rewardsNotYetClaimed: BN; + }; + + const usersInfo: any = []; + const extrinsicCall = []; + const { chainUri } = getEnvironmentRequiredVars(); + const mangata = await getMangataInstance(chainUri); + + const accountsResponse = await api!.query.proofOfStake.rewardsInfo.entries(); + + await accountsResponse.forEach((element: { toHuman: () => any }[]) => { + const user = element[0].toHuman()[0]; + const status = { + tokenId: new BN(element[0].toHuman()[1]), + activatedAmount: hexToBn( + JSON.parse(element[1].toString()).activatedAmount, + ), + lastCheckpoint: hexToBn(JSON.parse(element[1].toString()).lastCheckpoint), + missingAtLastCheckpoint: hexToBn( + JSON.parse(element[1].toString()).missingAtLastCheckpoint, + ), + poolRatioAtLastCheckpoint: hexToBn( + JSON.parse(element[1].toString()).poolRatioAtLastCheckpoint, + ), + rewardsAlreadyClaimed: hexToBn( + JSON.parse(element[1].toString()).rewardsAlreadyClaimed, + ), + rewardsNotYetClaimed: hexToBn( + JSON.parse(element[1].toString()).rewardsNotYetClaimed, + ), + } as RewardsInfo; + usersInfo.push([user, status]); + }); + const promotedPairNumber = usersInfo.length; + const user = new User(keyring); + for (let index = 0; index < promotedPairNumber; index++) { + function getPrint(user: string, tokens: RewardsInfo) { + const text = + user + + "-- tokenID: " + + tokens.tokenId.toString() + + ", missingAtLastCheckpoint: " + + tokens.missingAtLastCheckpoint.toString() + + ", alreadyClaimed: " + + tokens.rewardsAlreadyClaimed + + ", notYetClaimed:" + + tokens.rewardsNotYetClaimed; + return text; + } + user.addFromAddress(keyring, usersInfo[index][0]); + liqTokenId = new BN(usersInfo[index][1].tokenId); + rewardAmount = await mangata.rpc.calculateRewardsAmount({ + address: user.keyRingPair.address, + liquidityTokenId: liqTokenId.toString(), + }); + if (rewardAmount) { + console.info(getPrint(usersInfo[index][0], usersInfo[index][1])); + extrinsicCall.push(Sudo.sudoAs(user, Xyk.claimRewardsAll(liqTokenId))); + } + } + let txs: Extrinsic[] = []; + for (let index = 0; index < extrinsicCall.length; index++) { + const tx = extrinsicCall[index]; + txs.push(tx); + if (txs.length > 100) { + const methodSudoAsDone = (await Sudo.batchAsSudoFinalized(...txs)).filter( + (extrinsicResult) => extrinsicResult.method === "SudoAsDone", + ); + txs = []; + methodSudoAsDone.forEach((element: any) => { + if (element.event.data[0].isErr !== false) { + console.log("ERROR:" + JSON.stringify(element.event.data[0])); + } + assert(element.event.data[0].isErr === false); + }); + } + } + const methodSudoAsDone = (await Sudo.batchAsSudoFinalized(...txs)).filter( + (extrinsicResult) => extrinsicResult.method === "SudoAsDone", + ); + methodSudoAsDone.forEach((element: any) => { + if (element.event.data[0].isErr !== false) { + console.log("ERROR:" + JSON.stringify(element.event.data[0])); + } + assert(element.event.data[0].isErr === false); + }); +} + +export async function getTokensAccountDataStorage(ws = "ws://127.0.0.1:9946") { + await setupApi(); + await setupUsers(); + await initApi(ws); + const api = await getApi(); + const allPallets = await listStorages(ws); + const storageToListen = allPallets + .filter((x: any) => x[0] === "Tokens") + .flatMap((item: any) => + item[1].map((element: any) => { + return [item[0], element]; + }), + ); + console.info(JSON.stringify(storageToListen)); + + for (let dataId = 0; dataId < storageToListen.length; dataId++) { + const key = getStorageKey( + storageToListen[dataId][0], + storageToListen[dataId][1], + ); + const allKeys = []; + let cont = true; + let keys = await api.rpc.state.getKeysPaged(key, 100); + while (cont) { + for (let index = 0; index < keys.length; index++) { + const storage = await api.rpc.state.getStorage(keys[index]); + allKeys.push([keys[index], storage]); + } + const nextkeys = await api.rpc.state.getKeysPaged(key, 100, keys[99]); + if (nextkeys.includes(keys[99]) || nextkeys.length === 0) { + cont = false; + } else { + keys = nextkeys; + } + keys.forEach(async (value) => { + const storage = await api.rpc.state.getStorage(value); + allKeys.push([value, storage]); + console.info(value.toString()); + console.info(storage.toString()); + }); + } + } +} +export async function testTokensForUsers(userName = "//Eve") { + await setupApi(); + await setupUsers(); + const api = await getApi(); + const keyring = new Keyring({ type: "sr25519" }); + const user = new User(keyring, userName); + const availableAssetsInfo = await api.query.assetRegistry.metadata.entries(); + const tokens: any[] = []; + availableAssetsInfo.forEach((tokenEntry) => { + tokens.push([(tokenEntry[0].toHuman() as [1])[0], tokenEntry[1].toHuman()]); + }); + const txs: Extrinsic[] = []; + tokens.forEach((token: any) => { + if ( + !(JSON.parse(JSON.stringify(token[1])).name as string).includes( + "Liquidity", + ) + ) { + txs.push(Assets.mintToken(new BN(token[0]), user)); + } + }); + await Sudo.batchAsSudoFinalized(...txs); +} +export async function createProposal() { + await setupApi(); + await setupUsers(); + const dict = { + "5G22cv9fT5RNVm2AV4MKgagmKH9aoZL4289UDcYrToP9K6hQ": 2000000000000, + "5GbtrMJi2MV3oDMpXnkCjNHErDHfmwN6AS4E7JCtsqsABU86": 2000000000000, + "5HKgtV7xNbKQyX4RZeTA5gtpZZZb67fay4kfjDhgjzdPe6ap": 100000000000, + "5FZKwNzhMiKzqAmSepiTQSSxx8cfM5kJmnAJT4R5a99LZvRh": 600000000000, + "5EAP8iPdRrPA6qjqcVZm7LobYd7Qy9r3JddaEs4uLKVChzC6": 2245583936554, + "5HnHFaFWkVkHfxf4J6Pwh7xyjJFHTjm78kC29oALhG1WkRK5": 2264063755235, + "5FTexk7oF68CohbR2DDyr2k6sBEyktNLFVZCCzGEfrcheCXM": 361400000000, + "5E2KX6jQi2w63MS4srza3nCMRkVwLnWYT1yp9gB6rPY9JAFa": 235000000000, + "5CZpuyTyEGBKFBRu7ebyTp9q97jxKuyejrAGXZJwUQ17PHAk": 20000000000, + "5CzMGHQAz9LT2CmuNTRAmvbwsdeJzCAvQYDmj3K6h6pLcUXK": 9361013561421, + "5H92NmUsAvVRpc6UC38SnU2RDX1fMyxAxzLL65uvqAFBynkH": 183051308897, + "5GYknXBBRKfRXYYBc1f8xhm15UrR3kLV9kMayqYr86sKRfT5": 1242738580000, + }; + const dict2 = { + "5CZpuyTyEGBKFBRu7ebyTp9q97jxKuyejrAGXZJwUQ17PHAk": 1286000000000, + "5G22cv9fT5RNVm2AV4MKgagmKH9aoZL4289UDcYrToP9K6hQ": 9000000000000, + "5FZKwNzhMiKzqAmSepiTQSSxx8cfM5kJmnAJT4R5a99LZvRh": 53000000000000, + }; + const txs: Extrinsic[] = []; + Object.keys(dict).forEach((account) => { + txs.push( + Assets.mintTokenAddress( + KSM_ASSET_ID, + account, + //@ts-ignore + new BN(dict[account]!), + ), + ); + }); + Object.keys(dict2).forEach((account) => { + txs.push( + //@ts-ignore + Assets.mintTokenAddress(KSM_ASSET_ID, account, new BN(dict2[account]!)), + ); + }); + await Sudo.batch(...txs); +} +export async function migrate() { + await setupApi(); + await setupUsers(); + await initApi("wss://kusama-archive.mangata.online"); + const api = await getApi(); + const allPallets = await listStorages(); + const storageToMigrate1 = allPallets + .filter( + (x: any) => + x[0] === "AssetRegistry" || + x[0] === "Tokens" || + x[0] === "Issuance" || + x[0] === "Xyk" || + x[0] === "MultiPurposeLiquidity", + ) + .flatMap((item: any) => + item[1].map((element: any) => { + return [item[0], element]; + }), + ); + const storageToMigrate2 = allPallets + .filter( + (x: any) => + x[0] === "ProofOfStake" || + x[0] === "RewardsInfo" || + x[0] === "Vesting" || + x[0] === "Bootstrap" || + x[0] === "OrmlXcm" || + x[0] === "Crowdloan" || + x[0] === "System", + ) + .flatMap((item: any) => + item[1].map((element: any) => { + return [item[0], element]; + }), + ); + const storageToMigrate = (storageToMigrate1 as []).concat(storageToMigrate2); + console.info(JSON.stringify(storageToMigrate2)); + // const data = [ + // ["Xyk", "RewardsInfo"], + // ["Xyk", "LiquidityMiningUser"], + // ["Xyk", "LiquidityMiningPool"], + // ["Xyk", "LiquidityMiningUserToBeClaimed"], + // ["Xyk", "LiquidityMiningActiveUser"], + // ["Xyk", "LiquidityMiningActivePool"], + // ["Xyk", "LiquidityMiningUserClaimed"], + // ["Xyk", "LiquidityMiningActivePoolV2"], + // ]; + + for (let dataId = 0; dataId < storageToMigrate.length; dataId++) { + const key = getStorageKey( + storageToMigrate[dataId][0], + storageToMigrate[dataId][1], + ); + console.warn( + "::: starting with :::" + JSON.stringify(storageToMigrate[dataId]), + ); + let allKeys = []; + let cont = true; + let keys = await api.rpc.state.getKeysPaged(key, 100); + let loop: number = 0; + while (cont) { + for (let index = 0; index < keys.length; index++) { + const storage = await api.rpc.state.getStorage(keys[index]); + allKeys.push([keys[index], storage]); + } + console.info("Found:" + JSON.stringify(allKeys.length)); + const nextkeys = await api.rpc.state.getKeysPaged( + key, + 100, + keys[keys.length - 1], + ); + if (loop % 8 === 0) { + const txs: Extrinsic[] = []; + allKeys.forEach((x) => { + const storageKey = api.createType("StorageKey", x[0]); + const storageData = api.createType("StorageData", x[1].toHex()); + const tx = api.tx.system.setStorage([ + [storageKey, storageData] as ITuple<[StorageKey, Bytes]>, + ]); + txs.push(Sudo.sudo(tx)); + }); + + await Sudo.batchAsSudoFinalized(...txs); + allKeys = []; + } + if (nextkeys.includes(keys[keys.length - 1]) || nextkeys.length === 0) { + cont = false; + } else { + keys = nextkeys; + } + loop++; + } + const txs: Extrinsic[] = []; + allKeys.forEach((x) => { + const storageKey = api.createType("StorageKey", x[0]); + const storageData = api.createType("StorageData", x[1].toHex()); + const tx = api.tx.system.setStorage([ + [storageKey, storageData] as ITuple<[StorageKey, Bytes]>, + ]); + txs.push(Sudo.sudo(tx)); + }); + + await Sudo.batchAsSudoFinalized(...txs); + } +} +export async function listStorages(ws = "wss://kusama-archive.mangata.online") { + await setupApi(); + await setupUsers(); + await initApi(ws); + const api = await getApi(); + const meta = await api.rpc.state.getMetadata(); + const metaJson = JSON.parse(JSON.stringify(meta)); + const res = jsonpath.query(metaJson, "$..pallets[*].name"); + const result: any = []; + res.forEach((pallet) => { + const storageItems = jsonpath.query( + metaJson, + `$..pallets[?(@.name =="${pallet}")].storage.items[*].name`, + ); + result.push([pallet, storageItems]); + }); + console.info(result); + return result; +} +export async function provisionWith100Users() { + const tokenId = new BN(4); + const secToken = new BN(9); + await setupUsers(); + await setupApi(); + for (let loop = 0; loop < 10; loop++) { + const users = []; + let txs = []; + const keyring = new Keyring({ type: "sr25519" }); + for (let index = 0; index < 50; index++) { + const user = new User(keyring); + users.push(user); + txs.push(Assets.mintToken(tokenId, user, Assets.MG_UNIT.muln(100))); + txs.push(Assets.mintNative(user, Assets.MG_UNIT.muln(100000))); + txs.push( + Sudo.sudoAs( + user, + Bootstrap.provision(tokenId, Assets.MG_UNIT.muln(10)), + ), + ); + } + await Sudo.batchAsSudoFinalized(...txs); + txs = []; + for (let index = 0; index < 50; index++) { + const user = new User(keyring); + users.push(user); + txs.push(Assets.mintToken(secToken, user, Assets.MG_UNIT.muln(100))); + txs.push(Assets.mintNative(user, Assets.MG_UNIT.muln(100000))); + txs.push( + Sudo.sudoAs( + user, + Bootstrap.provision(secToken, Assets.MG_UNIT.muln(10)), + ), + ); + } + await Sudo.batchAsSudoFinalized(...txs); + } +} +export async function userAggregatesOn( + userAggregating: string, + userWhoDelegates: string, +) { + await setupApi(); + await setupUsers(); + const tx1 = Sudo.sudoAsWithAddressString( + userAggregating, + Staking.aggregatorUpdateMetadata( + [userWhoDelegates], + AggregatorOptions.ExtendApprovedCollators, + ), + ); + const tx2 = Sudo.sudoAsWithAddressString( + userWhoDelegates, + Staking.updateCandidateAggregator(userAggregating), + ); + await Sudo.batchAsSudoFinalized(tx1, tx2); +} + +export interface RPCParam { + paramType: string; + paramValue: any; +} + +export async function replaceByStateCall( + method: string = "calculate_rewards_amount", + params: RPCParam[] = [ + { + paramType: "AccountId", + paramValue: "5DLP5KLo3oPF8angc8VtxuMZ1CRt5ViM9AMiQokr5XPUXnJR", + }, + { paramType: "TokenId", paramValue: "8" }, + ], + module = "xyk", + returnType = "XYKRpcResult", +) { + await setupApi(); + await setupUsers(); + const api = await getApi(); + let encodedStr = "0x"; + params.forEach((item) => { + encodedStr += api + .createType(item.paramType, item.paramValue) + .toHex(true) + .replace("0x", ""); + }); + let res: any; + if (module === "xyk") { + console.log(method); + console.log(encodedStr); + res = await api.rpc.state.call(`XykApi_${method}`, encodedStr); + } + const parsed = api.createType(returnType, res); + console.log(JSON.parse(JSON.stringify(parsed))); +} diff --git a/utils/utils.ts b/utils/utils.ts index a82c587ef..a8e1852a4 100644 --- a/utils/utils.ts +++ b/utils/utils.ts @@ -580,10 +580,14 @@ export async function printCandidatePowers() { for (let index = 0; index < info.length; index++) { const stakingInfo = info[index]; const poolStatus = await getStakingLiquidityTokens(stakingInfo[1]); - const power = stringToBN(stakingInfo[2]) - .mul(stringToBN(poolStatus[0])) - .div(stringToBN(poolStatus[1])); - info[index].push(power.toString()); + if (poolStatus) { + const power = stringToBN(stakingInfo[2]) + .mul(stringToBN(poolStatus[0])) + .div(stringToBN(poolStatus[1])); + info[index].push(power.toString()); + } else { + info[index].push(new BN(info[index][2]).divn(2)); + } } const sorted = info.sort((a, b) => @@ -598,7 +602,9 @@ export async function printCandidatePowers() { " - " + index + "< -- > liq" + - info[index][1].toString(), + info[index][1].toString() + + " -- " + + info[index][2].toString(), ), ); //console.log(JSON.stringify(sorted)); diff --git a/yarn.lock b/yarn.lock index 726ae4dcc..65781e338 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3473,6 +3473,14 @@ resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== +"@types/inquirer@^9.0.3": + version "9.0.7" + resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-9.0.7.tgz#61bb8d0e42f038b9a1738b08fba7fa98ad9b4b24" + integrity sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g== + dependencies: + "@types/through" "*" + rxjs "^7.2.0" + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.6" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" @@ -3682,6 +3690,13 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== +"@types/through@*": + version "0.0.33" + resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.33.tgz#14ebf599320e1c7851e7d598149af183c6b9ea56" + integrity sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ== + dependencies: + "@types/node" "*" + "@types/tiny-async-pool@^1.0.0": version "1.0.4" resolved "https://registry.yarnpkg.com/@types/tiny-async-pool/-/tiny-async-pool-1.0.4.tgz#c6551539785d382debff5d41ff1a65c2c0d98e1c" @@ -12234,7 +12249,7 @@ rustbn.js@~0.2.0: resolved "https://registry.yarnpkg.com/rustbn.js/-/rustbn.js-0.2.0.tgz#8082cb886e707155fd1cb6f23bd591ab8d55d0ca" integrity sha512-4VlvkRUuCJvr2J6Y0ImW7NvTCriMi7ErOAqWk1y69vAdoNIzCF3yPmgeNzx+RQTLEDFq5sHfscn1MwHxP9hNfA== -rxjs@^7.8.1: +rxjs@^7.2.0, rxjs@^7.8.1: version "7.8.1" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==