defmodule Soroban.Contract.InstallContractCode do
@moduledoc """
`InstallContractCode` implementation to install contract from a wasm file.
"""
alias Soroban.RPC.{GetTransactionResponse, SendTransactionResponse}
alias Stellar.Horizon.Accounts
alias Stellar.TxBuild.{
Account,
HostFunction,
InvokeHostFunction,
SequenceNumber,
Signature
}
alias Soroban.Contract.RPCCalls
alias StellarBase.XDR.TransactionResult
@type wasm :: binary()
@type invoke_host_function :: InvokeHostFunction.t()
@type account :: Account.t()
@type get_response :: {:ok, GetTransactionResponse.t()}
@type send_response :: {:ok, SendTransactionResponse.t()}
@type sequence_number :: SequenceNumber.t()
@type signature :: Signature.t()
@spec install(wasm :: wasm(), secret_key :: binary()) :: send_response()
def install(wasm, secret_key) do
with {public_key, _secret} = keypair <- Stellar.KeyPair.from_secret_seed(secret_key),
{:ok, seq_num} <- Accounts.fetch_next_sequence_number(public_key),
%Account{} = source_account <- Account.new(public_key),
%SequenceNumber{} = sequence_number <- SequenceNumber.new(seq_num),
%Signature{} = signature <- Signature.new(keypair),
%InvokeHostFunction{} = invoke_host_function_op <- create_host_function_install_op(wasm) do
invoke_host_function_op
|> RPCCalls.simulate(source_account, sequence_number)
|> RPCCalls.send_transaction(
source_account,
sequence_number,
signature,
invoke_host_function_op
)
end
end
@spec get_wasm_id(get_response()) :: binary()
def get_wasm_id({:ok, %GetTransactionResponse{result_xdr: result_xdr}}) do
{%{
result: %{
result: %{
operations: [%{result: %{result: %{value: %{value: %{value: value}}}}}]
}
}
}, ""} = result_xdr |> Base.decode64!() |> TransactionResult.decode_xdr!()
value
end
@spec create_host_function_install_op(code :: wasm()) :: invoke_host_function()
defp create_host_function_install_op(code) do
function =
HostFunction.new(
type: :install,
code: code
)
InvokeHostFunction.new(function: function)
end
end