@xaidenlabs/uso 1.1.21 → 1.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,45 @@
1
+ export type MyProject = {
2
+ "address": "Fg6PaFpoGXkYsidMpWTK6W2BeZ7FEfcYkg476zPFsLnS",
3
+ "metadata": {
4
+ "name": "my_project",
5
+ "version": "0.1.0",
6
+ "spec": "0.1.0",
7
+ "description": "Created with USO"
8
+ },
9
+ "instructions": [
10
+ {
11
+ "name": "initialize",
12
+ "discriminator": [175, 175, 109, 31, 13, 152, 155, 237],
13
+ "accounts": [],
14
+ "args": []
15
+ }
16
+ ],
17
+ "accounts": [],
18
+ "events": [],
19
+ "errors": [],
20
+ "types": [],
21
+ "constants": []
22
+ };
23
+
24
+ export const IDL: MyProject = {
25
+ "address": "Fg6PaFpoGXkYsidMpWTK6W2BeZ7FEfcYkg476zPFsLnS",
26
+ "metadata": {
27
+ "name": "my_project",
28
+ "version": "0.1.0",
29
+ "spec": "0.1.0",
30
+ "description": "Created with USO"
31
+ },
32
+ "instructions": [
33
+ {
34
+ "name": "initialize",
35
+ "discriminator": [175, 175, 109, 31, 13, 152, 155, 237],
36
+ "accounts": [],
37
+ "args": []
38
+ }
39
+ ],
40
+ "accounts": [],
41
+ "events": [],
42
+ "errors": [],
43
+ "types": [],
44
+ "constants": []
45
+ };
@@ -1,17 +0,0 @@
1
- // @ts-ignore - Types generated by `anchor build`
2
- import * as anchor from "@coral-xyz/anchor";
3
- import { Program } from "@coral-xyz/anchor";
4
- import { MyProject } from "../target/types/my_project";
5
-
6
- describe("my-project", () => {
7
- // Configure the client to use the local cluster.
8
- anchor.setProvider(anchor.AnchorProvider.env());
9
-
10
- const program = anchor.workspace.MyProject as Program<MyProject>;
11
-
12
- it("Is initialized!", async () => {
13
- // Add your test here.
14
- const tx = await program.methods.initialize().rpc();
15
- console.log("Your transaction signature", tx);
16
- });
17
- });