Query posts by Custom Meta (checkbox) & Genesis Grid Loop

Well I don’t know anything about genesis, but if it does indeed use WP_Query args, then your args array should be something like:

 $args = array(
    'post_type' => 'artists',
    'meta_key' => 'ecpt_featured_artist',
    'meta_value' => 1,
    );