@@ -134,7 +134,7 @@ class WalletSendSTXInput(BaseModel):
134134 ..., description = "Amount of STX to send not in microSTX. Default is 1."
135135 )
136136 fee : Optional [int ] = Field (
137- 200 , description = "Transaction fee in microSTX. Default is 200 ."
137+ 400 , description = "Transaction fee in microSTX. Default is 400 ."
138138 )
139139 memo : Optional [str ] = Field (
140140 "" , description = "Optional memo to include with the transaction."
@@ -145,7 +145,7 @@ class WalletSendSTX(BaseTool):
145145 name : str = "wallet_send_stx"
146146 description : str = (
147147 "Send STX tokens from your wallet to a recipient address. Specify amount in STX "
148- "(not microSTX), optional fee in microSTX (default 200 ), and optional memo."
148+ "(not microSTX), optional fee in microSTX (default 400 ), and optional memo."
149149 )
150150 args_schema : Type [BaseModel ] = WalletSendSTXInput
151151 return_direct : bool = False
@@ -159,7 +159,7 @@ def _deploy(
159159 self ,
160160 recipient : str ,
161161 amount : int ,
162- fee : Optional [int ] = 200 ,
162+ fee : Optional [int ] = 400 ,
163163 memo : Optional [str ] = "" ,
164164 ** kwargs ,
165165 ) -> Dict [str , Union [str , bool , None ]]:
@@ -184,7 +184,7 @@ def _run(
184184 self ,
185185 recipient : str ,
186186 amount : int ,
187- fee : Optional [int ] = 200 ,
187+ fee : Optional [int ] = 400 ,
188188 memo : Optional [str ] = "" ,
189189 ** kwargs ,
190190 ) -> Dict [str , Union [str , bool , None ]]:
@@ -195,7 +195,7 @@ async def _arun(
195195 self ,
196196 recipient : str ,
197197 amount : int ,
198- fee : Optional [int ] = 200 ,
198+ fee : Optional [int ] = 400 ,
199199 memo : Optional [str ] = "" ,
200200 ** kwargs ,
201201 ) -> Dict [str , Union [str , bool , None ]]:
0 commit comments