(self, agentAddress: str, params={})
| 2908 | return response |
| 2909 | |
| 2910 | async def bind_agent_wallet(self, agentAddress: str, params={}): |
| 2911 | operationType = 'bind_agent_wallet' |
| 2912 | sigPayload = { |
| 2913 | 'agent_wallet': agentAddress, |
| 2914 | } |
| 2915 | request = self.post_action_request(operationType, sigPayload, params) |
| 2916 | return await self.privatePostAgentBind(self.extend(request, params)) |
| 2917 | |
| 2918 | async def create_api_key(self, params={}): |
| 2919 | operationType = 'create_api_key' |
nothing calls this directly
no test coverage detected