Packages

An Elixir library for DApps development on the NEAR blockchain platform

Current section

Files

Jump to
near_api lib actions transfer.ex
Raw

lib/actions/transfer.ex

defmodule NearApi.Actions.Transfer do
@moduledoc """
Transaction Actions
Transfer
"""
@type t :: %__MODULE__{deposit: integer, action_code: integer}
use Borsh,
schema: [
action_code: :u8,
deposit: :u128
]
defstruct [:deposit, action_code: 3]
end