File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @kilnfi/sdk" ,
3- "version" : " 2.5.4 " ,
3+ "version" : " 2.5.5 " ,
44 "autor" :
" Kiln <[email protected] > (https://kiln.fi)" ,
55 "license" : " BUSL-1.1" ,
66 "description" : " JavaScript sdk for Kiln API" ,
Original file line number Diff line number Diff line change @@ -221,11 +221,13 @@ export class DotService extends Service {
221221 /**
222222 * Craft dot join pool transaction
223223 * The amount to bond is transferred from the member to the pools account and immediately increases the pools bond.
224+ * @param accountId
224225 * @param memberAccount
225226 * @param amountDot
226227 * @param poolId
227228 */
228229 async craftJoinPoolTx (
230+ accountId : string ,
229231 memberAccount : string ,
230232 amountDot : number ,
231233 poolId : string ,
@@ -235,6 +237,7 @@ export class DotService extends Service {
235237 const { data } = await api . post < DotTx > (
236238 `/v1/dot/transaction/join-pool` ,
237239 {
240+ account_id : accountId ,
238241 member_account : memberAccount ,
239242 amount_planck : amountPlanck ,
240243 pool_id : poolId ,
You can’t perform that action at this time.
0 commit comments