Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/fireblocks-sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ import {
SmartTransfersTicketsFilters,
SmartTransfersTicketTermPayload,
SmartTransfersTicketTermFundPayload,
SmartTransfersTicketTermResponse,
SmartTransfersTicketTermResponse, SetAdminOperationResponse,
} from "./types";
import { AxiosProxyConfig, AxiosResponse } from "axios";
import { PIIEncryption } from "./pii-client";
Expand Down Expand Up @@ -1032,6 +1032,17 @@ export class FireblocksSDK {
return await this.apiClient.issuePostRequest(url, body, requestOptions);
}

/**
* update the threshold of the admin quorum count
*/
public async setAdminQuorumThreshold(adminThreshold: number , requestOptions?: RequestOptions): Promise<void> {
const url = `/v1/admin_quorum`;

const body = {adminThreshold};

return await this.apiClient.issuePutRequest(url, body);
}

/**
* Get max spendable amount per asset and vault
*/
Expand Down