@whetstone-research/doppler-sdk 1.0.22 → 1.0.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.
- package/README.md +33 -6
- package/dist/evm/index.cjs +395 -140
- package/dist/evm/index.cjs.map +1 -1
- package/dist/evm/index.d.cts +18 -1
- package/dist/evm/index.d.ts +18 -1
- package/dist/evm/index.js +396 -142
- package/dist/evm/index.js.map +1 -1
- package/dist/solana/index.cjs +0 -2
- package/dist/solana/index.cjs.map +1 -1
- package/dist/solana/index.d.cts +0 -1
- package/dist/solana/index.d.ts +0 -1
- package/dist/solana/index.js +0 -2
- package/dist/solana/index.js.map +1 -1
- package/package.json +1 -1
package/dist/solana/index.d.cts
CHANGED
|
@@ -3986,7 +3986,6 @@ declare function createInitializeLaunchInstruction(accounts: InitializeLaunchAcc
|
|
|
3986
3986
|
type AddressOrSigner$1 = Address | TransactionSigner;
|
|
3987
3987
|
type RemainingAccount$1 = Address | AccountMeta | AccountSignerMeta | TransactionSigner;
|
|
3988
3988
|
interface CurveSwapExactInAccounts {
|
|
3989
|
-
config: Address;
|
|
3990
3989
|
launch: Address;
|
|
3991
3990
|
launchAuthority: Address;
|
|
3992
3991
|
baseVault: Address;
|
package/dist/solana/index.d.ts
CHANGED
|
@@ -3986,7 +3986,6 @@ declare function createInitializeLaunchInstruction(accounts: InitializeLaunchAcc
|
|
|
3986
3986
|
type AddressOrSigner$1 = Address | TransactionSigner;
|
|
3987
3987
|
type RemainingAccount$1 = Address | AccountMeta | AccountSignerMeta | TransactionSigner;
|
|
3988
3988
|
interface CurveSwapExactInAccounts {
|
|
3989
|
-
config: Address;
|
|
3990
3989
|
launch: Address;
|
|
3991
3990
|
launchAuthority: Address;
|
|
3992
3991
|
baseVault: Address;
|
package/dist/solana/index.js
CHANGED
|
@@ -5282,7 +5282,6 @@ function createRemainingAccountMeta(value) {
|
|
|
5282
5282
|
}
|
|
5283
5283
|
function createCurveSwapExactInInstruction(accounts, args, programId = INITIALIZER_PROGRAM_ID) {
|
|
5284
5284
|
const {
|
|
5285
|
-
config,
|
|
5286
5285
|
launch,
|
|
5287
5286
|
launchAuthority,
|
|
5288
5287
|
baseVault,
|
|
@@ -5299,7 +5298,6 @@ function createCurveSwapExactInInstruction(accounts, args, programId = INITIALIZ
|
|
|
5299
5298
|
remainingAccounts = []
|
|
5300
5299
|
} = accounts;
|
|
5301
5300
|
const keys = [
|
|
5302
|
-
{ address: config, role: AccountRole.READONLY },
|
|
5303
5301
|
{ address: launch, role: AccountRole.WRITABLE },
|
|
5304
5302
|
{ address: launchAuthority, role: AccountRole.READONLY },
|
|
5305
5303
|
{ address: baseVault, role: AccountRole.WRITABLE },
|