I'm trying to make a withdraw from my Kraken account to another platform, but i always get this error response:
EFunding:Invalid asset (KrakenClient::ErrorResponse)
Using this code:
@kraken = KrakenClient.load
def withdraw_order_kraken
  params = {
    asset:'XBT',
    key:'Bitstamp',
    amount: 0.005
  }
  @kraken.private.withdraw(params)
end
Any idea what am i doing wrong?