Endpoints
POST AAMM Transaction
Submits a new transaction to the CoinFi blockchain. Example: POST a JSON payload with transaction details.
POST
This endpoint allows you to submit a new transaction to the CoinFi blockchain.
Request Details
- URL:
https://api.coinfi.zone/transactions
- Method:
POST
- Content-Type:
application/json
Required Fields
from
: Sender addressto
: Receiver addressamount
: Transaction amount (as a string)nonce
: Transaction nonce (integer)signature
: Digital signature of the transaction
Example Request
Make sure your payload includes all required fields, and verify that the signature is generated correctly.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Transaction details to be submitted.
Sender address
Receiver address
Transaction amount
Transaction nonce
Digital signature of the transaction
Transaction hash
Was this page helpful?