Skip to content

Commit

Permalink
fix ton send from vesting contract (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
nooxx authored Jun 21, 2024
1 parent 782dd57 commit 08e27f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kilnfi/sdk",
"version": "2.17.2",
"version": "2.17.3",
"autor": "Kiln <[email protected]> (https://kiln.fi)",
"license": "BUSL-1.1",
"description": "JavaScript sdk for Kiln API",
Expand Down
2 changes: 1 addition & 1 deletion src/services/ton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class TonService extends Service {
destinationAddress: string,
amountTon: number,
): Promise<TonTx> {
const { data } = await api.post<TonTx>(`/v1/ton/transaction/send-from-vesting-contract`, {
const { data } = await api.post<TonTx>(`/v1/ton/transaction/stake-from-vesting-contract`, {
account_id: accountId,
wallet: walletAddress,
vesting_contract_address: vestingContractAddress,
Expand Down

0 comments on commit 08e27f5

Please sign in to comment.