Skip to main content
POST
/
contracts
/
multisig
/
initiate
Initiate a multisig contract
curl --request POST \
  --url https://mainnet.gomaestro-api.org/v1/contracts/multisig/initiate \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "initiator_address": "<string>",
  "signers_addr": [
    "<string>"
  ],
  "threshold": 123,
  "fund_policy_id": "<string>",
  "fund_asset_name": "<string>",
  "spending_limit": 123,
  "total_funds_qty": 123
}'
{
  "cbor_hex": "<string>",
  "tx_hash": "<string>"
}

Authorizations

api-key
string
header
required

Project API Key

Body

application/json
signers_addr
string[]
required

List of signers

threshold
number
required

Threshold for multisig

spending_limit
number
required

Spending limit

total_funds_qty
number
required

Total funds quantity

initiator_address
string

Initiator's address

fund_policy_id
string

Policy ID of the fund

fund_asset_name
string

Asset name of the fund

Response

Multisig contract initiated successfully

Unsigned transaction

cbor_hex
string
required

CBOR hexadecimal representation of the transaction

tx_hash
string
required

Transaction hash