const waiting = { on: { BET: "playing", RAISE: "betting", }, } const playing = { on: { FOLD: "folded", CHECK: "waiting", BET: "betting", }, } const betting = { on: { CALL: "waiting", RAISE: "waiting", FOLD: "folded", }, } const folded = { type: "final", }