@pump-fun/pump-sdk 1.17.0-devnet.1 → 1.17.1
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.
- package/package.json +1 -5
- package/src/sdk.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pump-fun/pump-sdk",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.1",
|
|
4
4
|
"description": "Pump Bonding Curve SDK",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://github.com/pump-fun/pump-sdk#readme",
|
|
@@ -76,10 +76,6 @@
|
|
|
76
76
|
"branches": [
|
|
77
77
|
{
|
|
78
78
|
"name": "main"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"name": "devnet",
|
|
82
|
-
"prerelease": true
|
|
83
79
|
}
|
|
84
80
|
]
|
|
85
81
|
}
|
package/src/sdk.ts
CHANGED
|
@@ -793,7 +793,6 @@ export class PumpSdk {
|
|
|
793
793
|
feeRecipient,
|
|
794
794
|
amount,
|
|
795
795
|
solAmount,
|
|
796
|
-
|
|
797
796
|
}: {
|
|
798
797
|
user: PublicKey;
|
|
799
798
|
associatedUser: PublicKey;
|
|
@@ -872,4 +871,3 @@ function getFeeRecipient(global: Global): PublicKey {
|
|
|
872
871
|
const feeRecipients = [global.feeRecipient, ...global.feeRecipients];
|
|
873
872
|
return feeRecipients[Math.floor(Math.random() * feeRecipients.length)];
|
|
874
873
|
}
|
|
875
|
-
|