# withdrawExpireUnfreeze After performing the operation of canceling the stake, the user need to call this interface to retrieve resources after waiting for N days. N is a Tron network parameter. (v5.1.0 new interface) ## Usage ``` javascript tronWeb.transactionBuilder.withdrawExpireUnfreeze(address); ``` ## Parameters | Parameters | Description | Type | | -------------- | ---------------------------------------- | ------- | | address | refund account address (base58 or hex) | String | ## Returns Object ## Example ``` javascript > const transaction = await tronWeb.transactionBuilder.withdrawExpireUnfreeze('TMVQGm1qAQYVdetCeGRRkTWYYrLXuHK2HC'); ```