MEM Lambda Sequencer

Interacting with MEM Lambda Sequencer

Sequencer Methods

Transaction Type 1: deploy contract

curl -X POST https://wvm-lambda-0755acbdae90.herokuapp.com/deploy -H "Content-Type: application/json" -d '{"txid":"$CONTRACT_ADDRESS"}'

Transaction Type 2: send interaction

curl -X POST https://wvm-lambda-0755acbdae90.herokuapp.com/transactions -H "Content-Type: application/json" -d '{"txid":"$INTERACTION_TXID"}'

Type Agnostic Method: handles both types 1 and 2 automatically

curl -X POST https://wvm-lambda-0755acbdae90.herokuapp.com/tx -H "Content-Type: application/json" -d '{"txid":"$TXID"}'

MEM Lambda testnet Sequencer endpoint: https://wvm-lambda-0755acbdae90.herokuapp.com/

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