Skip to content

Commit

Permalink
refactor: format files
Browse files Browse the repository at this point in the history
  • Loading branch information
solidsnakedev committed Mar 4, 2024
1 parent 8967289 commit adc7ff3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/docs/pages/contact.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Contact
# Contact
8 changes: 4 additions & 4 deletions packages/lucid-evolution/test/tx.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test("test tx submit", async () => {
const projectId = process.env.VITE_BLOCKFROST_KEY;
const lucid = await Lucid.new(
new Blockfrost(process.env.VITE_API_URL!, projectId),
"Preprod"
"Preprod",
);
const seedPhrase = process.env.VITE_SEED!;
lucid.selectWalletFromSeed(seedPhrase);
Expand Down Expand Up @@ -41,15 +41,15 @@ test("test tx submit", async () => {
.readFrom(utxo)
.payToAddress(
"addr_test1qp4cgm42esrud5njskhsr6uc28s6ljah0phsdqe7qmh3rfuyjgq5wwsca5camufxavmtnm8f6ywga3de3jkgmkwzma4sqv284l",
{ lovelace: 2_000_000n }
{ lovelace: 2_000_000n },
)
.payToAddressWithData(
"addr_test1qp4cgm42esrud5njskhsr6uc28s6ljah0phsdqe7qmh3rfuyjgq5wwsca5camufxavmtnm8f6ywga3de3jkgmkwzma4sqv284l",
{
kind: "inline",
value: "d87980",
},
{ lovelace: 2_000_000n }
{ lovelace: 2_000_000n },
)
.mintAssets({ [policy + fromText("MyMintedToken")]: 1n })
.validTo(Date.now() + 900000)
Expand All @@ -63,7 +63,7 @@ test("test tx submit", async () => {
// Effect.flatMap((signedTx) => Effect.promise(() => signedTx.submit())),
// Effect.flatMap((txHash) => Effect.log(txHash)),
Effect.either,
Effect.runPromise
Effect.runPromise,
);

assert.deepStrictEqual(isRight(signed), true);
Expand Down

0 comments on commit adc7ff3

Please sign in to comment.