Skip to content

Commit

Permalink
new sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagaprasadvr committed Jun 28, 2024
1 parent 91ae833 commit 628d38d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @convergence-rfq/cli

## 6.6.27

### Patch Changes

- fix squads imports
- Updated dependencies
- @convergence-rfq/sdk@6.6.27

## 6.6.26

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@convergence-rfq/cli",
"description": "Official Convergence CLI",
"version": "6.6.26",
"version": "6.6.27",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -47,7 +47,7 @@
"cli": "ts-node src/index.ts"
},
"dependencies": {
"@convergence-rfq/sdk": "6.6.25",
"@convergence-rfq/sdk": "6.6.27",
"@solana/web3.js": "^1.87.6",
"@types/cookie": "^0.5.1",
"commander": "^10.0.0"
Expand Down
6 changes: 6 additions & 0 deletions packages/js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @convergence-rfq/sdk

## 6.6.27

### Patch Changes

- fix squads imports

## 6.6.26

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@convergence-rfq/sdk",
"description": "Official Convergence RFQ SDK",
"version": "6.6.26",
"version": "6.6.27",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createCreateRfqInstruction } from '@convergence-rfq/vault-operator';
import { Keypair, PublicKey, SystemProgram } from '@solana/web3.js';
import BN from 'bn.js';
import * as multisig from '@sqds/multisig';
import { getEphemeralSignerPda } from '@sqds/multisig';
import { SendAndConfirmTransactionResponse } from '../../rpcModule';

import { Convergence } from '../../../Convergence';
Expand Down Expand Up @@ -128,7 +128,7 @@ export const createVaultBuilder = async (
executorKey = creator.publicKey;
} else {
signers = [];
vaultParamsKey = multisig.getEphemeralSignerPda({
vaultParamsKey = getEphemeralSignerPda({
ephemeralSignerIndex: 0,
transactionPda: squads.transactionPda,
})[0];
Expand Down

0 comments on commit 628d38d

Please sign in to comment.