Current section
Files
Jump to
Current section
Files
lib/blockfrost/response/ipfs/list_object_pins_response.ex
defmodule Blockfrost.Response.ListPinnedObjectsResponse do
@type t :: [Blockfrost.Shared.PinnedObject.t()]
@doc false
def cast(body) do
Enum.map(body, &Blockfrost.Shared.PinnedObject.cast/1)
end
end