(agentAddress, params = {})
| 3037 | return response; |
| 3038 | } |
| 3039 | async bindAgentWallet(agentAddress, params = {}) { |
| 3040 | const operationType = 'bind_agent_wallet'; |
| 3041 | const sigPayload = { |
| 3042 | 'agent_wallet': agentAddress, |
| 3043 | }; |
| 3044 | const request = this.postActionRequest(operationType, sigPayload, params); |
| 3045 | return await this.privatePostAgentBind(this.extend(request, params)); |
| 3046 | } |
| 3047 | async createApiKey(params = {}) { |
| 3048 | const operationType = 'create_api_key'; |
| 3049 | const sigPayload = {}; |
nothing calls this directly
no test coverage detected