Skip to content

Commit

Permalink
update: title
Browse files Browse the repository at this point in the history
  • Loading branch information
husreo committed Dec 13, 2024
1 parent 3f87b98 commit 229fd59
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 2,163 deletions.
2 changes: 1 addition & 1 deletion .github/.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CARGO_TERM_COLOR=always
NODE_VERSION=20.x
PROGRAMS=["pump-science"]
PROGRAMS=["pump fun"]
RUST_VERSION=1.73.0
SOLANA_VERSION=1.17.34
ANCHOR_VERSION=0.29.0
Expand Down
2 changes: 1 addition & 1 deletion .github/file-filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ program_common: &program_common

pump_science: &pump_science
- *program_common
- "programs/pump-science/**"
- "programs/pump fun/**"
- "submodules/**"

programs: &programs
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["programs/pump-science", "clients/rust"]
members = ["programs/pump fun", "clients/rust"]
resolver = "2"
[profile.release]
overflow-checks = true
Expand Down
2 changes: 1 addition & 1 deletion cli/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function programCommand(name: string) {
.command(name)
.option('-e, --env <string>', 'Solana cluster env name', 'devnet')
.option('-r, --rpc <string>', 'Solana cluster RPC name', 'rpc')
.option('-k, --keypair <string>', 'Solana wallet Keypair Path', '/home/king/contract_test/pump_science/pump-science-contract//pump_fun.json')
.option('-k, --keypair <string>', 'Solana wallet Keypair Path', '/home/king/contract_test/pump_science/pump fun-contract//pump_fun.json')
}

program.parse(process.argv);
2 changes: 1 addition & 1 deletion clients/js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A Umi-compatible JavaScript library for the project.
```
2. Finally, register the library with your Umi instance like so.
```ts
import { pumpScience } from '@builderz/pump-science';
import { pumpScience } from '@builderz/pump fun';
umi.use(pumpScience());
```

Expand Down
4 changes: 2 additions & 2 deletions clients/js/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@builderz/pump-science",
"name": "@builderz/pump fun",
"version": "0.1.10",
"description": "Pump Science",
"main": "dist/src/index.js",
Expand All @@ -21,7 +21,7 @@
"registry": "https://registry.npmjs.org"
},
"homepage": "builderz.dev",
"repository": "https://github.com/builderz-labs/pump-science-contract.git",
"repository": "https://github.com/builderz-labs/pump fun-contract.git",
"license": "Apache-2.0",
"dependencies": {
"@coral-xyz/anchor": "0.29.0",
Expand Down
2 changes: 1 addition & 1 deletion clients/js/src/sdk/admin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { none, OptionOrNullable, PublicKey, Umi } from "@metaplex-foundation/umi
import { GlobalSettingsInputArgs, ProgramStatus } from "../..";
import { setParams, SetParamsInstructionAccounts } from '../generated/instructions/setParams';
import { initialize, } from '../generated/instructions/initialize';
import { PumpScienceSDK } from "./pump-science";
import { PumpScienceSDK } from "./pump fun";

export type SetParamsInput = Partial<GlobalSettingsInputArgs> & Partial<SetParamsInstructionAccounts>;

Expand Down
2 changes: 1 addition & 1 deletion clients/js/src/sdk/curve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { createBondingCurve,
findBondingCurvePda,
swap,
SwapInstructionArgs } from "../..";
import { PumpScienceSDK } from "./pump-science";
import { PumpScienceSDK } from "./pump fun";
import { findWLPda } from "../utils";

export class CurveSDK {
Expand Down
2 changes: 1 addition & 1 deletion clients/js/src/sdk/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "./pump-science"
export * from "./pump fun"
export * from "./curve"
export * from "./admin"
2 changes: 1 addition & 1 deletion clients/js/src/sdk/whitelist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
removeWl,
RemoveWlInstructionDataArgs
} from "../..";
import { PumpScienceSDK } from "./pump-science";
import { PumpScienceSDK } from "./pump fun";

export class WlSDK {
PumpScience: PumpScienceSDK;
Expand Down
2 changes: 1 addition & 1 deletion configs/shank.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ generateIdl({
programId: "Fmktp2VXcDorWkAyzZAEG5X859mxKMV8XCcayKgZVwBo",
idlDir,
binaryInstallDir,
programDir: path.join(programDir, "pump-science"),
programDir: path.join(programDir, "pump fun"),
rustbin: { locked: true },
});
2,147 changes: 0 additions & 2,147 deletions migrate

This file was deleted.

2 changes: 1 addition & 1 deletion programs/pump-science/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pump-science"
name = "pump fun"
version = "0.1.0"
description = "Created with Anchor"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion tests/bankrun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ const getTknAmount = async (umi: Umi, pubkey: PublicKey) => {
}
};

describe("pump-science", () => {
describe("pump fun", () => {
before(async () => {
await loadProviders();
await labelKeypairs(umi);
Expand Down
2 changes: 1 addition & 1 deletion tests/pump-science.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const getTknAmount = async (umi: Umi, pubkey: PublicKey) => {
return tkn.amount;
};

describe("pump-science", () => {
describe("pump fun", () => {
before(async () => {
await loadProviders();
await labelKeypairs(umi);
Expand Down

0 comments on commit 229fd59

Please sign in to comment.