Skip to content

Commit

Permalink
moving files out of generated folder
Browse files Browse the repository at this point in the history
  • Loading branch information
crypto-vincent committed Jun 13, 2024
1 parent a453b2e commit 80486f2
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 4 deletions.
4 changes: 2 additions & 2 deletions clients/bolt-sdk/lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import BN from "bn.js";
export * from "./accounts";
export * from "./instructions";
export * from "./transactions/transactions";
export * from "./delegation/accounts";
export * from "./delegation/delegate";
export * from "../delegation/accounts";
export * from "../delegation/delegate";
export declare const PROGRAM_ADDRESS =
"WorLD15A7CrDwLcLy4fRqtaTb9fbd8o8iqiEMUDse2n";
export declare const SYSVAR_INSTRUCTIONS_PUBKEY: PublicKey;
Expand Down
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions clients/bolt-sdk/src/generated/accounts/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/**
* This code was GENERATED using the solita package.
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
*
* See: https://github.com/metaplex-foundation/solita
*/

import { Entity } from "./Entity";
import { Registry } from "./Registry";
import { World } from "./World";
Expand Down
7 changes: 7 additions & 0 deletions clients/bolt-sdk/src/generated/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/**
* This code was GENERATED using the solita package.
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
*
* See: https://github.com/metaplex-foundation/solita
*/

import { PublicKey } from "@solana/web3.js";
export * from "./accounts";
export * from "./errors";
Expand Down
7 changes: 7 additions & 0 deletions clients/bolt-sdk/src/generated/instructions/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/**
* This code was GENERATED using the solita package.
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
*
* See: https://github.com/metaplex-foundation/solita
*/

export * from "./addEntity";
export * from "./apply";
export * from "./apply2";
Expand Down
4 changes: 2 additions & 2 deletions clients/bolt-sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { PROGRAM_ID } from "generated";
export * from "./generated/accounts";
export * from "./generated/instructions";
export * from "./transactions/transactions";
export * from "./generated/delegation/accounts";
export * from "./generated/delegation/delegate";
export * from "./delegation/accounts";
export * from "./delegation/delegate";

export const SYSVAR_INSTRUCTIONS_PUBKEY = new PublicKey(
"Sysvar1nstructions1111111111111111111111111"
Expand Down
File renamed without changes.

0 comments on commit 80486f2

Please sign in to comment.