MEM Lambda Sequencer
Interacting with MEM Lambda Sequencer
Sequencer Methods
Transaction Type 1: deploy contract
curl -X POST https://lambda.pink/deploy -H "Content-Type: application/json" -d '{"txid":"$CONTRACT_ADDRESS"}'
Transaction Type 2: send interaction
curl -X POST https://lambda.pink/transactions -H "Content-Type: application/json" -d '{"txid":"$INTERACTION_TXID"}'
Type Agnostic Method: handles both types 1 and 2 automatically
curl -X POST https://lambda.pink/tx -H "Content-Type: application/json" -d '{"txid":"$TXID"}'
MEM Lambda testnet Sequencer endpoint: https://lambda.pink
For more code examples on how to interact with the Lambda sequencer (deploying contracts, sending interactions, reading state), check the code snippets available on Github.
Last updated