{
    "testId": "brl-usd-simple-1-1-testnet",
    "name": "KBRL/KUSD simple 1-1 buy sell match (testnet)",
    "network": "testnet",
    "deleteGameAfterRun": false,
    "tradingMode": "orderBook",
    "settleMs": 4000,
    "loopEveryMs": 0,
    "assets": {
        "KBRL": {
            "id": "0.0.2340890",
            "decimals": 6
        },
        "KUSD": {
            "id": "0.0.2341021",
            "decimals": 6
        }
    },
    "defaults": {
        "minFill": {
            "numerator": 1,
            "denominator": 200000
        },
        "timeInForce": "GTC"
    },
    "actors": {
        "alice": {
            "accountId": "0.0.4271",
            "name": "\ud83d\udfe2 alice (buyer)",
            "seedHexEnv": "KATOMIA_BUY_ORDER_SEED_HEX",
            "playerTokenEnv": "KATOMIA_PLAYER_TOKEN_BUY"
        },
        "bob": {
            "accountId": "0.0.4782",
            "name": "\ud83d\udd35 bob (seller)",
            "seedHexEnv": "KATOMIA_SELL_ORDER_SEED_HEX",
            "playerTokenEnv": "KATOMIA_PLAYER_TOKEN_SELL"
        }
    },
    "steps": [
        {
            "atMs": 0,
            "actor": "alice",
            "action": "order",
            "offer": {
                "asset": "KUSD",
                "amount": 1000000
            },
            "request": {
                "asset": "KBRL",
                "amount": 5000000
            },
            "note": "alice buys 5 KBRL for 1 KUSD"
        },
        {
            "atMs": 800,
            "actor": "bob",
            "action": "order",
            "offer": {
                "asset": "KBRL",
                "amount": 5000000
            },
            "request": {
                "asset": "KUSD",
                "amount": 1000000
            },
            "note": "bob sells 5 KBRL for 1 KUSD -> should fill alice 100%"
        }
    ],
    "expect": {
        "txCount": 1,
        "fillCount": 1
    }
}