get_assets_status
Check deposit and withdrawal status for cryptocurrencies on Bithumb exchange to monitor transaction progress and confirm fund movements.
Instructions
Get asset deposit/withdrawal status (Public)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderCurrency | Yes | Cryptocurrency symbol (e.g. BTC, ETH) |
Implementation Reference
- src/bitThumb/index.ts:91-98 (handler)The core handler function in the ApiBithumb class that executes the logic for the get_assets_status tool by making a public API request to Bithumb's assetsstatus endpoint.public async getAssetsStatus( orderCurrency: string, ): Promise<IGetAssetsStatus> { const res = <IGetAssetsStatus>( await this.requestPublic('assetsstatus', orderCurrency) ); return res; }
- src/index.ts:96-106 (registration)Registers the get_assets_status tool in the MCP server's tools list, including name, description, and input schema.{ name: 'get_assets_status', description: 'Get asset deposit/withdrawal status (Public)', inputSchema: { type: 'object', properties: { orderCurrency: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)' } }, required: ['orderCurrency'] } },
- TypeScript interface defining the response structure for the getAssetsStatus API call.interface IAssetsStatus { deposit_status: number; withdrawl_status: number; } export interface IGetAssetsStatus extends IBithumbResponse { data: IAssetsStatus[]; }
- src/index.ts:306-308 (handler)Dispatcher case in the MCP CallToolRequestSchema handler that invokes the getAssetsStatus method with tool arguments.case 'get_assets_status': result = await this.bithumbApi.getAssetsStatus(args.orderCurrency as string); break;