Skip to content

Commit f2b20c3

Browse files
author
adpthegreat
committed
feat:ran pnpm fix
1 parent 8a787b1 commit f2b20c3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

tokens/create-token/poseidon/create_tokens/migrations/deploy.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// single deploy script that's invoked from the CLI, injecting a provider
33
// configured from the workspace's Anchor.toml.
44

5-
const anchor = require("@coral-xyz/anchor");
5+
const anchor = require('@coral-xyz/anchor');
66

7-
module.exports = async function (provider) {
7+
module.exports = async (provider) => {
88
// Configure client to use the provider.
99
anchor.setProvider(provider);
1010

tokens/create-token/poseidon/create_tokens/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"license": "ISC",
2+
"license": "ISC",
33
"scripts": {
44
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
55
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import * as anchor from "@coral-xyz/anchor";
2-
import { Program } from "@coral-xyz/anchor";
3-
import { CreateTokens } from "../target/types/create_tokens";
1+
import * as anchor from '@coral-xyz/anchor';
2+
import { Program } from '@coral-xyz/anchor';
3+
import { CreateTokens } from '../target/types/create_tokens';
44

5-
describe("create_tokens", () => {
5+
describe('create_tokens', () => {
66
// Configure the client to use the local cluster.
77
anchor.setProvider(anchor.AnchorProvider.env());
88

99
const program = anchor.workspace.CreateTokens as Program<CreateTokens>;
1010

11-
it("Is initialized!", async () => {
11+
it('Is initialized!', async () => {
1212
// Add your test here.
1313
const tx = await program.methods.initialize().rpc();
14-
console.log("Your transaction signature", tx);
14+
console.log('Your transaction signature', tx);
1515
});
1616
});

0 commit comments

Comments
 (0)